diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 40196de74..f28d8fb69 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,7 +3,7 @@ # These owners will be the default owners for everything in the repo. #* @defunkt -* @JulieSchramm @mkavulich @gsketefian @JeffBeck-NOAA @RatkoVasic-NOAA @BenjaminBlake-NOAA +* @christinaholtNOAA @chunhuazhou @CurtisAlexander-NOAA @hu5970 @JeffBeck-NOAA @terraladwig @TrevorAlcott-NOAA @guoqing-noaa @daviddowellNOAA @JacobCarley-NOAA @MatthewPyle-NOAA @ShunLiu-NOAA @JiliDong-NOAA # Order is important. The last matching pattern has the most precedence. # So if a pull request only touches javascript files, only these owners diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..107c3247c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +config.sh +fix/.agent +fix/tmp +fix/INIT_DONE diff --git a/Init.sh b/Init.sh new file mode 100755 index 000000000..5ef8da06f --- /dev/null +++ b/Init.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# +basedir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +utildir="$basedir"/ush/bash_utils + +# set the pre-commit hook +echo -e "#!/bin/sh" > $basedir/.git/hooks/pre-commit +chmod +x $basedir/.git/hooks/pre-commit +echo -e "ush/bash_utils/preCommit">>$basedir/.git/hooks/pre-commit + +$utildir/make_agent_link_for_fix +touch $basedir/fix/INIT_DONE diff --git a/env/JET.env b/env/JET.env deleted file mode 100755 index 5b14faf1a..000000000 --- a/env/JET.env +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/ksh -x - -if [ $# -ne 1 ]; then - - echo "Must specify an input argument to set runtime environment variables!" - echo "argument can be any one of the following:" - echo "anal fcst post vrfy" - echo "eobs eupd ecen efcs epos" - echo "postsnd awips gempak" - exit 1 - -fi - -step=$1 - -# Theia information -export npe_node_max=24 -export launcher="mpirun -np" - -# Configure MPI environment -export MPI_BUFS_PER_PROC=2048 -export MPI_BUFS_PER_HOST=2048 -export MPI_GROUP_MAX=256 -export MPI_MEMMAP_OFF=1 -export MP_STDOUTMODE="ORDERED" -export OMP_STACKSIZE=2048000 -export NTHSTACK=1024000000 -#export LD_BIND_NOW=1 - -if [ $step = "prep" -o $step = "prepbufr" ]; then - - nth_max=$(($npe_node_max / $npe_node_prep)) - - export POE="NO" - export BACK=${BACK:-"YES"} - export sys_tp="Cray-CS400" - -elif [ $step = "anal" ]; then - - nth_max=$(($npe_node_max / $npe_node_anal)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_anal:-$PBS_NP}}" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher \$ncmd" - - export NTHREADS_CYCLE=${nth_cycle:-12} - [[ $NTHREADS_CYCLE -gt $npe_node_max ]] && export NTHREADS_CYCLE=$npe_node_max - npe_cycle=${ntiles:-6} - export APRUN_CYCLE="$launcher $npe_cycle" - - export NTHREADS_GAUSFCANL=1 - npe_gausfcanl=${npe_gausfcanl:-1} - export APRUN_GAUSFCANL="$launcher $npe_gausfcanl" - -elif [ $step = "eobs" ]; then - - nth_max=$(($npe_node_max / $npe_node_eobs)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_eobs:-$PBS_NP}}" - -elif [ $step = "eupd" ]; then - - nth_max=$(($npe_node_max / $npe_node_eupd)) - - export NTHREADS_ENKF=${nth_enkf:-$nth_max} - [[ $NTHREADS_ENKF -gt $nth_max ]] && export NTHREADS_ENKF=$nth_max - export APRUN_ENKF="$launcher ${npe_enkf:-${npe_eupd:-$PBS_NP}}" - -elif [ $step = "fcst" ]; then - - nth_max=$(($npe_node_max / $npe_node_fcst)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_fcst:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - - export NTHREADS_REMAP=${nth_remap:-2} - [[ $NTHREADS_REMAP -gt $nth_max ]] && export NTHREADS_REMAP=$nth_max - export APRUN_REMAP="$launcher ${npe_remap:-${npe_fcst:-$PBS_NP}}" - -elif [ $step = "efcs" ]; then - - nth_max=$(($npe_node_max / $npe_node_efcs)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_efcs:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - -elif [ $step = "post" ]; then - - nth_max=$(($npe_node_max / $npe_node_post)) - - export NTHREADS_NP=${nth_np:-1} - [[ $NTHREADS_NP -gt $nth_max ]] && export NTHREADS_NP=$nth_max - export APRUN_NP="$launcher ${npe_np:-${npe_post:-$PBS_NP}}" - - export NTHREADS_DWN=${nth_dwn:-1} - [[ $NTHREADS_DWN -gt $nth_max ]] && export NTHREADS_DWN=$nth_max - export APRUN_DWN="$launcher ${npe_dwn:-$PBS_NP}" - -elif [ $step = "ecen" ]; then - - nth_max=$(($npe_node_max / $npe_node_ecen)) - - export NTHREADS_ECEN=${nth_ecen:-$nth_max} - [[ $NTHREADS_ECEN -gt $nth_max ]] && export NTHREADS_ECEN=$nth_max - export APRUN_ECEN="$launcher ${npe_ecen:-$PBS_NP}" - - export NTHREADS_CHGRES=${nth_chgres:-12} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher ${npe_ecen:-$PBS_NP}" - -elif [ $step = "epos" ]; then - - nth_max=$(($npe_node_max / $npe_node_epos)) - - export NTHREADS_EPOS=${nth_epos:-$nth_max} - [[ $NTHREADS_EPOS -gt $nth_max ]] && export NTHREADS_EPOS=$nth_max - export APRUN_EPOS="$launcher ${npe_epos:-$PBS_NP}" - -elif [ $step = "fv3ic" ]; then - - export NTHREADS_CHGRES=${nth_chgres:-$npe_node_max} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - -elif [ $step = "postsnd" ]; then - - nth_max=$(($npe_node_max / $npe_node_postsnd)) - - export NTHREADS_POSTSND=${nth_postsnd:-1} - [[ $NTHREADS_POSTSND -gt $nth_max ]] && export NTHREADS_POSTSND=$nth_max - export APRUN_POSTSND="$launcher $npe_postsnd" - - export NTHREADS_POSTSNDCFP=${nth_postsndcfp:-1} - [[ $NTHREADS_POSTSNDCFP -gt $nth_max ]] && export NTHREADS_POSTSNDCFP=$nth_max - export APRUN_POSTSNDCFP="$launcher $npe_postsndcfp" - -elif [ $step = "awips" ]; then - - echo "WARNING: $step is not enabled on $machine!" - -elif [ $step = "gempak" ]; then - - echo "WARNING: $step is not enabled on $machine!" - -fi diff --git a/env/THEIA.env b/env/THEIA.env deleted file mode 100755 index c747e1f99..000000000 --- a/env/THEIA.env +++ /dev/null @@ -1,167 +0,0 @@ -#!/bin/ksh -x - -if [ $# -ne 1 ]; then - - echo "Must specify an input argument to set runtime environment variables!" - echo "argument can be any one of the following:" - echo "anal fcst post vrfy" - echo "eobs eupd ecen efcs epos" - echo "postsnd awips gempak" - exit 1 - -fi - -step=$1 - -# Theia information -export npe_node_max=24 -export launcher="mpirun -np" - -# Configure MPI environment -export MPI_BUFS_PER_PROC=2048 -export MPI_BUFS_PER_HOST=2048 -export MPI_GROUP_MAX=256 -export MPI_MEMMAP_OFF=1 -export MP_STDOUTMODE="ORDERED" -export OMP_STACKSIZE=2048000 -export NTHSTACK=1024000000 -#export LD_BIND_NOW=1 - -if [ $step = "prep" -o $step = "prepbufr" ]; then - - nth_max=$(($npe_node_max / $npe_node_prep)) - - export POE="NO" - export BACK=${BACK:-"YES"} - export sys_tp="Cray-CS400" - -elif [ $step = "anal" ]; then - - nth_max=$(($npe_node_max / $npe_node_anal)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_anal:-$PBS_NP}}" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher \$ncmd" - - export NTHREADS_CYCLE=${nth_cycle:-12} - [[ $NTHREADS_CYCLE -gt $npe_node_max ]] && export NTHREADS_CYCLE=$npe_node_max - npe_cycle=${ntiles:-6} - export APRUN_CYCLE="$launcher $npe_cycle" - - export NTHREADS_GAUSFCANL=1 - npe_gausfcanl=${npe_gausfcanl:-1} - export APRUN_GAUSFCANL="$launcher $npe_gausfcanl" - -elif [ $step = "eobs" ]; then - - nth_max=$(($npe_node_max / $npe_node_eobs)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_eobs:-$PBS_NP}}" - -elif [ $step = "eupd" ]; then - - nth_max=$(($npe_node_max / $npe_node_eupd)) - - export NTHREADS_ENKF=${nth_enkf:-$nth_max} - [[ $NTHREADS_ENKF -gt $nth_max ]] && export NTHREADS_ENKF=$nth_max - export APRUN_ENKF="$launcher ${npe_enkf:-${npe_eupd:-$PBS_NP}}" - -elif [ $step = "fcst" ]; then - - nth_max=$(($npe_node_max / $npe_node_fcst)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_fcst:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - - export NTHREADS_REMAP=${nth_remap:-2} - [[ $NTHREADS_REMAP -gt $nth_max ]] && export NTHREADS_REMAP=$nth_max - export APRUN_REMAP="$launcher ${npe_remap:-${npe_fcst:-$PBS_NP}}" - -elif [ $step = "efcs" ]; then - - nth_max=$(($npe_node_max / $npe_node_efcs)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_efcs:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - -elif [ $step = "post" ]; then - - nth_max=$(($npe_node_max / $npe_node_post)) - - export NTHREADS_NP=${nth_np:-1} - [[ $NTHREADS_NP -gt $nth_max ]] && export NTHREADS_NP=$nth_max - export APRUN_NP="$launcher ${npe_np:-${npe_post:-$PBS_NP}}" - - export NTHREADS_DWN=${nth_dwn:-1} - [[ $NTHREADS_DWN -gt $nth_max ]] && export NTHREADS_DWN=$nth_max - export APRUN_DWN="$launcher ${npe_dwn:-$PBS_NP}" - -elif [ $step = "ecen" ]; then - - nth_max=$(($npe_node_max / $npe_node_ecen)) - - export NTHREADS_ECEN=${nth_ecen:-$nth_max} - [[ $NTHREADS_ECEN -gt $nth_max ]] && export NTHREADS_ECEN=$nth_max - export APRUN_ECEN="$launcher ${npe_ecen:-$PBS_NP}" - - export NTHREADS_CHGRES=${nth_chgres:-12} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher ${npe_ecen:-$PBS_NP}" - -elif [ $step = "epos" ]; then - - nth_max=$(($npe_node_max / $npe_node_epos)) - - export NTHREADS_EPOS=${nth_epos:-$nth_max} - [[ $NTHREADS_EPOS -gt $nth_max ]] && export NTHREADS_EPOS=$nth_max - export APRUN_EPOS="$launcher ${npe_epos:-$PBS_NP}" - -elif [ $step = "fv3ic" ]; then - - export NTHREADS_CHGRES=${nth_chgres:-$npe_node_max} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - -elif [ $step = "postsnd" ]; then - - nth_max=$(($npe_node_max / $npe_node_postsnd)) - - export NTHREADS_POSTSND=${nth_postsnd:-1} - [[ $NTHREADS_POSTSND -gt $nth_max ]] && export NTHREADS_POSTSND=$nth_max - export APRUN_POSTSND="$launcher $npe_postsnd" - - export NTHREADS_POSTSNDCFP=${nth_postsndcfp:-1} - [[ $NTHREADS_POSTSNDCFP -gt $nth_max ]] && export NTHREADS_POSTSNDCFP=$nth_max - export APRUN_POSTSNDCFP="$launcher $npe_postsndcfp cfp" - -elif [ $step = "awips" ]; then - - echo "WARNING: $step is not enabled on $machine!" - -elif [ $step = "gempak" ]; then - - echo "WARNING: $step is not enabled on $machine!" - -fi diff --git a/env/WCOSS_C.env b/env/WCOSS_C.env deleted file mode 100755 index 506f187d8..000000000 --- a/env/WCOSS_C.env +++ /dev/null @@ -1,194 +0,0 @@ -#!/bin/ksh -x - -if [ $# -ne 1 ]; then - - echo "Must specify an input argument to set runtime environment variables!" - echo "argument can be any one of the following:" - echo "anal fcst post vrfy" - echo "eobs eupd ecen efcs epos" - echo "postsnd awips gempak" - exit 1 - -fi - -step=$1 - -# Cray information -export launcher="aprun" -export npe_node_max=24 - -# Configure MPI environment -export MPI_BUFS_PER_PROC=2048 -export MPI_BUFS_PER_HOST=2048 -export MPI_GROUP_MAX=256 -export MPI_MEMMAP_OFF=1 -export MP_STDOUTMODE="ORDERED" -export NTHSTACK=1024000000 -export OMP_STACKSIZE="2048M" -export KMP_AFFINITY="disabled" - -if [ $step = "prep" -o $step = "prepbufr" ]; then - - nth_max=$(($npe_node_max / $npe_node_prep)) - - export POE=${POE:-"YES"} - export sys_tp="Cray-XC40" - -elif [ $step = "anal" ]; then - - nth_max=$(($npe_node_max / $npe_node_anal)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher -j 1 -n ${npe_gsi:-$npe_anal} -N $npe_node_anal -d $NTHREADS_GSI -cc depth" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher -j 1 -n \$ncmd -N 1 -d $NTHREADS_CALCINC -cc depth" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher -q -j 1 -n \$ncmd -N \$ncmd_max -d 1 cfp" - fi - - export NTHREADS_CYCLE=${nth_cycle:-12} - [[ $NTHREADS_CYCLE -gt $npe_node_max ]] && export NTHREADS_CYCLE=$npe_node_max - npe_node_cycle=$(($npe_node_max / $NTHREADS_CYCLE)) - npe_cycle=${ntiles:-6} - [[ $npe_node_cycle -gt $npe_cycle ]] && npe_node_cycle=$npe_cycle - export APRUN_CYCLE="$launcher -j 1 -n $npe_cycle -N $npe_node_cycle -d $NTHREADS_CYCLE -cc depth" - - export NTHREADS_GAUSFCANL=1 - npe_node_gausfcanl=$(($npe_node_max / $NTHREADS_GAUSFCANL)) - npe_gausfcanl=${npe_gausfcanl:-1} - [[ $npe_node_gausfcanl -gt $npe_gausfcanl ]] && npe_node_gausfcanl=$npe_gausfcanl - export APRUN_GAUSFCANL="$launcher -j 1 -n $npe_gausfcanl -N $npe_node_gausfcanl -d $NTHREADS_GAUSFCANL -cc depth" - -elif [ $step = "eobs" ]; then - - nth_max=$(($npe_node_max / $npe_node_eobs)) - - export NTHREADS_GSI=${nth_gsi:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher -j 1 -n ${npe_gsi:-$npe_eobs} -N $npe_node_eobs -d $NTHREADS_GSI -cc depth" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher -q -j 1 -n \$ncmd -N \$ncmd_max -d 1 cfp" - fi - -elif [ $step = "eupd" ]; then - - nth_max=$(($npe_node_max / $npe_node_eupd)) - - export NTHREADS_ENKF=${nth_enkf:-$nth_max} - [[ $NTHREADS_ENKF -gt $nth_max ]] && export NTHREADS_ENKF=$nth_max - export APRUN_ENKF="$launcher -j 1 -n ${npe_enkf:-$npe_eupd} -N $npe_node_eupd -d $NTHREADS_ENKF -cc depth" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher -q -j 1 -n \$ncmd -N \$ncmd_max -d 1 cfp" - fi - -elif [ $step = "fcst" ]; then - - nth_max=$(($npe_node_max / $npe_node_fcst)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher -j 1 -n ${npe_fv3:-$npe_fcst} -N $npe_node_fcst -d $NTHREADS_FV3 -cc depth" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher -j 1 -n $LEVS -N $npe_node_fcst -d $NTHREADS_REGRID_NEMSIO -cc depth" - - export NTHREADS_REMAP=${nth_remap:-2} - [[ $NTHREADS_REMAP -gt $nth_max ]] && export NTHREADS_REMAP=$nth_max - export APRUN_REMAP="$launcher -j 1 -n ${npe_remap:-$npe_fcst} -N $npe_node_fcst -d $NTHREADS_REMAP -cc depth" - -elif [ $step = "efcs" ]; then - - nth_max=$(($npe_node_max / $npe_node_efcs)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher -j 1 -n ${npe_fv3:-$npe_efcs} -N $npe_node_efcs -d $NTHREADS_FV3 -cc depth" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher -j 1 -n $LEVS -N $npe_node_efcs -d $NTHREADS_REGRID_NEMSIO -cc depth" - -elif [ $step = "post" ]; then - - nth_max=$(($npe_node_max / $npe_node_post)) - - export NTHREADS_NP=${nth_np:-1} - [[ $NTHREADS_NP -gt $nth_max ]] && export NTHREADS_NP=$nth_max - export APRUN_NP="$launcher -j 1 -n ${npe_np:-$npe_post} -N $npe_node_post -d $NTHREADS_NP -cc depth" - - export NTHREADS_DWN=${nth_dwn:-1} - [[ $NTHREADS_DWN -gt $nth_max ]] && export NTHREADS_DWN=$nth_max - export APRUN_DWN="$launcher -j 1 -n $npe_dwn -N $npe_node_dwn -d $NTHREADS_DWN cfp" - -elif [ $step = "ecen" ]; then - - nth_max=$(($npe_node_max / $npe_node_ecen)) - - export NTHREADS_ECEN=${nth_ecen:-$nth_max} - [[ $NTHREADS_ECEN -gt $nth_max ]] && export NTHREADS_ECEN=$nth_max - export APRUN_ECEN="$launcher -j 1 -n $npe_ecen -N $npe_node_ecen -d $NTHREADS_ECEN -cc depth" - - export NTHREADS_CHGRES=${nth_chgres:-12} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="$launcher -j 1 -n 1 -N 1 -d $NTHREADS_CHGRES -cc depth" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher -j 1 -n $npe_ecen -N $npe_node_ecen -d $NTHREADS_CALCINC -cc depth" - -elif [ $step = "epos" ]; then - - nth_max=$(($npe_node_max / $npe_node_epos)) - - export NTHREADS_EPOS=${nth_epos:-$nth_max} - [[ $NTHREADS_EPOS -gt $nth_max ]] && export NTHREADS_EPOS=$nth_max - export APRUN_EPOS="$launcher -j 1 -n $npe_epos -N $npe_node_epos -d $NTHREADS_EPOS -cc depth" - -elif [ $step = "fv3ic" ]; then - - export NTHREADS_CHGRES=${nth_chgres:-$npe_node_max} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="$launcher -j 1 -n 1 -N 1 -d $NTHREADS_CHGRES -cc depth" - -elif [ $step = "vrfy" ]; then - - export IOBUF_PARAMS="*:size=32M:count=4:verbose" - export APRUNTRACK="$launcher -j1 -n1 -N1 -d1 -cc depth" - -elif [ $step = "postsnd" ]; then - export IOBUF_PARAMS="sigf*:size=128M:count=20:prefetch=0:verbose,gfs_collectiv*:size=128M:count=2:prefetch=0:verbose,*.snd:size=128M:count=3:prefetch=0:verbose,*.sfc:size=32M:count=3:prefetch=0:verbose,bufr.*:size=8M:count=20:prefetch=0:verbose" - - nth_max=$(($npe_node_max / $npe_node_postsnd)) - - export NTHREADS_POSTSND=${nth_postsnd:-1} - [[ $NTHREADS_POSTSND -gt $nth_max ]] && export NTHREADS_POSTSND=$nth_max - export APRUN_POSTSND="$launcher -j 1 -n $npe_postsnd -N $npe_node_postsnd -d $NTHREADS_POSTSND -cc depth" - - export NTHREADS_POSTSNDCFP=${nth_postsndcfp:-1} - [[ $NTHREADS_POSTSNDCFP -gt $nth_max ]] && export NTHREADS_POSTSNDCFP=$nth_max - export APRUN_POSTSNDCFP="$launcher -j 1 -n $npe_postsndcfp -N $npe_node_postsndcfp -d $NTHREADS_POSTSNDCFP cfp" - -elif [ $step = "awips" ]; then - nth_max=$(($npe_node_max / $npe_node_awips)) - - export NTHREADS_AWIPS=${nth_awips:-2} - [[ $NTHREADS_AWIPS -gt $nth_max ]] && export NTHREADS_AWIPS=$nth_max - export APRUN_AWIPSCFP="$launcher -j 1 -n $npe_awips -N $npe_node_awips -d $NTHREADS_AWIPS -cc depth cfp" - -elif [ $step = "gempak" ]; then - nth_max=$(($npe_node_max / $npe_node_gempak)) - - export NTHREADS_GEMPAK=${nth_gempak:-3} - [[ $NTHREADS_GEMPAK -gt $nth_max ]] && export NTHREADS_GEMPAK=$nth_max - export APRUN_GEMPAKCFP="$launcher -j 1 -n $npe_gempak -N $npe_node_gempak -d $NTHREADS_GEMPAK cfp" - -fi diff --git a/env/WCOSS_DELL_P3.env b/env/WCOSS_DELL_P3.env deleted file mode 100755 index 481fdb2a7..000000000 --- a/env/WCOSS_DELL_P3.env +++ /dev/null @@ -1,200 +0,0 @@ -#!/bin/ksh -x - -if [ $# -ne 1 ]; then - - echo "Must specify an input argument to set runtime environment variables!" - echo "argument can be any one of the following:" - echo "anal fcst post vrfy" - echo "eobs eupd ecen efcs epos" - echo "postsnd awips gempak" - exit 1 - -fi - -step=$1 - -# WCOSS_DELL_P3 information -export npe_node_max=28 -export launcher="mpirun -n" - -# Due to ESMF issue, fv3gfs model must run with npe_node_max=24 -if [ $step = "fcst" -o $step = "efcs" ]; then - export npe_node_max=24 -fi - -# Configure MPI environment -#export MPI_BUFS_PER_PROC=2048 -#export MPI_BUFS_PER_HOST=2048 -#export MPI_GROUP_MAX=256 -#export MPI_MEMMAP_OFF=1 -export MPI_LABELIO=YES -export MP_STDOUTMODE="ORDERED" -export KMP_STACKSIZE=2048M -export KMP_AFFINITY=scatter - -# get binding information -#export I_MPI_DEBUG=4 - -if [ $step = "prep" -o $step = "prepbufr" ]; then - - nth_max=$(($npe_node_max / $npe_node_prep)) - - export POE="NO" - export BACK=${BACK:-"YES"} - export sys_tp="Dell-p3" - -elif [ $step = "anal" ]; then - - nth_max=$(($npe_node_max / $npe_node_anal)) - - export NTHREADS_GSI=${nth_anal:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_anal:-$PBS_NP}}" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher \$ncmd" - - export NTHREADS_CYCLE=${nth_cycle:-14} - [[ $NTHREADS_CYCLE -gt $npe_node_max ]] && export NTHREADS_CYCLE=$npe_node_max - npe_cycle=${ntiles:-6} - export APRUN_CYCLE="$launcher $npe_cycle" - - export NTHREADS_GAUSFCANL=1 - npe_gausfcanl=${npe_gausfcanl:-1} - export APRUN_GAUSFCANL="$launcher $npe_gausfcanl" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher \$ncmd cfp" - fi - -elif [ $step = "eobs" ]; then - - nth_max=$(($npe_node_max / $npe_node_eobs)) - - export NTHREADS_GSI=${nth_eobs:-$nth_max} - [[ $NTHREADS_GSI -gt $nth_max ]] && export NTHREADS_GSI=$nth_max - export APRUN_GSI="$launcher ${npe_gsi:-${npe_eobs:-$PBS_NP}}" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher \$ncmd cfp" - fi - -elif [ $step = "eupd" ]; then - - nth_max=$(($npe_node_max / $npe_node_eupd)) - - export NTHREADS_ENKF=${nth_eupd:-$nth_max} - [[ $NTHREADS_ENKF -gt $nth_max ]] && export NTHREADS_ENKF=$nth_max - export APRUN_ENKF="$launcher ${npe_enkf:-${npe_eupd:-$PBS_NP}}" - - if [ ${USE_CFP:-"NO"} = "YES" ]; then - export APRUNCFP="$launcher \$ncmd cfp" - fi - -elif [ $step = "fcst" ]; then - - nth_max=$(($npe_node_max / $npe_node_fcst)) - - export NTHREADS_FV3=${nth_fv3:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_fcst:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - - export NTHREADS_REMAP=${nth_remap:-2} - [[ $NTHREADS_REMAP -gt $nth_max ]] && export NTHREADS_REMAP=$nth_max - export APRUN_REMAP="$launcher ${npe_remap:-${npe_fcst:-$PBS_NP}}" - -elif [ $step = "efcs" ]; then - - nth_max=$(($npe_node_max / $npe_node_efcs)) - - export NTHREADS_FV3=${nth_efcs:-$nth_max} - [[ $NTHREADS_FV3 -gt $nth_max ]] && export NTHREADS_FV3=$nth_max - export cores_per_node=$npe_node_max - export APRUN_FV3="$launcher ${npe_fv3:-${npe_efcs:-$PBS_NP}}" - - export NTHREADS_REGRID_NEMSIO=${nth_regrid_nemsio:-1} - [[ $NTHREADS_REGRID_NEMSIO -gt $nth_max ]] && export NTHREADS_REGRID_NEMSIO=$nth_max - export APRUN_REGRID_NEMSIO="$launcher $LEVS" - -elif [ $step = "post" ]; then - - nth_max=$(($npe_node_max / $npe_node_post)) - - export NTHREADS_NP=${nth_np:-1} - [[ $NTHREADS_NP -gt $nth_max ]] && export NTHREADS_NP=$nth_max - export APRUN_NP="$launcher ${npe_np:-${npe_post:-$PBS_NP}}" - - export NTHREADS_DWN=${nth_dwn:-1} - [[ $NTHREADS_DWN -gt $nth_max ]] && export NTHREADS_DWN=$nth_max - export APRUN_DWN="$launcher ${npe_dwn:-$PBS_NP} cfp" - -elif [ $step = "ecen" ]; then - - nth_max=$(($npe_node_max / $npe_node_ecen)) - - export NTHREADS_ECEN=${nth_ecen:-$nth_max} - [[ $NTHREADS_ECEN -gt $nth_max ]] && export NTHREADS_ECEN=$nth_max - export APRUN_ECEN="$launcher ${npe_ecen:-$PBS_NP}" - - export NTHREADS_CHGRES=${nth_chgres:-14} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - - export NTHREADS_CALCINC=${nth_calcinc:-1} - [[ $NTHREADS_CALCINC -gt $nth_max ]] && export NTHREADS_CALCINC=$nth_max - export APRUN_CALCINC="$launcher ${npe_ecen:-$PBS_NP}" - - export NTHREADS_CYCLE=${nth_cycle:-14} - [[ $NTHREADS_CYCLE -gt $npe_node_max ]] && export NTHREADS_CYCLE=$npe_node_max - export APRUN_CYCLE="$launcher $npe_ecen" - -elif [ $step = "epos" ]; then - - nth_max=$(($npe_node_max / $npe_node_epos)) - - export NTHREADS_EPOS=${nth_epos:-$nth_max} - [[ $NTHREADS_EPOS -gt $nth_max ]] && export NTHREADS_EPOS=$nth_max - export APRUN_EPOS="$launcher ${npe_epos:-$PBS_NP}" - -elif [ $step = "fv3ic" ]; then - - export NTHREADS_CHGRES=${nth_chgres:-$npe_node_max} - [[ $NTHREADS_CHGRES -gt $npe_node_max ]] && export NTHREADS_CHGRES=$npe_node_max - export APRUN_CHGRES="time" - -elif [ $step = "postsnd" ]; then - - nth_max=$(($npe_node_max / $npe_node_postsnd)) - - export NTHREADS_POSTSND=${nth_postsnd:-1} - [[ $NTHREADS_POSTSND -gt $nth_max ]] && export NTHREADS_POSTSND=$nth_max - export APRUN_POSTSND="$launcher $npe_postsnd" - - export NTHREADS_POSTSNDCFP=${nth_postsndcfp:-1} - [[ $NTHREADS_POSTSNDCFP -gt $nth_max ]] && export NTHREADS_POSTSNDCFP=$nth_max - export APRUN_POSTSNDCFP="$launcher $npe_postsndcfp cfp" - -elif [ $step = "awips" ]; then - - nth_max=$(($npe_node_max / $npe_node_awips)) - - export NTHREADS_AWIPS=${nth_awips:-2} - [[ $NTHREADS_AWIPS -gt $nth_max ]] && export NTHREADS_AWIPS=$nth_max - export APRUN_AWIPSCFP="$launcher ${npe_awips:-$PBS_NP} cfp" - -elif [ $step = "gempak" ]; then - - nth_max=$(($npe_node_max / $npe_node_gempak)) - - export NTHREADS_GEMPAK=${nth_gempak:-1} - [[ $NTHREADS_GEMPAK -gt $nth_max ]] && export NTHREADS_GEMPAK=$nth_max - export APRUN_GEMPAKCFP="$launcher \$ntasks cfp" - - -fi diff --git a/env/gfs.ver b/env/gfs.ver deleted file mode 100644 index efd4a1d9c..000000000 --- a/env/gfs.ver +++ /dev/null @@ -1,22 +0,0 @@ -export gfs_ver=v15.0.0 - -export crtm_ver=2.3.0 -export hwrf_ver=v11.0.0 -export g2tmpl_ver=1.4.0 - -export grib_util_ver=1.1.0 -export util_shared_ver=1.0.6 -export cfp_intel_sandybridge_ver=1.1.0 -export iobuf_ver=2.0.7 -export ESMF_intel_sandybridge_ver=3_1_0rp5 -export ESMF_intel_haswell_ver=3_1_0rp5 -export gempak_ver=7.3.0 -export old_gempak_ver=6.32.0 -export NCL_gnu_sandybridge_ver=6.3.0 -export ncarg_intel_sandybridge_ver=6.1.0 -export dumpjb_ver=4.0.0 - -## FOLLOWING are used by JGDAS_TROPC -export obsproc_dump_ver=v4.0.0 -export obsproc_shared_bufr_dumplist_ver=v1.5.0 - diff --git a/fix/am/CCN_ACTIVATE.BIN b/fix/am/CCN_ACTIVATE.BIN new file mode 120000 index 000000000..b8148ff16 --- /dev/null +++ b/fix/am/CCN_ACTIVATE.BIN @@ -0,0 +1 @@ +../.agent/am/CCN_ACTIVATE.BIN \ No newline at end of file diff --git a/fix/am/CFSR.OISST.1982.2010.monthly.clim b/fix/am/CFSR.OISST.1982.2010.monthly.clim new file mode 120000 index 000000000..a17ef0016 --- /dev/null +++ b/fix/am/CFSR.OISST.1982.2010.monthly.clim @@ -0,0 +1 @@ +../.agent/am/CFSR.OISST.1982.2010.monthly.clim \ No newline at end of file diff --git a/fix/am/CFSR.OISST.1999.2012.monthly.clim.grb b/fix/am/CFSR.OISST.1999.2012.monthly.clim.grb new file mode 120000 index 000000000..c79351737 --- /dev/null +++ b/fix/am/CFSR.OISST.1999.2012.monthly.clim.grb @@ -0,0 +1 @@ +../.agent/am/CFSR.OISST.1999.2012.monthly.clim.grb \ No newline at end of file diff --git a/fix/am/CFSR.SEAICE.1982.2010.monthly.clim b/fix/am/CFSR.SEAICE.1982.2010.monthly.clim new file mode 120000 index 000000000..a42412903 --- /dev/null +++ b/fix/am/CFSR.SEAICE.1982.2010.monthly.clim @@ -0,0 +1 @@ +../.agent/am/CFSR.SEAICE.1982.2010.monthly.clim \ No newline at end of file diff --git a/fix/am/CFSR.SEAICE.1982.2012.monthly.clim.grb b/fix/am/CFSR.SEAICE.1982.2012.monthly.clim.grb new file mode 120000 index 000000000..a289cdb83 --- /dev/null +++ b/fix/am/CFSR.SEAICE.1982.2012.monthly.clim.grb @@ -0,0 +1 @@ +../.agent/am/CFSR.SEAICE.1982.2012.monthly.clim.grb \ No newline at end of file diff --git a/fix/am/HGT.Beljaars_filtered.lat-lon.30s_res.nc b/fix/am/HGT.Beljaars_filtered.lat-lon.30s_res.nc new file mode 120000 index 000000000..1873a0072 --- /dev/null +++ b/fix/am/HGT.Beljaars_filtered.lat-lon.30s_res.nc @@ -0,0 +1 @@ +../.agent/am/HGT.Beljaars_filtered.lat-lon.30s_res.nc \ No newline at end of file diff --git a/fix/am/L65_20mb.txt b/fix/am/L65_20mb.txt new file mode 100644 index 000000000..d13fb3b63 --- /dev/null +++ b/fix/am/L65_20mb.txt @@ -0,0 +1,67 @@ + 2 65 + 0.000 1.00000000 + 110.778 0.99667383 + 282.842 0.99150476 + 493.675 0.98516645 + 728.489 0.97810118 + 977.488 0.97060218 + 1234.121 0.96286573 + 1494.070 0.95502145 + 1754.733 0.94714758 + 2015.024 0.93927683 + 2275.350 0.93139683 + 2537.657 0.92344854 + 2805.470 0.91532463 + 3083.888 0.90686958 + 3379.488 0.89788207 + 3700.138 0.88812036 + 4054.713 0.87731037 + 4452.732 0.86515632 + 4903.914 0.85135329 + 5417.706 0.83560116 + 6002.776 0.81761904 + 6666.524 0.79715950 + 7414.624 0.77402187 + 8250.629 0.74806382 + 9175.658 0.71921076 + 10188.173 0.68746255 + 11283.870 0.65289721 + 12455.668 0.61567163 + 13693.799 0.57601919 + 14985.962 0.53424477 + 16317.536 0.49071741 + 17671.773 0.44586148 + 19029.940 0.40014719 + 20371.317 0.35408159 + 21672.950 0.30820134 + 22909.050 0.26306915 + 24049.862 0.21927556 + 25059.879 0.17744805 + 25895.316 0.13826864 + 26501.100 0.10249770 + 26808.558 0.07099241 + 26737.141 0.04468675 + 26207.271 0.02446221 + 25173.659 0.01081580 + 23676.686 0.00334929 + 21871.172 0.00048633 + 19974.242 0.00000000 + 18167.336 0.00000000 + 16490.255 0.00000000 + 14933.720 0.00000000 + 13488.736 0.00000000 + 12147.222 0.00000000 + 10902.456 0.00000000 + 9749.315 0.00000000 + 8684.234 0.00000000 + 7704.898 0.00000000 + 6809.642 0.00000000 + 5996.607 0.00000000 + 5262.727 0.00000000 + 4602.672 0.00000000 + 4007.948 0.00000000 + 3466.409 0.00000000 + 2962.545 0.00000000 + 2479.015 0.00000000 + 2000.000 0.00000000 + 0.000 0.00000000 diff --git a/fix/am/RTGSST.1982.2012.monthly.clim.grb b/fix/am/RTGSST.1982.2012.monthly.clim.grb new file mode 120000 index 000000000..fce468550 --- /dev/null +++ b/fix/am/RTGSST.1982.2012.monthly.clim.grb @@ -0,0 +1 @@ +../.agent/am/RTGSST.1982.2012.monthly.clim.grb \ No newline at end of file diff --git a/fix/am/RTG_SST_landmask.dat b/fix/am/RTG_SST_landmask.dat new file mode 120000 index 000000000..0ab0a0a2f --- /dev/null +++ b/fix/am/RTG_SST_landmask.dat @@ -0,0 +1 @@ +../.agent/am/RTG_SST_landmask.dat \ No newline at end of file diff --git a/fix/am/Thompson_MP_MONTHLY_CLIMO.nc b/fix/am/Thompson_MP_MONTHLY_CLIMO.nc new file mode 120000 index 000000000..7451b24f2 --- /dev/null +++ b/fix/am/Thompson_MP_MONTHLY_CLIMO.nc @@ -0,0 +1 @@ +../.agent/am/Thompson_MP_MONTHLY_CLIMO.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m01.nc b/fix/am/aeroclim.m01.nc new file mode 120000 index 000000000..b49a82385 --- /dev/null +++ b/fix/am/aeroclim.m01.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m01.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m02.nc b/fix/am/aeroclim.m02.nc new file mode 120000 index 000000000..d33340775 --- /dev/null +++ b/fix/am/aeroclim.m02.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m02.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m03.nc b/fix/am/aeroclim.m03.nc new file mode 120000 index 000000000..a067ab480 --- /dev/null +++ b/fix/am/aeroclim.m03.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m03.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m04.nc b/fix/am/aeroclim.m04.nc new file mode 120000 index 000000000..8ab162f12 --- /dev/null +++ b/fix/am/aeroclim.m04.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m04.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m05.nc b/fix/am/aeroclim.m05.nc new file mode 120000 index 000000000..feecce69d --- /dev/null +++ b/fix/am/aeroclim.m05.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m05.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m06.nc b/fix/am/aeroclim.m06.nc new file mode 120000 index 000000000..94442d73c --- /dev/null +++ b/fix/am/aeroclim.m06.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m06.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m07.nc b/fix/am/aeroclim.m07.nc new file mode 120000 index 000000000..85a54d77e --- /dev/null +++ b/fix/am/aeroclim.m07.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m07.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m08.nc b/fix/am/aeroclim.m08.nc new file mode 120000 index 000000000..49c3d3eb3 --- /dev/null +++ b/fix/am/aeroclim.m08.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m08.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m09.nc b/fix/am/aeroclim.m09.nc new file mode 120000 index 000000000..86b4e2674 --- /dev/null +++ b/fix/am/aeroclim.m09.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m09.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m10.nc b/fix/am/aeroclim.m10.nc new file mode 120000 index 000000000..2fbc50d03 --- /dev/null +++ b/fix/am/aeroclim.m10.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m10.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m11.nc b/fix/am/aeroclim.m11.nc new file mode 120000 index 000000000..bf4929aac --- /dev/null +++ b/fix/am/aeroclim.m11.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m11.nc \ No newline at end of file diff --git a/fix/am/aeroclim.m12.nc b/fix/am/aeroclim.m12.nc new file mode 120000 index 000000000..7594d3f52 --- /dev/null +++ b/fix/am/aeroclim.m12.nc @@ -0,0 +1 @@ +../.agent/am/aeroclim.m12.nc \ No newline at end of file diff --git a/fix/am/cfs_ice1x1monclim19822001.grb b/fix/am/cfs_ice1x1monclim19822001.grb new file mode 120000 index 000000000..31a14fb8b --- /dev/null +++ b/fix/am/cfs_ice1x1monclim19822001.grb @@ -0,0 +1 @@ +../.agent/am/cfs_ice1x1monclim19822001.grb \ No newline at end of file diff --git a/fix/am/cfs_oi2sst1x1monclim19822001.grb b/fix/am/cfs_oi2sst1x1monclim19822001.grb new file mode 120000 index 000000000..a11b596e3 --- /dev/null +++ b/fix/am/cfs_oi2sst1x1monclim19822001.grb @@ -0,0 +1 @@ +../.agent/am/cfs_oi2sst1x1monclim19822001.grb \ No newline at end of file diff --git a/fix/am/cfs_v2_soilmcpc.1x1.grb b/fix/am/cfs_v2_soilmcpc.1x1.grb new file mode 120000 index 000000000..48ef443a3 --- /dev/null +++ b/fix/am/cfs_v2_soilmcpc.1x1.grb @@ -0,0 +1 @@ +../.agent/am/cfs_v2_soilmcpc.1x1.grb \ No newline at end of file diff --git a/fix/am/co2dat_4a b/fix/am/co2dat_4a new file mode 120000 index 000000000..e96b64808 --- /dev/null +++ b/fix/am/co2dat_4a @@ -0,0 +1 @@ +../.agent/am/co2dat_4a \ No newline at end of file diff --git a/fix/am/co2monthlycyc.txt b/fix/am/co2monthlycyc.txt new file mode 120000 index 000000000..617bd0586 --- /dev/null +++ b/fix/am/co2monthlycyc.txt @@ -0,0 +1 @@ +../.agent/am/co2monthlycyc.txt \ No newline at end of file diff --git a/fix/am/emcsfc_gland5min.grib2 b/fix/am/emcsfc_gland5min.grib2 new file mode 120000 index 000000000..7771a7be8 --- /dev/null +++ b/fix/am/emcsfc_gland5min.grib2 @@ -0,0 +1 @@ +../.agent/am/emcsfc_gland5min.grib2 \ No newline at end of file diff --git a/fix/am/emcsfc_snow_cover.grb b/fix/am/emcsfc_snow_cover.grb new file mode 120000 index 000000000..76f31d9b3 --- /dev/null +++ b/fix/am/emcsfc_snow_cover.grb @@ -0,0 +1 @@ +../.agent/am/emcsfc_snow_cover.grb \ No newline at end of file diff --git a/fix/am/emcsfc_snow_cover_climo.grib2 b/fix/am/emcsfc_snow_cover_climo.grib2 new file mode 120000 index 000000000..f2863071c --- /dev/null +++ b/fix/am/emcsfc_snow_cover_climo.grib2 @@ -0,0 +1 @@ +../.agent/am/emcsfc_snow_cover_climo.grib2 \ No newline at end of file diff --git a/fix/am/fix_co2_proj b/fix/am/fix_co2_proj new file mode 120000 index 000000000..f711218f2 --- /dev/null +++ b/fix/am/fix_co2_proj @@ -0,0 +1 @@ +../.agent/am/fix_co2_proj \ No newline at end of file diff --git a/fix/am/fix_co2_update b/fix/am/fix_co2_update new file mode 120000 index 000000000..3a94be25a --- /dev/null +++ b/fix/am/fix_co2_update @@ -0,0 +1 @@ +../.agent/am/fix_co2_update \ No newline at end of file diff --git a/fix/am/freezeH2O.dat b/fix/am/freezeH2O.dat new file mode 120000 index 000000000..197853c0c --- /dev/null +++ b/fix/am/freezeH2O.dat @@ -0,0 +1 @@ +../.agent/am/freezeH2O.dat \ No newline at end of file diff --git a/fix/am/geo_em.d01.lat-lon.2.5m.HGT_M.nc b/fix/am/geo_em.d01.lat-lon.2.5m.HGT_M.nc new file mode 120000 index 000000000..90b2b977a --- /dev/null +++ b/fix/am/geo_em.d01.lat-lon.2.5m.HGT_M.nc @@ -0,0 +1 @@ +../.agent/am/geo_em.d01.lat-lon.2.5m.HGT_M.nc \ No newline at end of file diff --git a/fix/am/geo_em.d01.nc_HRRRX b/fix/am/geo_em.d01.nc_HRRRX new file mode 120000 index 000000000..0f42b4cc9 --- /dev/null +++ b/fix/am/geo_em.d01.nc_HRRRX @@ -0,0 +1 @@ +../.agent/am/geo_em.d01.nc_HRRRX \ No newline at end of file diff --git a/fix/am/geo_em.d01.nc_HRRR_AK b/fix/am/geo_em.d01.nc_HRRR_AK new file mode 120000 index 000000000..f9462874f --- /dev/null +++ b/fix/am/geo_em.d01.nc_HRRR_AK @@ -0,0 +1 @@ +../.agent/am/geo_em.d01.nc_HRRR_AK \ No newline at end of file diff --git a/fix/am/geo_em.d01.nc_RAPX b/fix/am/geo_em.d01.nc_RAPX new file mode 120000 index 000000000..c3ccf2be4 --- /dev/null +++ b/fix/am/geo_em.d01.nc_RAPX @@ -0,0 +1 @@ +../.agent/am/geo_em.d01.nc_RAPX \ No newline at end of file diff --git a/fix/am/global_1x1_paramlist b/fix/am/global_1x1_paramlist new file mode 120000 index 000000000..6b5bdee9f --- /dev/null +++ b/fix/am/global_1x1_paramlist @@ -0,0 +1 @@ +../.agent/am/global_1x1_paramlist \ No newline at end of file diff --git a/fix/am/global_1x1_paramlist.anl b/fix/am/global_1x1_paramlist.anl new file mode 120000 index 000000000..d93907cd4 --- /dev/null +++ b/fix/am/global_1x1_paramlist.anl @@ -0,0 +1 @@ +../.agent/am/global_1x1_paramlist.anl \ No newline at end of file diff --git a/fix/am/global_1x1_paramlist.f00 b/fix/am/global_1x1_paramlist.f00 new file mode 120000 index 000000000..b88bbc962 --- /dev/null +++ b/fix/am/global_1x1_paramlist.f00 @@ -0,0 +1 @@ +../.agent/am/global_1x1_paramlist.f00 \ No newline at end of file diff --git a/fix/am/global_aeroinfo.txt b/fix/am/global_aeroinfo.txt new file mode 120000 index 000000000..929f086af --- /dev/null +++ b/fix/am/global_aeroinfo.txt @@ -0,0 +1 @@ +../.agent/am/global_aeroinfo.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m01.txt b/fix/am/global_aeropac3a.m01.txt new file mode 120000 index 000000000..9de3d67d2 --- /dev/null +++ b/fix/am/global_aeropac3a.m01.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m01.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m02.txt b/fix/am/global_aeropac3a.m02.txt new file mode 120000 index 000000000..a79a5dc72 --- /dev/null +++ b/fix/am/global_aeropac3a.m02.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m02.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m03.txt b/fix/am/global_aeropac3a.m03.txt new file mode 120000 index 000000000..de376afd1 --- /dev/null +++ b/fix/am/global_aeropac3a.m03.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m03.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m04.txt b/fix/am/global_aeropac3a.m04.txt new file mode 120000 index 000000000..75261a8a4 --- /dev/null +++ b/fix/am/global_aeropac3a.m04.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m04.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m05.txt b/fix/am/global_aeropac3a.m05.txt new file mode 120000 index 000000000..59bb3a961 --- /dev/null +++ b/fix/am/global_aeropac3a.m05.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m05.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m06.txt b/fix/am/global_aeropac3a.m06.txt new file mode 120000 index 000000000..ef1e655ec --- /dev/null +++ b/fix/am/global_aeropac3a.m06.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m06.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m07.txt b/fix/am/global_aeropac3a.m07.txt new file mode 120000 index 000000000..bc66c59c1 --- /dev/null +++ b/fix/am/global_aeropac3a.m07.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m07.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m08.txt b/fix/am/global_aeropac3a.m08.txt new file mode 120000 index 000000000..d9dabf30e --- /dev/null +++ b/fix/am/global_aeropac3a.m08.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m08.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m09.txt b/fix/am/global_aeropac3a.m09.txt new file mode 120000 index 000000000..cedd81c92 --- /dev/null +++ b/fix/am/global_aeropac3a.m09.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m09.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m10.txt b/fix/am/global_aeropac3a.m10.txt new file mode 120000 index 000000000..36e9740b9 --- /dev/null +++ b/fix/am/global_aeropac3a.m10.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m10.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m11.txt b/fix/am/global_aeropac3a.m11.txt new file mode 120000 index 000000000..79034007c --- /dev/null +++ b/fix/am/global_aeropac3a.m11.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m11.txt \ No newline at end of file diff --git a/fix/am/global_aeropac3a.m12.txt b/fix/am/global_aeropac3a.m12.txt new file mode 120000 index 000000000..bc85378f7 --- /dev/null +++ b/fix/am/global_aeropac3a.m12.txt @@ -0,0 +1 @@ +../.agent/am/global_aeropac3a.m12.txt \ No newline at end of file diff --git a/fix/am/global_albedo4.1x1.grb b/fix/am/global_albedo4.1x1.grb new file mode 120000 index 000000000..52c7cfe65 --- /dev/null +++ b/fix/am/global_albedo4.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_albedo4.1x1.grb \ No newline at end of file diff --git a/fix/am/global_cldtune.f77 b/fix/am/global_cldtune.f77 new file mode 120000 index 000000000..8e9a23cc2 --- /dev/null +++ b/fix/am/global_cldtune.f77 @@ -0,0 +1 @@ +../.agent/am/global_cldtune.f77 \ No newline at end of file diff --git a/fix/am/global_climaeropac_global.txt b/fix/am/global_climaeropac_global.txt new file mode 120000 index 000000000..7b8c3aab4 --- /dev/null +++ b/fix/am/global_climaeropac_global.txt @@ -0,0 +1 @@ +../.agent/am/global_climaeropac_global.txt \ No newline at end of file diff --git a/fix/am/global_co2con.l28.f77 b/fix/am/global_co2con.l28.f77 new file mode 120000 index 000000000..d2a44b88a --- /dev/null +++ b/fix/am/global_co2con.l28.f77 @@ -0,0 +1 @@ +../.agent/am/global_co2con.l28.f77 \ No newline at end of file diff --git a/fix/am/global_co2con.l42.f77 b/fix/am/global_co2con.l42.f77 new file mode 120000 index 000000000..826e29700 --- /dev/null +++ b/fix/am/global_co2con.l42.f77 @@ -0,0 +1 @@ +../.agent/am/global_co2con.l42.f77 \ No newline at end of file diff --git a/fix/am/global_co2con.l64.f77 b/fix/am/global_co2con.l64.f77 new file mode 120000 index 000000000..6fb01115d --- /dev/null +++ b/fix/am/global_co2con.l64.f77 @@ -0,0 +1 @@ +../.agent/am/global_co2con.l64.f77 \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1956.txt b/fix/am/global_co2historicaldata_1956.txt new file mode 120000 index 000000000..eb2c3d088 --- /dev/null +++ b/fix/am/global_co2historicaldata_1956.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1956.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1957.txt b/fix/am/global_co2historicaldata_1957.txt new file mode 120000 index 000000000..a29bc4411 --- /dev/null +++ b/fix/am/global_co2historicaldata_1957.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1957.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1958.txt b/fix/am/global_co2historicaldata_1958.txt new file mode 120000 index 000000000..0f0700116 --- /dev/null +++ b/fix/am/global_co2historicaldata_1958.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1958.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1959.txt b/fix/am/global_co2historicaldata_1959.txt new file mode 120000 index 000000000..f553e9c04 --- /dev/null +++ b/fix/am/global_co2historicaldata_1959.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1959.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1960.txt b/fix/am/global_co2historicaldata_1960.txt new file mode 120000 index 000000000..d9773270d --- /dev/null +++ b/fix/am/global_co2historicaldata_1960.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1960.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1961.txt b/fix/am/global_co2historicaldata_1961.txt new file mode 120000 index 000000000..c50b0992a --- /dev/null +++ b/fix/am/global_co2historicaldata_1961.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1961.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1962.txt b/fix/am/global_co2historicaldata_1962.txt new file mode 120000 index 000000000..4abeba64c --- /dev/null +++ b/fix/am/global_co2historicaldata_1962.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1962.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1963.txt b/fix/am/global_co2historicaldata_1963.txt new file mode 120000 index 000000000..93f4b4745 --- /dev/null +++ b/fix/am/global_co2historicaldata_1963.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1963.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1964.txt b/fix/am/global_co2historicaldata_1964.txt new file mode 120000 index 000000000..1b3ecde78 --- /dev/null +++ b/fix/am/global_co2historicaldata_1964.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1964.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1965.txt b/fix/am/global_co2historicaldata_1965.txt new file mode 120000 index 000000000..fc657176d --- /dev/null +++ b/fix/am/global_co2historicaldata_1965.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1965.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1966.txt b/fix/am/global_co2historicaldata_1966.txt new file mode 120000 index 000000000..a917de244 --- /dev/null +++ b/fix/am/global_co2historicaldata_1966.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1966.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1967.txt b/fix/am/global_co2historicaldata_1967.txt new file mode 120000 index 000000000..ebcc26e31 --- /dev/null +++ b/fix/am/global_co2historicaldata_1967.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1967.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1968.txt b/fix/am/global_co2historicaldata_1968.txt new file mode 120000 index 000000000..eabeaf799 --- /dev/null +++ b/fix/am/global_co2historicaldata_1968.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1968.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1969.txt b/fix/am/global_co2historicaldata_1969.txt new file mode 120000 index 000000000..bd2a4f2a3 --- /dev/null +++ b/fix/am/global_co2historicaldata_1969.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1969.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1970.txt b/fix/am/global_co2historicaldata_1970.txt new file mode 120000 index 000000000..685507178 --- /dev/null +++ b/fix/am/global_co2historicaldata_1970.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1970.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1971.txt b/fix/am/global_co2historicaldata_1971.txt new file mode 120000 index 000000000..5379947d8 --- /dev/null +++ b/fix/am/global_co2historicaldata_1971.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1971.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1972.txt b/fix/am/global_co2historicaldata_1972.txt new file mode 120000 index 000000000..3227b7a56 --- /dev/null +++ b/fix/am/global_co2historicaldata_1972.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1972.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1973.txt b/fix/am/global_co2historicaldata_1973.txt new file mode 120000 index 000000000..65fefb51c --- /dev/null +++ b/fix/am/global_co2historicaldata_1973.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1973.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1974.txt b/fix/am/global_co2historicaldata_1974.txt new file mode 120000 index 000000000..0f49c4370 --- /dev/null +++ b/fix/am/global_co2historicaldata_1974.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1974.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1975.txt b/fix/am/global_co2historicaldata_1975.txt new file mode 120000 index 000000000..5ad0aba22 --- /dev/null +++ b/fix/am/global_co2historicaldata_1975.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1975.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1976.txt b/fix/am/global_co2historicaldata_1976.txt new file mode 120000 index 000000000..5028e8e6a --- /dev/null +++ b/fix/am/global_co2historicaldata_1976.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1976.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1977.txt b/fix/am/global_co2historicaldata_1977.txt new file mode 120000 index 000000000..28c2f3e03 --- /dev/null +++ b/fix/am/global_co2historicaldata_1977.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1977.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1978.txt b/fix/am/global_co2historicaldata_1978.txt new file mode 120000 index 000000000..7fbdd8b64 --- /dev/null +++ b/fix/am/global_co2historicaldata_1978.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1978.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1979.txt b/fix/am/global_co2historicaldata_1979.txt new file mode 120000 index 000000000..a36cc1cf6 --- /dev/null +++ b/fix/am/global_co2historicaldata_1979.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1979.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1980.txt b/fix/am/global_co2historicaldata_1980.txt new file mode 120000 index 000000000..069a9aaba --- /dev/null +++ b/fix/am/global_co2historicaldata_1980.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1980.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1981.txt b/fix/am/global_co2historicaldata_1981.txt new file mode 120000 index 000000000..9505e51e7 --- /dev/null +++ b/fix/am/global_co2historicaldata_1981.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1981.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1982.txt b/fix/am/global_co2historicaldata_1982.txt new file mode 120000 index 000000000..285d9b3b6 --- /dev/null +++ b/fix/am/global_co2historicaldata_1982.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1982.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1983.txt b/fix/am/global_co2historicaldata_1983.txt new file mode 120000 index 000000000..128036ad7 --- /dev/null +++ b/fix/am/global_co2historicaldata_1983.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1983.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1984.txt b/fix/am/global_co2historicaldata_1984.txt new file mode 120000 index 000000000..cb971957f --- /dev/null +++ b/fix/am/global_co2historicaldata_1984.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1984.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1985.txt b/fix/am/global_co2historicaldata_1985.txt new file mode 120000 index 000000000..f2022cc62 --- /dev/null +++ b/fix/am/global_co2historicaldata_1985.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1985.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1986.txt b/fix/am/global_co2historicaldata_1986.txt new file mode 120000 index 000000000..2e9958813 --- /dev/null +++ b/fix/am/global_co2historicaldata_1986.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1986.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1987.txt b/fix/am/global_co2historicaldata_1987.txt new file mode 120000 index 000000000..ef72bcf62 --- /dev/null +++ b/fix/am/global_co2historicaldata_1987.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1987.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1988.txt b/fix/am/global_co2historicaldata_1988.txt new file mode 120000 index 000000000..f88cc8e53 --- /dev/null +++ b/fix/am/global_co2historicaldata_1988.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1988.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1989.txt b/fix/am/global_co2historicaldata_1989.txt new file mode 120000 index 000000000..a3c6c24bf --- /dev/null +++ b/fix/am/global_co2historicaldata_1989.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1989.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1990.txt b/fix/am/global_co2historicaldata_1990.txt new file mode 120000 index 000000000..f6484a429 --- /dev/null +++ b/fix/am/global_co2historicaldata_1990.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1990.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1991.txt b/fix/am/global_co2historicaldata_1991.txt new file mode 120000 index 000000000..f062b29c1 --- /dev/null +++ b/fix/am/global_co2historicaldata_1991.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1991.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1992.txt b/fix/am/global_co2historicaldata_1992.txt new file mode 120000 index 000000000..daddaca6b --- /dev/null +++ b/fix/am/global_co2historicaldata_1992.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1992.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1993.txt b/fix/am/global_co2historicaldata_1993.txt new file mode 120000 index 000000000..1e348c506 --- /dev/null +++ b/fix/am/global_co2historicaldata_1993.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1993.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1994.txt b/fix/am/global_co2historicaldata_1994.txt new file mode 120000 index 000000000..4ece7da14 --- /dev/null +++ b/fix/am/global_co2historicaldata_1994.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1994.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1995.txt b/fix/am/global_co2historicaldata_1995.txt new file mode 120000 index 000000000..705aab67d --- /dev/null +++ b/fix/am/global_co2historicaldata_1995.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1995.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1996.txt b/fix/am/global_co2historicaldata_1996.txt new file mode 120000 index 000000000..cfe446639 --- /dev/null +++ b/fix/am/global_co2historicaldata_1996.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1996.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1997.txt b/fix/am/global_co2historicaldata_1997.txt new file mode 120000 index 000000000..16c3672be --- /dev/null +++ b/fix/am/global_co2historicaldata_1997.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1997.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1998.txt b/fix/am/global_co2historicaldata_1998.txt new file mode 120000 index 000000000..5083fe564 --- /dev/null +++ b/fix/am/global_co2historicaldata_1998.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1998.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_1999.txt b/fix/am/global_co2historicaldata_1999.txt new file mode 120000 index 000000000..586492d2b --- /dev/null +++ b/fix/am/global_co2historicaldata_1999.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_1999.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2000.txt b/fix/am/global_co2historicaldata_2000.txt new file mode 120000 index 000000000..90b41658e --- /dev/null +++ b/fix/am/global_co2historicaldata_2000.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2000.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2001.txt b/fix/am/global_co2historicaldata_2001.txt new file mode 120000 index 000000000..362bf50b9 --- /dev/null +++ b/fix/am/global_co2historicaldata_2001.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2001.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2002.txt b/fix/am/global_co2historicaldata_2002.txt new file mode 120000 index 000000000..af74f70c5 --- /dev/null +++ b/fix/am/global_co2historicaldata_2002.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2002.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2003.txt b/fix/am/global_co2historicaldata_2003.txt new file mode 120000 index 000000000..d1db209cf --- /dev/null +++ b/fix/am/global_co2historicaldata_2003.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2003.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2004.txt b/fix/am/global_co2historicaldata_2004.txt new file mode 120000 index 000000000..0ed0fb251 --- /dev/null +++ b/fix/am/global_co2historicaldata_2004.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2004.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2005.txt b/fix/am/global_co2historicaldata_2005.txt new file mode 120000 index 000000000..a17959802 --- /dev/null +++ b/fix/am/global_co2historicaldata_2005.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2005.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2006.txt b/fix/am/global_co2historicaldata_2006.txt new file mode 120000 index 000000000..66eafecca --- /dev/null +++ b/fix/am/global_co2historicaldata_2006.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2006.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2007.txt b/fix/am/global_co2historicaldata_2007.txt new file mode 120000 index 000000000..0afd9524f --- /dev/null +++ b/fix/am/global_co2historicaldata_2007.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2007.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2008.txt b/fix/am/global_co2historicaldata_2008.txt new file mode 120000 index 000000000..c5131645f --- /dev/null +++ b/fix/am/global_co2historicaldata_2008.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2008.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2009.txt b/fix/am/global_co2historicaldata_2009.txt new file mode 120000 index 000000000..27c59e578 --- /dev/null +++ b/fix/am/global_co2historicaldata_2009.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2009.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2010.txt b/fix/am/global_co2historicaldata_2010.txt new file mode 120000 index 000000000..932bec518 --- /dev/null +++ b/fix/am/global_co2historicaldata_2010.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2010.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2011.txt b/fix/am/global_co2historicaldata_2011.txt new file mode 120000 index 000000000..e18d90533 --- /dev/null +++ b/fix/am/global_co2historicaldata_2011.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2011.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2012.txt b/fix/am/global_co2historicaldata_2012.txt new file mode 120000 index 000000000..ba0ff2697 --- /dev/null +++ b/fix/am/global_co2historicaldata_2012.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2012.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_2013.txt b/fix/am/global_co2historicaldata_2013.txt new file mode 120000 index 000000000..6c18078ef --- /dev/null +++ b/fix/am/global_co2historicaldata_2013.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_2013.txt \ No newline at end of file diff --git a/fix/am/global_co2historicaldata_glob.txt b/fix/am/global_co2historicaldata_glob.txt new file mode 120000 index 000000000..2c42b77c9 --- /dev/null +++ b/fix/am/global_co2historicaldata_glob.txt @@ -0,0 +1 @@ +../.agent/am/global_co2historicaldata_glob.txt \ No newline at end of file diff --git a/fix/am/global_co2monthlycyc1976_2006.txt b/fix/am/global_co2monthlycyc1976_2006.txt new file mode 120000 index 000000000..bd478b664 --- /dev/null +++ b/fix/am/global_co2monthlycyc1976_2006.txt @@ -0,0 +1 @@ +../.agent/am/global_co2monthlycyc1976_2006.txt \ No newline at end of file diff --git a/fix/am/global_co2monthlycyc1976_2007.txt b/fix/am/global_co2monthlycyc1976_2007.txt new file mode 120000 index 000000000..5ef4aa658 --- /dev/null +++ b/fix/am/global_co2monthlycyc1976_2007.txt @@ -0,0 +1 @@ +../.agent/am/global_co2monthlycyc1976_2007.txt \ No newline at end of file diff --git a/fix/am/global_co2monthlycyc1976_2009.txt b/fix/am/global_co2monthlycyc1976_2009.txt new file mode 120000 index 000000000..649663431 --- /dev/null +++ b/fix/am/global_co2monthlycyc1976_2009.txt @@ -0,0 +1 @@ +../.agent/am/global_co2monthlycyc1976_2009.txt \ No newline at end of file diff --git a/fix/am/global_divten.l28.f77 b/fix/am/global_divten.l28.f77 new file mode 120000 index 000000000..13d1a39ed --- /dev/null +++ b/fix/am/global_divten.l28.f77 @@ -0,0 +1 @@ +../.agent/am/global_divten.l28.f77 \ No newline at end of file diff --git a/fix/am/global_divten.l42.f77 b/fix/am/global_divten.l42.f77 new file mode 120000 index 000000000..681caa6f7 --- /dev/null +++ b/fix/am/global_divten.l42.f77 @@ -0,0 +1 @@ +../.agent/am/global_divten.l42.f77 \ No newline at end of file diff --git a/fix/am/global_divten.l64.f77 b/fix/am/global_divten.l64.f77 new file mode 120000 index 000000000..cda0501bc --- /dev/null +++ b/fix/am/global_divten.l64.f77 @@ -0,0 +1 @@ +../.agent/am/global_divten.l64.f77 \ No newline at end of file diff --git a/fix/am/global_emissivity_coefs.f77 b/fix/am/global_emissivity_coefs.f77 new file mode 120000 index 000000000..beb51fa0e --- /dev/null +++ b/fix/am/global_emissivity_coefs.f77 @@ -0,0 +1 @@ +../.agent/am/global_emissivity_coefs.f77 \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t1148.2304.1152.txt b/fix/am/global_gaussian_latitudes.t1148.2304.1152.txt new file mode 120000 index 000000000..fb8f75bee --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t1148.2304.1152.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t1148.2304.1152.txt \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t1534.3072.1536.txt b/fix/am/global_gaussian_latitudes.t1534.3072.1536.txt new file mode 120000 index 000000000..0d10c4431 --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t1534.3072.1536.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t1534.3072.1536.txt \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t574.1152.576.txt b/fix/am/global_gaussian_latitudes.t574.1152.576.txt new file mode 120000 index 000000000..9b742ad9d --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t574.1152.576.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t574.1152.576.txt \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t670.1344.672.txt b/fix/am/global_gaussian_latitudes.t670.1344.672.txt new file mode 120000 index 000000000..5bf78f665 --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t670.1344.672.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t670.1344.672.txt \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t766.1536.768.txt b/fix/am/global_gaussian_latitudes.t766.1536.768.txt new file mode 120000 index 000000000..0b08e05c5 --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t766.1536.768.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t766.1536.768.txt \ No newline at end of file diff --git a/fix/am/global_gaussian_latitudes.t94.192.96.txt b/fix/am/global_gaussian_latitudes.t94.192.96.txt new file mode 120000 index 000000000..2b73e97ef --- /dev/null +++ b/fix/am/global_gaussian_latitudes.t94.192.96.txt @@ -0,0 +1 @@ +../.agent/am/global_gaussian_latitudes.t94.192.96.txt \ No newline at end of file diff --git a/fix/am/global_glacier.2x2.grb b/fix/am/global_glacier.2x2.grb new file mode 120000 index 000000000..d8cee473a --- /dev/null +++ b/fix/am/global_glacier.2x2.grb @@ -0,0 +1 @@ +../.agent/am/global_glacier.2x2.grb \ No newline at end of file diff --git a/fix/am/global_h2o_pltc.f77 b/fix/am/global_h2o_pltc.f77 new file mode 120000 index 000000000..5bd0eefdf --- /dev/null +++ b/fix/am/global_h2o_pltc.f77 @@ -0,0 +1 @@ +../.agent/am/global_h2o_pltc.f77 \ No newline at end of file diff --git a/fix/am/global_hd_paramlist b/fix/am/global_hd_paramlist new file mode 120000 index 000000000..12a2614ec --- /dev/null +++ b/fix/am/global_hd_paramlist @@ -0,0 +1 @@ +../.agent/am/global_hd_paramlist \ No newline at end of file diff --git a/fix/am/global_hd_paramlist.f00 b/fix/am/global_hd_paramlist.f00 new file mode 120000 index 000000000..89d6cb3ad --- /dev/null +++ b/fix/am/global_hd_paramlist.f00 @@ -0,0 +1 @@ +../.agent/am/global_hd_paramlist.f00 \ No newline at end of file diff --git a/fix/am/global_hyblev.l128.txt b/fix/am/global_hyblev.l128.txt new file mode 120000 index 000000000..d3d8f174f --- /dev/null +++ b/fix/am/global_hyblev.l128.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l128C.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l128C.txt b/fix/am/global_hyblev.l128C.txt new file mode 120000 index 000000000..d3d8f174f --- /dev/null +++ b/fix/am/global_hyblev.l128C.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l128C.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l150.txt b/fix/am/global_hyblev.l150.txt new file mode 120000 index 000000000..f855f636d --- /dev/null +++ b/fix/am/global_hyblev.l150.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l150.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l28.txt b/fix/am/global_hyblev.l28.txt new file mode 120000 index 000000000..dc16248f6 --- /dev/null +++ b/fix/am/global_hyblev.l28.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l28.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l42.txt b/fix/am/global_hyblev.l42.txt new file mode 120000 index 000000000..a56af725a --- /dev/null +++ b/fix/am/global_hyblev.l42.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l42.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l60.txt b/fix/am/global_hyblev.l60.txt new file mode 120000 index 000000000..fc4a9585b --- /dev/null +++ b/fix/am/global_hyblev.l60.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l60.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l64.txt b/fix/am/global_hyblev.l64.txt new file mode 120000 index 000000000..4044c188d --- /dev/null +++ b/fix/am/global_hyblev.l64.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l64.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l64sl.txt b/fix/am/global_hyblev.l64sl.txt new file mode 120000 index 000000000..52ebb7906 --- /dev/null +++ b/fix/am/global_hyblev.l64sl.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l64sl.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l65.txt b/fix/am/global_hyblev.l65.txt new file mode 120000 index 000000000..d54ccea5d --- /dev/null +++ b/fix/am/global_hyblev.l65.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l65.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l65.txt_0.1hPa b/fix/am/global_hyblev.l65.txt_0.1hPa new file mode 120000 index 000000000..8ecca66d3 --- /dev/null +++ b/fix/am/global_hyblev.l65.txt_0.1hPa @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l65.txt_0.1hPa \ No newline at end of file diff --git a/fix/am/global_hyblev.l91.txt b/fix/am/global_hyblev.l91.txt new file mode 120000 index 000000000..7818cc9c5 --- /dev/null +++ b/fix/am/global_hyblev.l91.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l91.txt \ No newline at end of file diff --git a/fix/am/global_hyblev.l98.txt b/fix/am/global_hyblev.l98.txt new file mode 120000 index 000000000..f66924b34 --- /dev/null +++ b/fix/am/global_hyblev.l98.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev.l98.txt \ No newline at end of file diff --git a/fix/am/global_hyblev3.l28.txt b/fix/am/global_hyblev3.l28.txt new file mode 120000 index 000000000..e5d384f04 --- /dev/null +++ b/fix/am/global_hyblev3.l28.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev3.l28.txt \ No newline at end of file diff --git a/fix/am/global_hyblev3.l42.txt b/fix/am/global_hyblev3.l42.txt new file mode 120000 index 000000000..e1bc850e5 --- /dev/null +++ b/fix/am/global_hyblev3.l42.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev3.l42.txt \ No newline at end of file diff --git a/fix/am/global_hyblev3.l60.txt b/fix/am/global_hyblev3.l60.txt new file mode 120000 index 000000000..910eb835d --- /dev/null +++ b/fix/am/global_hyblev3.l60.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev3.l60.txt \ No newline at end of file diff --git a/fix/am/global_hyblev3.l64.txt b/fix/am/global_hyblev3.l64.txt new file mode 120000 index 000000000..64e6b48d9 --- /dev/null +++ b/fix/am/global_hyblev3.l64.txt @@ -0,0 +1 @@ +../.agent/am/global_hyblev3.l64.txt \ No newline at end of file diff --git a/fix/am/global_hyblev_fcst_rrfsL65.txt b/fix/am/global_hyblev_fcst_rrfsL65.txt new file mode 100644 index 000000000..b1ce286ea --- /dev/null +++ b/fix/am/global_hyblev_fcst_rrfsL65.txt @@ -0,0 +1,68 @@ + 2 66 + 0.000 1.00000000 + 0.000 0.99787363 + 0.000 0.99547387 + 0.017 0.99276698 + 0.234 0.98971388 + 1.058 0.98626929 + 3.103 0.98238159 + 7.211 0.97799245 + 14.450 0.97303658 + 26.130 0.96744145 + 43.805 0.96112727 + 69.754 0.95400221 + 107.500 0.94595747 + 160.901 0.93687684 + 233.980 0.92663902 + 330.883 0.91511905 + 455.809 0.90219033 + 612.932 0.88772712 + 806.289 0.87160769 + 1039.659 0.85371818 + 1316.413 0.83395695 + 1639.350 0.81223965 + 2010.516 0.78850460 + 2431.016 0.76271850 + 2900.827 0.73488203 + 3418.626 0.70503512 + 3981.638 0.67326135 + 4585.535 0.63969119 + 5224.384 0.60450347 + 5890.665 0.56792486 + 6575.364 0.53022703 + 7268.150 0.49172137 + 7957.623 0.45275150 + 8631.631 0.41368369 + 9277.633 0.37489594 + 9883.087 0.33676625 + 10435.842 0.29966091 + 10924.498 0.26392352 + 11338.722 0.22986547 + 11669.502 0.19775844 + 11909.318 0.16782909 + 12052.236 0.14025627 + 12093.928 0.11517042 + 12031.620 0.09265514 + 11863.989 0.07275035 + 11591.011 0.05545674 + 11213.791 0.04074101 + 10734.376 0.02854147 + 10155.564 0.01877378 + 9480.727 0.01133629 + 8714.452 0.00610706 + 7877.419 0.00279793 + 7004.872 0.00097247 + 6132.608 0.00018806 + 5296.374 0.00000379 + 4530.025 0.00000000 + 3843.468 0.00000000 + 3229.725 0.00000000 + 2681.893 0.00000000 + 2193.544 0.00000000 + 1758.738 0.00000000 + 1372.014 0.00000000 + 1028.378 0.00000000 + 723.285 0.00000000 + 452.613 0.00000000 + 212.637 0.00000000 + 0.000 0.00000000 diff --git a/fix/am/global_hyblev_fcst_rrfsL65.txt.orig b/fix/am/global_hyblev_fcst_rrfsL65.txt.orig new file mode 100644 index 000000000..fc08024e3 --- /dev/null +++ b/fix/am/global_hyblev_fcst_rrfsL65.txt.orig @@ -0,0 +1,67 @@ + 2 66 + 0.000 1.00000000 + 0.000 0.99787363 + 0.000 0.99547387 + 0.017 0.99276698 + 0.234 0.98971388 + 1.058 0.98626929 + 3.103 0.98238159 + 7.211 0.97799245 + 14.450 0.97303658 + 26.130 0.96744145 + 43.805 0.96112727 + 69.754 0.95400221 + 107.500 0.94595747 + 160.901 0.93687684 + 233.980 0.92663902 + 330.883 0.91511905 + 455.809 0.90219033 + 612.932 0.88772712 + 806.289 0.87160769 + 1039.659 0.85371818 + 1316.413 0.83395695 + 1639.350 0.81223965 + 2010.516 0.78850460 + 2431.016 0.76271850 + 2900.827 0.73488203 + 3418.626 0.70503512 + 3981.638 0.67326135 + 4585.535 0.63969119 + 5224.384 0.60450347 + 5890.665 0.56792486 + 6575.364 0.53022703 + 7268.150 0.49172137 + 7957.623 0.45275150 + 8631.631 0.41368369 + 9277.633 0.37489594 + 9883.087 0.33676625 + 10435.842 0.29966091 + 10924.498 0.26392352 + 11338.722 0.22986547 + 11669.502 0.19775844 + 11909.318 0.16782909 + 12052.236 0.14025627 + 12093.928 0.11517042 + 12031.620 0.09265514 + 11863.989 0.07275035 + 11591.011 0.05545674 + 11213.791 0.04074101 + 10734.376 0.02854147 + 10155.564 0.01877378 + 9480.727 0.01133629 + 8714.452 0.00610706 + 7877.419 0.00279793 + 7004.872 0.00097247 + 6132.608 0.00018806 + 5296.374 0.00000379 + 4530.025 0.00000000 + 3843.468 0.00000000 + 3229.725 0.00000000 + 2681.893 0.00000000 + 2193.544 0.00000000 + 1758.738 0.00000000 + 1372.014 0.00000000 + 1028.378 0.00000000 + 723.285 0.00000000 + 452.613 0.00000000 + 212.637 0.00000000 diff --git a/fix/am/global_iceclim.2x2.grb b/fix/am/global_iceclim.2x2.grb new file mode 120000 index 000000000..ba4ef28f1 --- /dev/null +++ b/fix/am/global_iceclim.2x2.grb @@ -0,0 +1 @@ +../.agent/am/global_iceclim.2x2.grb \ No newline at end of file diff --git a/fix/am/global_idea_coeff_hflux.dat b/fix/am/global_idea_coeff_hflux.dat new file mode 120000 index 000000000..d2139fbe7 --- /dev/null +++ b/fix/am/global_idea_coeff_hflux.dat @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_hflux.dat \ No newline at end of file diff --git a/fix/am/global_idea_coeff_lflux.dat b/fix/am/global_idea_coeff_lflux.dat new file mode 120000 index 000000000..47008db3b --- /dev/null +++ b/fix/am/global_idea_coeff_lflux.dat @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_lflux.dat \ No newline at end of file diff --git a/fix/am/global_idea_coeff_lte.150 b/fix/am/global_idea_coeff_lte.150 new file mode 120000 index 000000000..b26f2f4bc --- /dev/null +++ b/fix/am/global_idea_coeff_lte.150 @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_lte.150 \ No newline at end of file diff --git a/fix/am/global_idea_coeff_lte.360 b/fix/am/global_idea_coeff_lte.360 new file mode 120000 index 000000000..5af1b4fca --- /dev/null +++ b/fix/am/global_idea_coeff_lte.360 @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_lte.360 \ No newline at end of file diff --git a/fix/am/global_idea_coeff_lte.540 b/fix/am/global_idea_coeff_lte.540 new file mode 120000 index 000000000..9fc11012f --- /dev/null +++ b/fix/am/global_idea_coeff_lte.540 @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_lte.540 \ No newline at end of file diff --git a/fix/am/global_idea_coeff_lte.720 b/fix/am/global_idea_coeff_lte.720 new file mode 120000 index 000000000..ccd42e875 --- /dev/null +++ b/fix/am/global_idea_coeff_lte.720 @@ -0,0 +1 @@ +../.agent/am/global_idea_coeff_lte.720 \ No newline at end of file diff --git a/fix/am/global_idea_ggww_in1.par b/fix/am/global_idea_ggww_in1.par new file mode 120000 index 000000000..d5247c8b7 --- /dev/null +++ b/fix/am/global_idea_ggww_in1.par @@ -0,0 +1 @@ +../.agent/am/global_idea_ggww_in1.par \ No newline at end of file diff --git a/fix/am/global_idea_ggww_in4.par b/fix/am/global_idea_ggww_in4.par new file mode 120000 index 000000000..8b19cafc6 --- /dev/null +++ b/fix/am/global_idea_ggww_in4.par @@ -0,0 +1 @@ +../.agent/am/global_idea_ggww_in4.par \ No newline at end of file diff --git a/fix/am/global_idea_h2ort_kg7t.par b/fix/am/global_idea_h2ort_kg7t.par new file mode 120000 index 000000000..740618e98 --- /dev/null +++ b/fix/am/global_idea_h2ort_kg7t.par @@ -0,0 +1 @@ +../.agent/am/global_idea_h2ort_kg7t.par \ No newline at end of file diff --git a/fix/am/global_idea_h2ovb_kg7t.par b/fix/am/global_idea_h2ovb_kg7t.par new file mode 120000 index 000000000..e7ed38260 --- /dev/null +++ b/fix/am/global_idea_h2ovb_kg7t.par @@ -0,0 +1 @@ +../.agent/am/global_idea_h2ovb_kg7t.par \ No newline at end of file diff --git a/fix/am/global_idea_wei96.cofcnts b/fix/am/global_idea_wei96.cofcnts new file mode 120000 index 000000000..7d78bc12a --- /dev/null +++ b/fix/am/global_idea_wei96.cofcnts @@ -0,0 +1 @@ +../.agent/am/global_idea_wei96.cofcnts \ No newline at end of file diff --git a/fix/am/global_kplist.1d.txt b/fix/am/global_kplist.1d.txt new file mode 120000 index 000000000..2c24d84dc --- /dev/null +++ b/fix/am/global_kplist.1d.txt @@ -0,0 +1 @@ +../.agent/am/global_kplist.1d.txt \ No newline at end of file diff --git a/fix/am/global_kplist.hd.txt b/fix/am/global_kplist.hd.txt new file mode 120000 index 000000000..52638faa7 --- /dev/null +++ b/fix/am/global_kplist.hd.txt @@ -0,0 +1 @@ +../.agent/am/global_kplist.hd.txt \ No newline at end of file diff --git a/fix/am/global_kplist.master.txt b/fix/am/global_kplist.master.txt new file mode 120000 index 000000000..a7c7880e2 --- /dev/null +++ b/fix/am/global_kplist.master.txt @@ -0,0 +1 @@ +../.agent/am/global_kplist.master.txt \ No newline at end of file diff --git a/fix/am/global_latitudes.t1148.2304.1152.grb b/fix/am/global_latitudes.t1148.2304.1152.grb new file mode 120000 index 000000000..9e70f6818 --- /dev/null +++ b/fix/am/global_latitudes.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t126.384.190.grb b/fix/am/global_latitudes.t126.384.190.grb new file mode 120000 index 000000000..6c8a0f84c --- /dev/null +++ b/fix/am/global_latitudes.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t1534.3072.1536.grb b/fix/am/global_latitudes.t1534.3072.1536.grb new file mode 120000 index 000000000..9d303b219 --- /dev/null +++ b/fix/am/global_latitudes.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t170.512.256.grb b/fix/am/global_latitudes.t170.512.256.grb new file mode 120000 index 000000000..567cc45d8 --- /dev/null +++ b/fix/am/global_latitudes.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t190.384.192.grb b/fix/am/global_latitudes.t190.384.192.grb new file mode 120000 index 000000000..6c8a0f84c --- /dev/null +++ b/fix/am/global_latitudes.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t190.576.288.grb b/fix/am/global_latitudes.t190.576.288.grb new file mode 120000 index 000000000..e27239a48 --- /dev/null +++ b/fix/am/global_latitudes.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t254.512.256.grb b/fix/am/global_latitudes.t254.512.256.grb new file mode 120000 index 000000000..7ee800493 --- /dev/null +++ b/fix/am/global_latitudes.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t254.768.384.grb b/fix/am/global_latitudes.t254.768.384.grb new file mode 120000 index 000000000..f3b44d6f8 --- /dev/null +++ b/fix/am/global_latitudes.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t382.1152.576.grb b/fix/am/global_latitudes.t382.1152.576.grb new file mode 120000 index 000000000..3e9719c01 --- /dev/null +++ b/fix/am/global_latitudes.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t382.768.384.grb b/fix/am/global_latitudes.t382.768.384.grb new file mode 120000 index 000000000..65a9bacc6 --- /dev/null +++ b/fix/am/global_latitudes.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t574.1152.576.grb b/fix/am/global_latitudes.t574.1152.576.grb new file mode 120000 index 000000000..c4e20a73a --- /dev/null +++ b/fix/am/global_latitudes.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t574.1760.880.grb b/fix/am/global_latitudes.t574.1760.880.grb new file mode 120000 index 000000000..878a91ab1 --- /dev/null +++ b/fix/am/global_latitudes.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t62.192.94.grb b/fix/am/global_latitudes.t62.192.94.grb new file mode 120000 index 000000000..3646cdd17 --- /dev/null +++ b/fix/am/global_latitudes.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t670.1344.672.grb b/fix/am/global_latitudes.t670.1344.672.grb new file mode 120000 index 000000000..9210adbf8 --- /dev/null +++ b/fix/am/global_latitudes.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t878.1760.880.grb b/fix/am/global_latitudes.t878.1760.880.grb new file mode 120000 index 000000000..d81fe9d2b --- /dev/null +++ b/fix/am/global_latitudes.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t878.2640.1320.grb b/fix/am/global_latitudes.t878.2640.1320.grb new file mode 120000 index 000000000..90c48e112 --- /dev/null +++ b/fix/am/global_latitudes.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_latitudes.t92.192.94.grb b/fix/am/global_latitudes.t92.192.94.grb new file mode 120000 index 000000000..4b877bb11 --- /dev/null +++ b/fix/am/global_latitudes.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_latitudes.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t1148.2304.1152.grb b/fix/am/global_longitudes.t1148.2304.1152.grb new file mode 120000 index 000000000..33e0133b6 --- /dev/null +++ b/fix/am/global_longitudes.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t126.384.190.grb b/fix/am/global_longitudes.t126.384.190.grb new file mode 120000 index 000000000..21d4c98f4 --- /dev/null +++ b/fix/am/global_longitudes.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t1534.3072.1536.grb b/fix/am/global_longitudes.t1534.3072.1536.grb new file mode 120000 index 000000000..2874bfcda --- /dev/null +++ b/fix/am/global_longitudes.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t170.512.256.grb b/fix/am/global_longitudes.t170.512.256.grb new file mode 120000 index 000000000..dd88556c4 --- /dev/null +++ b/fix/am/global_longitudes.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t190.384.192.grb b/fix/am/global_longitudes.t190.384.192.grb new file mode 120000 index 000000000..21d4c98f4 --- /dev/null +++ b/fix/am/global_longitudes.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t190.576.288.grb b/fix/am/global_longitudes.t190.576.288.grb new file mode 120000 index 000000000..9bc16efb0 --- /dev/null +++ b/fix/am/global_longitudes.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t254.512.256.grb b/fix/am/global_longitudes.t254.512.256.grb new file mode 120000 index 000000000..e0a7a6606 --- /dev/null +++ b/fix/am/global_longitudes.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t254.768.384.grb b/fix/am/global_longitudes.t254.768.384.grb new file mode 120000 index 000000000..c38c154e3 --- /dev/null +++ b/fix/am/global_longitudes.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t382.1152.576.grb b/fix/am/global_longitudes.t382.1152.576.grb new file mode 120000 index 000000000..fae02161a --- /dev/null +++ b/fix/am/global_longitudes.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t382.768.384.grb b/fix/am/global_longitudes.t382.768.384.grb new file mode 120000 index 000000000..708087522 --- /dev/null +++ b/fix/am/global_longitudes.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t574.1152.576.grb b/fix/am/global_longitudes.t574.1152.576.grb new file mode 120000 index 000000000..208813552 --- /dev/null +++ b/fix/am/global_longitudes.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t574.1760.880.grb b/fix/am/global_longitudes.t574.1760.880.grb new file mode 120000 index 000000000..882207eaf --- /dev/null +++ b/fix/am/global_longitudes.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t62.192.94.grb b/fix/am/global_longitudes.t62.192.94.grb new file mode 120000 index 000000000..f515a0cf4 --- /dev/null +++ b/fix/am/global_longitudes.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t670.1344.672.grb b/fix/am/global_longitudes.t670.1344.672.grb new file mode 120000 index 000000000..d78d445ad --- /dev/null +++ b/fix/am/global_longitudes.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t878.1760.880.grb b/fix/am/global_longitudes.t878.1760.880.grb new file mode 120000 index 000000000..16bc0e165 --- /dev/null +++ b/fix/am/global_longitudes.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t878.2640.1320.grb b/fix/am/global_longitudes.t878.2640.1320.grb new file mode 120000 index 000000000..c98685334 --- /dev/null +++ b/fix/am/global_longitudes.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_longitudes.t92.192.94.grb b/fix/am/global_longitudes.t92.192.94.grb new file mode 120000 index 000000000..aa1a8db43 --- /dev/null +++ b/fix/am/global_longitudes.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_longitudes.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t1148.2304.1152.txt b/fix/am/global_lonsperlat.t1148.2304.1152.txt new file mode 120000 index 000000000..3580556f4 --- /dev/null +++ b/fix/am/global_lonsperlat.t1148.2304.1152.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t1148.2304.1152.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t126.384.190.txt b/fix/am/global_lonsperlat.t126.384.190.txt new file mode 120000 index 000000000..89cb5d4fd --- /dev/null +++ b/fix/am/global_lonsperlat.t126.384.190.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t126.384.190.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t1534.3072.1536.txt b/fix/am/global_lonsperlat.t1534.3072.1536.txt new file mode 120000 index 000000000..18c6b1d88 --- /dev/null +++ b/fix/am/global_lonsperlat.t1534.3072.1536.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t1534.3072.1536.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t170.512.256.txt b/fix/am/global_lonsperlat.t170.512.256.txt new file mode 120000 index 000000000..d2992107e --- /dev/null +++ b/fix/am/global_lonsperlat.t170.512.256.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t170.512.256.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t190.384.192.txt b/fix/am/global_lonsperlat.t190.384.192.txt new file mode 120000 index 000000000..89cb5d4fd --- /dev/null +++ b/fix/am/global_lonsperlat.t190.384.192.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t126.384.190.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t190.576.288.txt b/fix/am/global_lonsperlat.t190.576.288.txt new file mode 120000 index 000000000..5e163f1d1 --- /dev/null +++ b/fix/am/global_lonsperlat.t190.576.288.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t190.576.288.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t254.512.256.txt b/fix/am/global_lonsperlat.t254.512.256.txt new file mode 120000 index 000000000..5f2a2c4a6 --- /dev/null +++ b/fix/am/global_lonsperlat.t254.512.256.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t254.512.256.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t254.768.384.txt b/fix/am/global_lonsperlat.t254.768.384.txt new file mode 120000 index 000000000..e53698e8f --- /dev/null +++ b/fix/am/global_lonsperlat.t254.768.384.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t254.768.384.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t3070.6144.3072.txt b/fix/am/global_lonsperlat.t3070.6144.3072.txt new file mode 120000 index 000000000..ddeaf2ae5 --- /dev/null +++ b/fix/am/global_lonsperlat.t3070.6144.3072.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t3070.6144.3072.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t382.1152.576.txt b/fix/am/global_lonsperlat.t382.1152.576.txt new file mode 120000 index 000000000..dde87e4bc --- /dev/null +++ b/fix/am/global_lonsperlat.t382.1152.576.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t382.1152.576.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t382.768.384.txt b/fix/am/global_lonsperlat.t382.768.384.txt new file mode 120000 index 000000000..fe8b2bcf9 --- /dev/null +++ b/fix/am/global_lonsperlat.t382.768.384.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t382.768.384.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t574.1152.576.txt b/fix/am/global_lonsperlat.t574.1152.576.txt new file mode 120000 index 000000000..54ab96902 --- /dev/null +++ b/fix/am/global_lonsperlat.t574.1152.576.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t574.1152.576.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t574.1760.880.txt b/fix/am/global_lonsperlat.t574.1760.880.txt new file mode 120000 index 000000000..ab2d928df --- /dev/null +++ b/fix/am/global_lonsperlat.t574.1760.880.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t574.1760.880.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t62.192.94.txt b/fix/am/global_lonsperlat.t62.192.94.txt new file mode 120000 index 000000000..077ba87e1 --- /dev/null +++ b/fix/am/global_lonsperlat.t62.192.94.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t62.192.94.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t670.1344.672.txt b/fix/am/global_lonsperlat.t670.1344.672.txt new file mode 120000 index 000000000..4302e86e4 --- /dev/null +++ b/fix/am/global_lonsperlat.t670.1344.672.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t670.1344.672.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t766.1536.768.txt b/fix/am/global_lonsperlat.t766.1536.768.txt new file mode 120000 index 000000000..b3d8d81d9 --- /dev/null +++ b/fix/am/global_lonsperlat.t766.1536.768.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t766.1536.768.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t878.1760.880.txt b/fix/am/global_lonsperlat.t878.1760.880.txt new file mode 120000 index 000000000..b9fc2ad5f --- /dev/null +++ b/fix/am/global_lonsperlat.t878.1760.880.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t878.1760.880.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t878.2640.1320.txt b/fix/am/global_lonsperlat.t878.2640.1320.txt new file mode 120000 index 000000000..fdcc9fe37 --- /dev/null +++ b/fix/am/global_lonsperlat.t878.2640.1320.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t878.2640.1320.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t92.192.94.txt b/fix/am/global_lonsperlat.t92.192.94.txt new file mode 120000 index 000000000..56271f5ef --- /dev/null +++ b/fix/am/global_lonsperlat.t92.192.94.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t92.192.94.txt \ No newline at end of file diff --git a/fix/am/global_lonsperlat.t94.192.96.txt b/fix/am/global_lonsperlat.t94.192.96.txt new file mode 120000 index 000000000..a884a6192 --- /dev/null +++ b/fix/am/global_lonsperlat.t94.192.96.txt @@ -0,0 +1 @@ +../.agent/am/global_lonsperlat.t94.192.96.txt \ No newline at end of file diff --git a/fix/am/global_maskh.grb b/fix/am/global_maskh.grb new file mode 120000 index 000000000..d6a5c0d5a --- /dev/null +++ b/fix/am/global_maskh.grb @@ -0,0 +1 @@ +../.agent/am/global_maskh.grb \ No newline at end of file diff --git a/fix/am/global_master-catchup_parmlist b/fix/am/global_master-catchup_parmlist new file mode 120000 index 000000000..535dd03ee --- /dev/null +++ b/fix/am/global_master-catchup_parmlist @@ -0,0 +1 @@ +../.agent/am/global_master-catchup_parmlist \ No newline at end of file diff --git a/fix/am/global_maxice.2x2.grb b/fix/am/global_maxice.2x2.grb new file mode 120000 index 000000000..2bfd34e08 --- /dev/null +++ b/fix/am/global_maxice.2x2.grb @@ -0,0 +1 @@ +../.agent/am/global_maxice.2x2.grb \ No newline at end of file diff --git a/fix/am/global_mtnvar.t1148.2304.1152.f77 b/fix/am/global_mtnvar.t1148.2304.1152.f77 new file mode 120000 index 000000000..310f8130d --- /dev/null +++ b/fix/am/global_mtnvar.t1148.2304.1152.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t1148.2304.1152.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t126.384.190.f77 b/fix/am/global_mtnvar.t126.384.190.f77 new file mode 120000 index 000000000..f18464ba9 --- /dev/null +++ b/fix/am/global_mtnvar.t126.384.190.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t126.384.190.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t126.384.190.rg.f77 b/fix/am/global_mtnvar.t126.384.190.rg.f77 new file mode 120000 index 000000000..fd02b6d38 --- /dev/null +++ b/fix/am/global_mtnvar.t126.384.190.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t1534.3072.1536.f77 b/fix/am/global_mtnvar.t1534.3072.1536.f77 new file mode 120000 index 000000000..3865d33a7 --- /dev/null +++ b/fix/am/global_mtnvar.t1534.3072.1536.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t1534.3072.1536.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t1534.3072.1536.rg.f77 b/fix/am/global_mtnvar.t1534.3072.1536.rg.f77 new file mode 120000 index 000000000..cc376b5e3 --- /dev/null +++ b/fix/am/global_mtnvar.t1534.3072.1536.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t1534.3072.1536.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t170.512.256.f77 b/fix/am/global_mtnvar.t170.512.256.f77 new file mode 120000 index 000000000..901bf28f4 --- /dev/null +++ b/fix/am/global_mtnvar.t170.512.256.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t170.512.256.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t190.384.192.f77 b/fix/am/global_mtnvar.t190.384.192.f77 new file mode 120000 index 000000000..f18464ba9 --- /dev/null +++ b/fix/am/global_mtnvar.t190.384.192.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t126.384.190.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t190.384.192.rg.f77 b/fix/am/global_mtnvar.t190.384.192.rg.f77 new file mode 120000 index 000000000..fd02b6d38 --- /dev/null +++ b/fix/am/global_mtnvar.t190.384.192.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t190.576.288.f77 b/fix/am/global_mtnvar.t190.576.288.f77 new file mode 120000 index 000000000..a605bcf3f --- /dev/null +++ b/fix/am/global_mtnvar.t190.576.288.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t190.576.288.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t254.512.256.f77 b/fix/am/global_mtnvar.t254.512.256.f77 new file mode 120000 index 000000000..caa783791 --- /dev/null +++ b/fix/am/global_mtnvar.t254.512.256.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t254.512.256.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t254.512.256.rg.f77 b/fix/am/global_mtnvar.t254.512.256.rg.f77 new file mode 120000 index 000000000..2dd3dd57d --- /dev/null +++ b/fix/am/global_mtnvar.t254.512.256.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t254.512.256.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t254.768.384.f77 b/fix/am/global_mtnvar.t254.768.384.f77 new file mode 120000 index 000000000..1cf35161d --- /dev/null +++ b/fix/am/global_mtnvar.t254.768.384.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t254.768.384.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t382.1152.576.f77 b/fix/am/global_mtnvar.t382.1152.576.f77 new file mode 120000 index 000000000..021aac515 --- /dev/null +++ b/fix/am/global_mtnvar.t382.1152.576.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t382.1152.576.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t382.768.384.f77 b/fix/am/global_mtnvar.t382.768.384.f77 new file mode 120000 index 000000000..65c68827a --- /dev/null +++ b/fix/am/global_mtnvar.t382.768.384.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t382.768.384.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t382.768.384.rg.f77 b/fix/am/global_mtnvar.t382.768.384.rg.f77 new file mode 120000 index 000000000..749faf4f6 --- /dev/null +++ b/fix/am/global_mtnvar.t382.768.384.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t382.768.384.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t574.1152.576.f77 b/fix/am/global_mtnvar.t574.1152.576.f77 new file mode 120000 index 000000000..0722af1ef --- /dev/null +++ b/fix/am/global_mtnvar.t574.1152.576.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t574.1152.576.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t574.1152.576.rg.f77 b/fix/am/global_mtnvar.t574.1152.576.rg.f77 new file mode 120000 index 000000000..169e6b08d --- /dev/null +++ b/fix/am/global_mtnvar.t574.1152.576.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t574.1152.576.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t574.1760.880.f77 b/fix/am/global_mtnvar.t574.1760.880.f77 new file mode 120000 index 000000000..1010b1376 --- /dev/null +++ b/fix/am/global_mtnvar.t574.1760.880.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t574.1760.880.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t62.192.94.f77 b/fix/am/global_mtnvar.t62.192.94.f77 new file mode 120000 index 000000000..f20a8c5bd --- /dev/null +++ b/fix/am/global_mtnvar.t62.192.94.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t62.192.94.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t670.1344.672.f77 b/fix/am/global_mtnvar.t670.1344.672.f77 new file mode 120000 index 000000000..a0d81f491 --- /dev/null +++ b/fix/am/global_mtnvar.t670.1344.672.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t670.1344.672.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t670.1344.672.rg.f77 b/fix/am/global_mtnvar.t670.1344.672.rg.f77 new file mode 120000 index 000000000..1a158b66f --- /dev/null +++ b/fix/am/global_mtnvar.t670.1344.672.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t670.1344.672.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t766.1536.768.rg.f77 b/fix/am/global_mtnvar.t766.1536.768.rg.f77 new file mode 120000 index 000000000..5e6c9921b --- /dev/null +++ b/fix/am/global_mtnvar.t766.1536.768.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t766.1536.768.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t878.1760.880.f77 b/fix/am/global_mtnvar.t878.1760.880.f77 new file mode 120000 index 000000000..74656a27d --- /dev/null +++ b/fix/am/global_mtnvar.t878.1760.880.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t878.1760.880.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t878.2640.1320.f77 b/fix/am/global_mtnvar.t878.2640.1320.f77 new file mode 120000 index 000000000..26cbe7dce --- /dev/null +++ b/fix/am/global_mtnvar.t878.2640.1320.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t878.2640.1320.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t92.192.94.f77 b/fix/am/global_mtnvar.t92.192.94.f77 new file mode 120000 index 000000000..3b402a290 --- /dev/null +++ b/fix/am/global_mtnvar.t92.192.94.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t92.192.94.f77 \ No newline at end of file diff --git a/fix/am/global_mtnvar.t92.192.94.rg.f77 b/fix/am/global_mtnvar.t92.192.94.rg.f77 new file mode 120000 index 000000000..098e3c506 --- /dev/null +++ b/fix/am/global_mtnvar.t92.192.94.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_mtnvar.t92.192.94.rg.f77 \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t1148.2304.1152.grb b/fix/am/global_mxsnoalb.uariz.t1148.2304.1152.grb new file mode 120000 index 000000000..73c7f3643 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t126.384.190.grb b/fix/am/global_mxsnoalb.uariz.t126.384.190.grb new file mode 120000 index 000000000..be570d403 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t126.384.190.rg.grb b/fix/am/global_mxsnoalb.uariz.t126.384.190.rg.grb new file mode 120000 index 000000000..b52d9e53c --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.grb b/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.grb new file mode 120000 index 000000000..744872f59 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb b/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..673f3659d --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t170.512.256.grb b/fix/am/global_mxsnoalb.uariz.t170.512.256.grb new file mode 120000 index 000000000..cebb5cdbe --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t190.384.192.grb b/fix/am/global_mxsnoalb.uariz.t190.384.192.grb new file mode 120000 index 000000000..be570d403 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t190.384.192.rg.grb b/fix/am/global_mxsnoalb.uariz.t190.384.192.rg.grb new file mode 120000 index 000000000..b52d9e53c --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t190.576.288.grb b/fix/am/global_mxsnoalb.uariz.t190.576.288.grb new file mode 120000 index 000000000..8fa15eb52 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t190.576.288.rg.grb b/fix/am/global_mxsnoalb.uariz.t190.576.288.rg.grb new file mode 120000 index 000000000..8fa15eb52 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t190.576.288.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t254.512.256.grb b/fix/am/global_mxsnoalb.uariz.t254.512.256.grb new file mode 120000 index 000000000..8217c86d2 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t254.512.256.rg.grb b/fix/am/global_mxsnoalb.uariz.t254.512.256.rg.grb new file mode 120000 index 000000000..87751c14f --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t254.768.384.grb b/fix/am/global_mxsnoalb.uariz.t254.768.384.grb new file mode 120000 index 000000000..13d7a3803 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t382.1152.576.grb b/fix/am/global_mxsnoalb.uariz.t382.1152.576.grb new file mode 120000 index 000000000..4350ce618 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t382.768.384.grb b/fix/am/global_mxsnoalb.uariz.t382.768.384.grb new file mode 120000 index 000000000..b6911ef4e --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t382.768.384.rg.grb b/fix/am/global_mxsnoalb.uariz.t382.768.384.rg.grb new file mode 120000 index 000000000..d7fc59f48 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t574.1152.576.grb b/fix/am/global_mxsnoalb.uariz.t574.1152.576.grb new file mode 120000 index 000000000..e18f261f1 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t574.1152.576.rg.grb b/fix/am/global_mxsnoalb.uariz.t574.1152.576.rg.grb new file mode 120000 index 000000000..576b235c5 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t574.1760.880.grb b/fix/am/global_mxsnoalb.uariz.t574.1760.880.grb new file mode 120000 index 000000000..278406e14 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t62.192.94.grb b/fix/am/global_mxsnoalb.uariz.t62.192.94.grb new file mode 120000 index 000000000..691500394 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t62.192.94.rg.grb b/fix/am/global_mxsnoalb.uariz.t62.192.94.rg.grb new file mode 120000 index 000000000..f4e1ce508 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t670.1344.672.grb b/fix/am/global_mxsnoalb.uariz.t670.1344.672.grb new file mode 120000 index 000000000..9f01fbb00 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t670.1344.672.rg.grb b/fix/am/global_mxsnoalb.uariz.t670.1344.672.rg.grb new file mode 120000 index 000000000..caee32bdb --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t766.1536.768.grb b/fix/am/global_mxsnoalb.uariz.t766.1536.768.grb new file mode 120000 index 000000000..a2c81f4e0 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t766.1536.768.rg.grb b/fix/am/global_mxsnoalb.uariz.t766.1536.768.rg.grb new file mode 120000 index 000000000..a2c81f4e0 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t878.1760.880.grb b/fix/am/global_mxsnoalb.uariz.t878.1760.880.grb new file mode 120000 index 000000000..da65d615a --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t878.2640.1320.grb b/fix/am/global_mxsnoalb.uariz.t878.2640.1320.grb new file mode 120000 index 000000000..c7430cf06 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t92.192.94.grb b/fix/am/global_mxsnoalb.uariz.t92.192.94.grb new file mode 120000 index 000000000..5aec10206 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t92.192.94.rg.grb b/fix/am/global_mxsnoalb.uariz.t92.192.94.rg.grb new file mode 120000 index 000000000..76d526348 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_mxsnoalb.uariz.t94.192.96.rg.grb b/fix/am/global_mxsnoalb.uariz.t94.192.96.rg.grb new file mode 120000 index 000000000..76d526348 --- /dev/null +++ b/fix/am/global_mxsnoalb.uariz.t94.192.96.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_mxsnoalb.uariz.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_npoess_paramlist b/fix/am/global_npoess_paramlist new file mode 120000 index 000000000..24513adc5 --- /dev/null +++ b/fix/am/global_npoess_paramlist @@ -0,0 +1 @@ +../.agent/am/global_npoess_paramlist \ No newline at end of file diff --git a/fix/am/global_o3clim.txt b/fix/am/global_o3clim.txt new file mode 120000 index 000000000..41cfe8029 --- /dev/null +++ b/fix/am/global_o3clim.txt @@ -0,0 +1 @@ +../.agent/am/global_o3clim.txt \ No newline at end of file diff --git a/fix/am/global_o3prdlos.f77 b/fix/am/global_o3prdlos.f77 new file mode 120000 index 000000000..ccf6745ae --- /dev/null +++ b/fix/am/global_o3prdlos.f77 @@ -0,0 +1 @@ +../.agent/am/global_o3prdlos.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t1148.2304.1152.grb b/fix/am/global_orography.t1148.2304.1152.grb new file mode 120000 index 000000000..7b75dd91b --- /dev/null +++ b/fix/am/global_orography.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_orography.t126.384.190.grb b/fix/am/global_orography.t126.384.190.grb new file mode 120000 index 000000000..6678c0bd3 --- /dev/null +++ b/fix/am/global_orography.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_orography.t126.384.190.rg.f77 b/fix/am/global_orography.t126.384.190.rg.f77 new file mode 120000 index 000000000..14f5aa000 --- /dev/null +++ b/fix/am/global_orography.t126.384.190.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t126.384.190.rg.grb b/fix/am/global_orography.t126.384.190.rg.grb new file mode 120000 index 000000000..06d24abfd --- /dev/null +++ b/fix/am/global_orography.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t1534.3072.1536.grb b/fix/am/global_orography.t1534.3072.1536.grb new file mode 120000 index 000000000..bb057d1a0 --- /dev/null +++ b/fix/am/global_orography.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_orography.t1534.3072.1536.rg.f77 b/fix/am/global_orography.t1534.3072.1536.rg.f77 new file mode 120000 index 000000000..b2f560771 --- /dev/null +++ b/fix/am/global_orography.t1534.3072.1536.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t1534.3072.1536.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t1534.3072.1536.rg.grb b/fix/am/global_orography.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..b55a48eb1 --- /dev/null +++ b/fix/am/global_orography.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t170.512.256.grb b/fix/am/global_orography.t170.512.256.grb new file mode 120000 index 000000000..fe74194ad --- /dev/null +++ b/fix/am/global_orography.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_orography.t190.384.192.grb b/fix/am/global_orography.t190.384.192.grb new file mode 120000 index 000000000..6678c0bd3 --- /dev/null +++ b/fix/am/global_orography.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_orography.t190.384.192.rg.f77 b/fix/am/global_orography.t190.384.192.rg.f77 new file mode 120000 index 000000000..14f5aa000 --- /dev/null +++ b/fix/am/global_orography.t190.384.192.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t190.384.192.rg.grb b/fix/am/global_orography.t190.384.192.rg.grb new file mode 120000 index 000000000..06d24abfd --- /dev/null +++ b/fix/am/global_orography.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t190.576.288.grb b/fix/am/global_orography.t190.576.288.grb new file mode 120000 index 000000000..d5505344b --- /dev/null +++ b/fix/am/global_orography.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_orography.t254.512.256.grb b/fix/am/global_orography.t254.512.256.grb new file mode 120000 index 000000000..dd3fe84af --- /dev/null +++ b/fix/am/global_orography.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_orography.t254.512.256.rg.f77 b/fix/am/global_orography.t254.512.256.rg.f77 new file mode 120000 index 000000000..6bfa15797 --- /dev/null +++ b/fix/am/global_orography.t254.512.256.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t254.512.256.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t254.512.256.rg.grb b/fix/am/global_orography.t254.512.256.rg.grb new file mode 120000 index 000000000..30bfd9929 --- /dev/null +++ b/fix/am/global_orography.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t254.768.384.grb b/fix/am/global_orography.t254.768.384.grb new file mode 120000 index 000000000..7ea0d1731 --- /dev/null +++ b/fix/am/global_orography.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_orography.t382.1152.576.grb b/fix/am/global_orography.t382.1152.576.grb new file mode 120000 index 000000000..5493c1903 --- /dev/null +++ b/fix/am/global_orography.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_orography.t382.768.384.grb b/fix/am/global_orography.t382.768.384.grb new file mode 120000 index 000000000..1a728788f --- /dev/null +++ b/fix/am/global_orography.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_orography.t382.768.384.rg.f77 b/fix/am/global_orography.t382.768.384.rg.f77 new file mode 120000 index 000000000..7900042c8 --- /dev/null +++ b/fix/am/global_orography.t382.768.384.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t382.768.384.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t382.768.384.rg.grb b/fix/am/global_orography.t382.768.384.rg.grb new file mode 120000 index 000000000..f359dd363 --- /dev/null +++ b/fix/am/global_orography.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t574.1152.576.grb b/fix/am/global_orography.t574.1152.576.grb new file mode 120000 index 000000000..06c6d4964 --- /dev/null +++ b/fix/am/global_orography.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_orography.t574.1152.576.rg.f77 b/fix/am/global_orography.t574.1152.576.rg.f77 new file mode 120000 index 000000000..7dec25333 --- /dev/null +++ b/fix/am/global_orography.t574.1152.576.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t574.1152.576.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t574.1152.576.rg.grb b/fix/am/global_orography.t574.1152.576.rg.grb new file mode 120000 index 000000000..4c7b58f6e --- /dev/null +++ b/fix/am/global_orography.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t574.1760.880.grb b/fix/am/global_orography.t574.1760.880.grb new file mode 120000 index 000000000..91b63835a --- /dev/null +++ b/fix/am/global_orography.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_orography.t62.192.94.grb b/fix/am/global_orography.t62.192.94.grb new file mode 120000 index 000000000..eadc8485a --- /dev/null +++ b/fix/am/global_orography.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_orography.t62.192.94.rg.grb b/fix/am/global_orography.t62.192.94.rg.grb new file mode 120000 index 000000000..2827fbabd --- /dev/null +++ b/fix/am/global_orography.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t670.1344.672.grb b/fix/am/global_orography.t670.1344.672.grb new file mode 120000 index 000000000..afc18641e --- /dev/null +++ b/fix/am/global_orography.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_orography.t670.1344.672.rg.f77 b/fix/am/global_orography.t670.1344.672.rg.f77 new file mode 120000 index 000000000..dea4c1d55 --- /dev/null +++ b/fix/am/global_orography.t670.1344.672.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t670.1344.672.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t670.1344.672.rg.grb b/fix/am/global_orography.t670.1344.672.rg.grb new file mode 120000 index 000000000..4f413ae07 --- /dev/null +++ b/fix/am/global_orography.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t766.1536.768.rg.f77 b/fix/am/global_orography.t766.1536.768.rg.f77 new file mode 120000 index 000000000..f2d258c62 --- /dev/null +++ b/fix/am/global_orography.t766.1536.768.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t766.1536.768.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t766.1536.768.rg.grb b/fix/am/global_orography.t766.1536.768.rg.grb new file mode 120000 index 000000000..924123813 --- /dev/null +++ b/fix/am/global_orography.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t766.1536.768.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography.t878.1760.880.grb b/fix/am/global_orography.t878.1760.880.grb new file mode 120000 index 000000000..9ba7c9168 --- /dev/null +++ b/fix/am/global_orography.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_orography.t878.2640.1320.grb b/fix/am/global_orography.t878.2640.1320.grb new file mode 120000 index 000000000..2ff1a5153 --- /dev/null +++ b/fix/am/global_orography.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_orography.t92.192.94.grb b/fix/am/global_orography.t92.192.94.grb new file mode 120000 index 000000000..fdc71e311 --- /dev/null +++ b/fix/am/global_orography.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_orography.t92.192.94.rg.f77 b/fix/am/global_orography.t92.192.94.rg.f77 new file mode 120000 index 000000000..0b43ddf96 --- /dev/null +++ b/fix/am/global_orography.t92.192.94.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography.t92.192.94.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography.t92.192.94.rg.grb b/fix/am/global_orography.t92.192.94.rg.grb new file mode 120000 index 000000000..9cfdd6bce --- /dev/null +++ b/fix/am/global_orography.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_0.5x0.5.dat b/fix/am/global_orography_0.5x0.5.dat new file mode 120000 index 000000000..b482e7933 --- /dev/null +++ b/fix/am/global_orography_0.5x0.5.dat @@ -0,0 +1 @@ +../.agent/am/global_orography_0.5x0.5.dat \ No newline at end of file diff --git a/fix/am/global_orography_uf.t1148.2304.1152.grb b/fix/am/global_orography_uf.t1148.2304.1152.grb new file mode 120000 index 000000000..4d381da6d --- /dev/null +++ b/fix/am/global_orography_uf.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t126.384.190.grb b/fix/am/global_orography_uf.t126.384.190.grb new file mode 120000 index 000000000..b8912a54f --- /dev/null +++ b/fix/am/global_orography_uf.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t126.384.190.rg.f77 b/fix/am/global_orography_uf.t126.384.190.rg.f77 new file mode 120000 index 000000000..83e58db42 --- /dev/null +++ b/fix/am/global_orography_uf.t126.384.190.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t126.384.190.rg.grb b/fix/am/global_orography_uf.t126.384.190.rg.grb new file mode 120000 index 000000000..d4fd2b90e --- /dev/null +++ b/fix/am/global_orography_uf.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t1534.3072.1536.grb b/fix/am/global_orography_uf.t1534.3072.1536.grb new file mode 120000 index 000000000..5e0a84f75 --- /dev/null +++ b/fix/am/global_orography_uf.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t1534.3072.1536.rg.f77 b/fix/am/global_orography_uf.t1534.3072.1536.rg.f77 new file mode 120000 index 000000000..6f018f20b --- /dev/null +++ b/fix/am/global_orography_uf.t1534.3072.1536.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t1534.3072.1536.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t1534.3072.1536.rg.grb b/fix/am/global_orography_uf.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..3981e0f69 --- /dev/null +++ b/fix/am/global_orography_uf.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t170.512.256.grb b/fix/am/global_orography_uf.t170.512.256.grb new file mode 120000 index 000000000..c0cdd4438 --- /dev/null +++ b/fix/am/global_orography_uf.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t190.384.192.grb b/fix/am/global_orography_uf.t190.384.192.grb new file mode 120000 index 000000000..b8912a54f --- /dev/null +++ b/fix/am/global_orography_uf.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t190.384.192.rg.f77 b/fix/am/global_orography_uf.t190.384.192.rg.f77 new file mode 120000 index 000000000..83e58db42 --- /dev/null +++ b/fix/am/global_orography_uf.t190.384.192.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t190.384.192.rg.grb b/fix/am/global_orography_uf.t190.384.192.rg.grb new file mode 120000 index 000000000..d4fd2b90e --- /dev/null +++ b/fix/am/global_orography_uf.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t190.576.288.grb b/fix/am/global_orography_uf.t190.576.288.grb new file mode 120000 index 000000000..1efbc81da --- /dev/null +++ b/fix/am/global_orography_uf.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t254.512.256.grb b/fix/am/global_orography_uf.t254.512.256.grb new file mode 120000 index 000000000..1b8025320 --- /dev/null +++ b/fix/am/global_orography_uf.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t254.512.256.rg.f77 b/fix/am/global_orography_uf.t254.512.256.rg.f77 new file mode 120000 index 000000000..8d6a58ef2 --- /dev/null +++ b/fix/am/global_orography_uf.t254.512.256.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t254.512.256.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t254.512.256.rg.grb b/fix/am/global_orography_uf.t254.512.256.rg.grb new file mode 120000 index 000000000..4b2cf9914 --- /dev/null +++ b/fix/am/global_orography_uf.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t254.768.384.grb b/fix/am/global_orography_uf.t254.768.384.grb new file mode 120000 index 000000000..c02955be1 --- /dev/null +++ b/fix/am/global_orography_uf.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t382.1152.576.grb b/fix/am/global_orography_uf.t382.1152.576.grb new file mode 120000 index 000000000..4b8dc2987 --- /dev/null +++ b/fix/am/global_orography_uf.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t382.768.384.grb b/fix/am/global_orography_uf.t382.768.384.grb new file mode 120000 index 000000000..037f72435 --- /dev/null +++ b/fix/am/global_orography_uf.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t382.768.384.rg.f77 b/fix/am/global_orography_uf.t382.768.384.rg.f77 new file mode 120000 index 000000000..98287c038 --- /dev/null +++ b/fix/am/global_orography_uf.t382.768.384.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t382.768.384.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t382.768.384.rg.grb b/fix/am/global_orography_uf.t382.768.384.rg.grb new file mode 120000 index 000000000..d414d2df0 --- /dev/null +++ b/fix/am/global_orography_uf.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t574.1152.576.grb b/fix/am/global_orography_uf.t574.1152.576.grb new file mode 120000 index 000000000..3474ee00d --- /dev/null +++ b/fix/am/global_orography_uf.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t574.1152.576.rg.f77 b/fix/am/global_orography_uf.t574.1152.576.rg.f77 new file mode 120000 index 000000000..78e110045 --- /dev/null +++ b/fix/am/global_orography_uf.t574.1152.576.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t574.1152.576.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t574.1152.576.rg.grb b/fix/am/global_orography_uf.t574.1152.576.rg.grb new file mode 120000 index 000000000..f19f17516 --- /dev/null +++ b/fix/am/global_orography_uf.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t574.1760.880.grb b/fix/am/global_orography_uf.t574.1760.880.grb new file mode 120000 index 000000000..b7c2279f9 --- /dev/null +++ b/fix/am/global_orography_uf.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t62.192.94.grb b/fix/am/global_orography_uf.t62.192.94.grb new file mode 120000 index 000000000..8e9795afd --- /dev/null +++ b/fix/am/global_orography_uf.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t62.192.94.rg.grb b/fix/am/global_orography_uf.t62.192.94.rg.grb new file mode 120000 index 000000000..b34b644e8 --- /dev/null +++ b/fix/am/global_orography_uf.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t670.1344.672.grb b/fix/am/global_orography_uf.t670.1344.672.grb new file mode 120000 index 000000000..368ea6dc5 --- /dev/null +++ b/fix/am/global_orography_uf.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t670.1344.672.rg.f77 b/fix/am/global_orography_uf.t670.1344.672.rg.f77 new file mode 120000 index 000000000..6ac85e449 --- /dev/null +++ b/fix/am/global_orography_uf.t670.1344.672.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t670.1344.672.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t670.1344.672.rg.grb b/fix/am/global_orography_uf.t670.1344.672.rg.grb new file mode 120000 index 000000000..6abf84986 --- /dev/null +++ b/fix/am/global_orography_uf.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t766.1536.768.rg.f77 b/fix/am/global_orography_uf.t766.1536.768.rg.f77 new file mode 120000 index 000000000..3674803bd --- /dev/null +++ b/fix/am/global_orography_uf.t766.1536.768.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t766.1536.768.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t766.1536.768.rg.grb b/fix/am/global_orography_uf.t766.1536.768.rg.grb new file mode 120000 index 000000000..ce0d20690 --- /dev/null +++ b/fix/am/global_orography_uf.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t766.1536.768.rg.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t878.1760.880.grb b/fix/am/global_orography_uf.t878.1760.880.grb new file mode 120000 index 000000000..566a9910b --- /dev/null +++ b/fix/am/global_orography_uf.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t878.2640.1320.grb b/fix/am/global_orography_uf.t878.2640.1320.grb new file mode 120000 index 000000000..811e0ee39 --- /dev/null +++ b/fix/am/global_orography_uf.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t92.192.94.grb b/fix/am/global_orography_uf.t92.192.94.grb new file mode 120000 index 000000000..95c55aca6 --- /dev/null +++ b/fix/am/global_orography_uf.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_orography_uf.t92.192.94.rg.f77 b/fix/am/global_orography_uf.t92.192.94.rg.f77 new file mode 120000 index 000000000..08d7d7ba9 --- /dev/null +++ b/fix/am/global_orography_uf.t92.192.94.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t92.192.94.rg.f77 \ No newline at end of file diff --git a/fix/am/global_orography_uf.t92.192.94.rg.grb b/fix/am/global_orography_uf.t92.192.94.rg.grb new file mode 120000 index 000000000..ed6eca22a --- /dev/null +++ b/fix/am/global_orography_uf.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_orography_uf.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_salclm.t1534.3072.1536.nc b/fix/am/global_salclm.t1534.3072.1536.nc new file mode 120000 index 000000000..1b82b3adc --- /dev/null +++ b/fix/am/global_salclm.t1534.3072.1536.nc @@ -0,0 +1 @@ +../.agent/am/global_salclm.t1534.3072.1536.nc \ No newline at end of file diff --git a/fix/am/global_sfc_emissivity_idx.txt b/fix/am/global_sfc_emissivity_idx.txt new file mode 120000 index 000000000..7839cec5f --- /dev/null +++ b/fix/am/global_sfc_emissivity_idx.txt @@ -0,0 +1 @@ +../.agent/am/global_sfc_emissivity_idx.txt \ No newline at end of file diff --git a/fix/am/global_shdmax.0.144x0.144.grb b/fix/am/global_shdmax.0.144x0.144.grb new file mode 120000 index 000000000..4d5b584c7 --- /dev/null +++ b/fix/am/global_shdmax.0.144x0.144.grb @@ -0,0 +1 @@ +../.agent/am/global_shdmax.0.144x0.144.grb \ No newline at end of file diff --git a/fix/am/global_shdmax.grb b/fix/am/global_shdmax.grb new file mode 120000 index 000000000..3393c6461 --- /dev/null +++ b/fix/am/global_shdmax.grb @@ -0,0 +1 @@ +../.agent/am/global_shdmax.grb \ No newline at end of file diff --git a/fix/am/global_shdmin.0.144x0.144.grb b/fix/am/global_shdmin.0.144x0.144.grb new file mode 120000 index 000000000..288ded3e5 --- /dev/null +++ b/fix/am/global_shdmin.0.144x0.144.grb @@ -0,0 +1 @@ +../.agent/am/global_shdmin.0.144x0.144.grb \ No newline at end of file diff --git a/fix/am/global_shdmin.grb b/fix/am/global_shdmin.grb new file mode 120000 index 000000000..075137bee --- /dev/null +++ b/fix/am/global_shdmin.grb @@ -0,0 +1 @@ +../.agent/am/global_shdmin.grb \ No newline at end of file diff --git a/fix/am/global_siglevel.l28.txt b/fix/am/global_siglevel.l28.txt new file mode 120000 index 000000000..0dcecafa5 --- /dev/null +++ b/fix/am/global_siglevel.l28.txt @@ -0,0 +1 @@ +../.agent/am/global_siglevel.l28.txt \ No newline at end of file diff --git a/fix/am/global_siglevel.l42.txt b/fix/am/global_siglevel.l42.txt new file mode 120000 index 000000000..e7df28e15 --- /dev/null +++ b/fix/am/global_siglevel.l42.txt @@ -0,0 +1 @@ +../.agent/am/global_siglevel.l42.txt \ No newline at end of file diff --git a/fix/am/global_siglevel.l64.txt b/fix/am/global_siglevel.l64.txt new file mode 120000 index 000000000..addf43938 --- /dev/null +++ b/fix/am/global_siglevel.l64.txt @@ -0,0 +1 @@ +../.agent/am/global_siglevel.l64.txt \ No newline at end of file diff --git a/fix/am/global_slmask.t1148.2304.1152.grb b/fix/am/global_slmask.t1148.2304.1152.grb new file mode 120000 index 000000000..0016117ed --- /dev/null +++ b/fix/am/global_slmask.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t126.384.190.grb b/fix/am/global_slmask.t126.384.190.grb new file mode 120000 index 000000000..c9eb63e1a --- /dev/null +++ b/fix/am/global_slmask.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t126.384.190.rg.f77 b/fix/am/global_slmask.t126.384.190.rg.f77 new file mode 120000 index 000000000..4aae97e3e --- /dev/null +++ b/fix/am/global_slmask.t126.384.190.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t126.384.190.rg.grb b/fix/am/global_slmask.t126.384.190.rg.grb new file mode 120000 index 000000000..21119fbf4 --- /dev/null +++ b/fix/am/global_slmask.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t1534.3072.1536.grb b/fix/am/global_slmask.t1534.3072.1536.grb new file mode 120000 index 000000000..7d5993a70 --- /dev/null +++ b/fix/am/global_slmask.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t1534.3072.1536.rg.f77 b/fix/am/global_slmask.t1534.3072.1536.rg.f77 new file mode 120000 index 000000000..d5043ee42 --- /dev/null +++ b/fix/am/global_slmask.t1534.3072.1536.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t1534.3072.1536.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t1534.3072.1536.rg.grb b/fix/am/global_slmask.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..380c08326 --- /dev/null +++ b/fix/am/global_slmask.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t170.512.256.grb b/fix/am/global_slmask.t170.512.256.grb new file mode 120000 index 000000000..6749a0d9f --- /dev/null +++ b/fix/am/global_slmask.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t190.384.192.grb b/fix/am/global_slmask.t190.384.192.grb new file mode 120000 index 000000000..c9eb63e1a --- /dev/null +++ b/fix/am/global_slmask.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t190.384.192.rg.f77 b/fix/am/global_slmask.t190.384.192.rg.f77 new file mode 120000 index 000000000..4aae97e3e --- /dev/null +++ b/fix/am/global_slmask.t190.384.192.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t190.384.192.rg.grb b/fix/am/global_slmask.t190.384.192.rg.grb new file mode 120000 index 000000000..21119fbf4 --- /dev/null +++ b/fix/am/global_slmask.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t190.576.288.grb b/fix/am/global_slmask.t190.576.288.grb new file mode 120000 index 000000000..499f804b5 --- /dev/null +++ b/fix/am/global_slmask.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t254.512.256.grb b/fix/am/global_slmask.t254.512.256.grb new file mode 120000 index 000000000..4b693d9eb --- /dev/null +++ b/fix/am/global_slmask.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t254.512.256.rg.f77 b/fix/am/global_slmask.t254.512.256.rg.f77 new file mode 120000 index 000000000..5407edd00 --- /dev/null +++ b/fix/am/global_slmask.t254.512.256.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t254.512.256.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t254.512.256.rg.grb b/fix/am/global_slmask.t254.512.256.rg.grb new file mode 120000 index 000000000..9b16f34bb --- /dev/null +++ b/fix/am/global_slmask.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t254.768.384.grb b/fix/am/global_slmask.t254.768.384.grb new file mode 120000 index 000000000..dba1a5eac --- /dev/null +++ b/fix/am/global_slmask.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t382.1152.576.grb b/fix/am/global_slmask.t382.1152.576.grb new file mode 120000 index 000000000..dd686f42b --- /dev/null +++ b/fix/am/global_slmask.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t382.768.384.grb b/fix/am/global_slmask.t382.768.384.grb new file mode 120000 index 000000000..fce8fd0af --- /dev/null +++ b/fix/am/global_slmask.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t382.768.384.rg.f77 b/fix/am/global_slmask.t382.768.384.rg.f77 new file mode 120000 index 000000000..35b4d1632 --- /dev/null +++ b/fix/am/global_slmask.t382.768.384.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t382.768.384.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t382.768.384.rg.grb b/fix/am/global_slmask.t382.768.384.rg.grb new file mode 120000 index 000000000..d0904743b --- /dev/null +++ b/fix/am/global_slmask.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t574.1152.576.grb b/fix/am/global_slmask.t574.1152.576.grb new file mode 120000 index 000000000..c619114e6 --- /dev/null +++ b/fix/am/global_slmask.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t574.1152.576.rg.f77 b/fix/am/global_slmask.t574.1152.576.rg.f77 new file mode 120000 index 000000000..a0ba6248e --- /dev/null +++ b/fix/am/global_slmask.t574.1152.576.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t574.1152.576.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t574.1152.576.rg.grb b/fix/am/global_slmask.t574.1152.576.rg.grb new file mode 120000 index 000000000..285d950f6 --- /dev/null +++ b/fix/am/global_slmask.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t574.1760.880.grb b/fix/am/global_slmask.t574.1760.880.grb new file mode 120000 index 000000000..386cce319 --- /dev/null +++ b/fix/am/global_slmask.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t62.192.94.grb b/fix/am/global_slmask.t62.192.94.grb new file mode 120000 index 000000000..b7c1f1bea --- /dev/null +++ b/fix/am/global_slmask.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t62.192.94.rg.grb b/fix/am/global_slmask.t62.192.94.rg.grb new file mode 120000 index 000000000..d2c3a91dd --- /dev/null +++ b/fix/am/global_slmask.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t670.1344.672.grb b/fix/am/global_slmask.t670.1344.672.grb new file mode 120000 index 000000000..26e2bf0d4 --- /dev/null +++ b/fix/am/global_slmask.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t670.1344.672.rg.f77 b/fix/am/global_slmask.t670.1344.672.rg.f77 new file mode 120000 index 000000000..40867bb14 --- /dev/null +++ b/fix/am/global_slmask.t670.1344.672.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t670.1344.672.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t670.1344.672.rg.grb b/fix/am/global_slmask.t670.1344.672.rg.grb new file mode 120000 index 000000000..b0a2a8ff9 --- /dev/null +++ b/fix/am/global_slmask.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t766.1536.768.grb b/fix/am/global_slmask.t766.1536.768.grb new file mode 120000 index 000000000..a64f3b0ba --- /dev/null +++ b/fix/am/global_slmask.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t766.1536.768.rg.f77 b/fix/am/global_slmask.t766.1536.768.rg.f77 new file mode 120000 index 000000000..af68b7e3c --- /dev/null +++ b/fix/am/global_slmask.t766.1536.768.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t766.1536.768.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t766.1536.768.rg.grb b/fix/am/global_slmask.t766.1536.768.rg.grb new file mode 120000 index 000000000..a64f3b0ba --- /dev/null +++ b/fix/am/global_slmask.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t878.1760.880.grb b/fix/am/global_slmask.t878.1760.880.grb new file mode 120000 index 000000000..bb25edfd1 --- /dev/null +++ b/fix/am/global_slmask.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t878.2640.1320.grb b/fix/am/global_slmask.t878.2640.1320.grb new file mode 120000 index 000000000..22b16074d --- /dev/null +++ b/fix/am/global_slmask.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t92.192.94.grb b/fix/am/global_slmask.t92.192.94.grb new file mode 120000 index 000000000..c261f3b51 --- /dev/null +++ b/fix/am/global_slmask.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_slmask.t92.192.94.rg.f77 b/fix/am/global_slmask.t92.192.94.rg.f77 new file mode 120000 index 000000000..8a2d11251 --- /dev/null +++ b/fix/am/global_slmask.t92.192.94.rg.f77 @@ -0,0 +1 @@ +../.agent/am/global_slmask.t92.192.94.rg.f77 \ No newline at end of file diff --git a/fix/am/global_slmask.t92.192.94.rg.grb b/fix/am/global_slmask.t92.192.94.rg.grb new file mode 120000 index 000000000..51aa106c0 --- /dev/null +++ b/fix/am/global_slmask.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_slmask.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_slope.1x1.grb b/fix/am/global_slope.1x1.grb new file mode 120000 index 000000000..803b21531 --- /dev/null +++ b/fix/am/global_slope.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_slope.1x1.grb \ No newline at end of file diff --git a/fix/am/global_slptyp.grb b/fix/am/global_slptyp.grb new file mode 120000 index 000000000..6601df342 --- /dev/null +++ b/fix/am/global_slptyp.grb @@ -0,0 +1 @@ +../.agent/am/global_slptyp.grb \ No newline at end of file diff --git a/fix/am/global_snoalb.1x1.grb b/fix/am/global_snoalb.1x1.grb new file mode 120000 index 000000000..6e253b469 --- /dev/null +++ b/fix/am/global_snoalb.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_snoalb.1x1.grb \ No newline at end of file diff --git a/fix/am/global_snoalb.grb b/fix/am/global_snoalb.grb new file mode 120000 index 000000000..ed08d737c --- /dev/null +++ b/fix/am/global_snoalb.grb @@ -0,0 +1 @@ +../.agent/am/global_snoalb.grb \ No newline at end of file diff --git a/fix/am/global_snoclim.1.875.grb b/fix/am/global_snoclim.1.875.grb new file mode 120000 index 000000000..c971226b6 --- /dev/null +++ b/fix/am/global_snoclim.1.875.grb @@ -0,0 +1 @@ +../.agent/am/global_snoclim.1.875.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t1148.2304.1152.grb b/fix/am/global_snowfree_albedo.bosu.t1148.2304.1152.grb new file mode 120000 index 000000000..551d61241 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t126.384.190.grb b/fix/am/global_snowfree_albedo.bosu.t126.384.190.grb new file mode 120000 index 000000000..8c5a66920 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t126.384.190.rg.grb b/fix/am/global_snowfree_albedo.bosu.t126.384.190.rg.grb new file mode 120000 index 000000000..046d82f71 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.grb b/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.grb new file mode 120000 index 000000000..4615f5415 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb b/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..5c7e535f7 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t170.512.256.grb b/fix/am/global_snowfree_albedo.bosu.t170.512.256.grb new file mode 120000 index 000000000..d1772110a --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t190.384.192.grb b/fix/am/global_snowfree_albedo.bosu.t190.384.192.grb new file mode 120000 index 000000000..8c5a66920 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t190.384.192.rg.grb b/fix/am/global_snowfree_albedo.bosu.t190.384.192.rg.grb new file mode 120000 index 000000000..046d82f71 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t190.576.288.grb b/fix/am/global_snowfree_albedo.bosu.t190.576.288.grb new file mode 120000 index 000000000..03750a165 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t190.576.288.rg.grb b/fix/am/global_snowfree_albedo.bosu.t190.576.288.rg.grb new file mode 120000 index 000000000..03750a165 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t190.576.288.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t254.512.256.grb b/fix/am/global_snowfree_albedo.bosu.t254.512.256.grb new file mode 120000 index 000000000..bfb45a3de --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t254.512.256.rg.grb b/fix/am/global_snowfree_albedo.bosu.t254.512.256.rg.grb new file mode 120000 index 000000000..ec8bc654d --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t254.768.384.grb b/fix/am/global_snowfree_albedo.bosu.t254.768.384.grb new file mode 120000 index 000000000..ca009c155 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t382.1152.576.grb b/fix/am/global_snowfree_albedo.bosu.t382.1152.576.grb new file mode 120000 index 000000000..aaf3ba455 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t382.768.384.grb b/fix/am/global_snowfree_albedo.bosu.t382.768.384.grb new file mode 120000 index 000000000..f7c24948e --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t382.768.384.rg.grb b/fix/am/global_snowfree_albedo.bosu.t382.768.384.rg.grb new file mode 120000 index 000000000..fd9f01c25 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t574.1152.576.grb b/fix/am/global_snowfree_albedo.bosu.t574.1152.576.grb new file mode 120000 index 000000000..a2f87da45 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t574.1152.576.rg.grb b/fix/am/global_snowfree_albedo.bosu.t574.1152.576.rg.grb new file mode 120000 index 000000000..e797a5233 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t574.1760.880.grb b/fix/am/global_snowfree_albedo.bosu.t574.1760.880.grb new file mode 120000 index 000000000..d37c9c5fb --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t62.192.94.grb b/fix/am/global_snowfree_albedo.bosu.t62.192.94.grb new file mode 120000 index 000000000..38df81bf5 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t62.192.94.rg.grb b/fix/am/global_snowfree_albedo.bosu.t62.192.94.rg.grb new file mode 120000 index 000000000..a52f8c91c --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t670.1344.672.grb b/fix/am/global_snowfree_albedo.bosu.t670.1344.672.grb new file mode 120000 index 000000000..d3fb0b72e --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t670.1344.672.rg.grb b/fix/am/global_snowfree_albedo.bosu.t670.1344.672.rg.grb new file mode 120000 index 000000000..dc0b06cca --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t766.1536.768.grb b/fix/am/global_snowfree_albedo.bosu.t766.1536.768.grb new file mode 120000 index 000000000..b39a49bcc --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t766.1536.768.rg.grb b/fix/am/global_snowfree_albedo.bosu.t766.1536.768.rg.grb new file mode 120000 index 000000000..b39a49bcc --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t878.1760.880.grb b/fix/am/global_snowfree_albedo.bosu.t878.1760.880.grb new file mode 120000 index 000000000..6552e28fe --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t878.2640.1320.grb b/fix/am/global_snowfree_albedo.bosu.t878.2640.1320.grb new file mode 120000 index 000000000..e82f298ef --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t92.192.94.grb b/fix/am/global_snowfree_albedo.bosu.t92.192.94.grb new file mode 120000 index 000000000..b8b0a5380 --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t92.192.94.rg.grb b/fix/am/global_snowfree_albedo.bosu.t92.192.94.rg.grb new file mode 120000 index 000000000..0c322e64e --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_snowfree_albedo.bosu.t94.192.96.rg.grb b/fix/am/global_snowfree_albedo.bosu.t94.192.96.rg.grb new file mode 120000 index 000000000..0c322e64e --- /dev/null +++ b/fix/am/global_snowfree_albedo.bosu.t94.192.96.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_snowfree_albedo.bosu.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_soilmcpc.1x1.grb b/fix/am/global_soilmcpc.1x1.grb new file mode 120000 index 000000000..a2e1afd3d --- /dev/null +++ b/fix/am/global_soilmcpc.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmcpc.1x1.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t1534.3072.1536.grb b/fix/am/global_soilmgldas.statsgo.t1534.3072.1536.grb new file mode 120000 index 000000000..4489907f2 --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t254.512.256.grb b/fix/am/global_soilmgldas.statsgo.t254.512.256.grb new file mode 120000 index 000000000..b446c2cf4 --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t382.1152.576.grb b/fix/am/global_soilmgldas.statsgo.t382.1152.576.grb new file mode 120000 index 000000000..cd0ce934b --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t382.768.384.grb b/fix/am/global_soilmgldas.statsgo.t382.768.384.grb new file mode 120000 index 000000000..02f6f01b5 --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t574.1152.576.grb b/fix/am/global_soilmgldas.statsgo.t574.1152.576.grb new file mode 120000 index 000000000..86558733a --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t766.1536.768.grb b/fix/am/global_soilmgldas.statsgo.t766.1536.768.grb new file mode 120000 index 000000000..9af5cb0f8 --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t92.192.94.grb b/fix/am/global_soilmgldas.statsgo.t92.192.94.grb new file mode 120000 index 000000000..057668f3c --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.statsgo.t94.192.96.grb b/fix/am/global_soilmgldas.statsgo.t94.192.96.grb new file mode 120000 index 000000000..057668f3c --- /dev/null +++ b/fix/am/global_soilmgldas.statsgo.t94.192.96.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.statsgo.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t1148.2304.1152.grb b/fix/am/global_soilmgldas.t1148.2304.1152.grb new file mode 120000 index 000000000..8d466044a --- /dev/null +++ b/fix/am/global_soilmgldas.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t126.384.190.grb b/fix/am/global_soilmgldas.t126.384.190.grb new file mode 120000 index 000000000..8805ce7e2 --- /dev/null +++ b/fix/am/global_soilmgldas.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t1534.3072.1536.grb b/fix/am/global_soilmgldas.t1534.3072.1536.grb new file mode 120000 index 000000000..d8bae07f7 --- /dev/null +++ b/fix/am/global_soilmgldas.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t170.512.256.grb b/fix/am/global_soilmgldas.t170.512.256.grb new file mode 120000 index 000000000..295a954f9 --- /dev/null +++ b/fix/am/global_soilmgldas.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t190.384.192.grb b/fix/am/global_soilmgldas.t190.384.192.grb new file mode 120000 index 000000000..8805ce7e2 --- /dev/null +++ b/fix/am/global_soilmgldas.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t190.576.288.grb b/fix/am/global_soilmgldas.t190.576.288.grb new file mode 120000 index 000000000..e8ee31f31 --- /dev/null +++ b/fix/am/global_soilmgldas.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t190.576.288.rg.grb b/fix/am/global_soilmgldas.t190.576.288.rg.grb new file mode 120000 index 000000000..e8ee31f31 --- /dev/null +++ b/fix/am/global_soilmgldas.t190.576.288.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t254.512.256.grb b/fix/am/global_soilmgldas.t254.512.256.grb new file mode 120000 index 000000000..4c13f0ac7 --- /dev/null +++ b/fix/am/global_soilmgldas.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t254.768.384.grb b/fix/am/global_soilmgldas.t254.768.384.grb new file mode 120000 index 000000000..b46f787c0 --- /dev/null +++ b/fix/am/global_soilmgldas.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t382.1152.576.grb b/fix/am/global_soilmgldas.t382.1152.576.grb new file mode 120000 index 000000000..dbffeea77 --- /dev/null +++ b/fix/am/global_soilmgldas.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t382.768.384.grb b/fix/am/global_soilmgldas.t382.768.384.grb new file mode 120000 index 000000000..7eec3afd1 --- /dev/null +++ b/fix/am/global_soilmgldas.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t574.1152.576.grb b/fix/am/global_soilmgldas.t574.1152.576.grb new file mode 120000 index 000000000..eb1fe9f4f --- /dev/null +++ b/fix/am/global_soilmgldas.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t574.1760.880.grb b/fix/am/global_soilmgldas.t574.1760.880.grb new file mode 120000 index 000000000..297402bbf --- /dev/null +++ b/fix/am/global_soilmgldas.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t62.192.94.grb b/fix/am/global_soilmgldas.t62.192.94.grb new file mode 120000 index 000000000..402c113b3 --- /dev/null +++ b/fix/am/global_soilmgldas.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t670.1344.672.grb b/fix/am/global_soilmgldas.t670.1344.672.grb new file mode 120000 index 000000000..949a22028 --- /dev/null +++ b/fix/am/global_soilmgldas.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t766.1536.768.grb b/fix/am/global_soilmgldas.t766.1536.768.grb new file mode 120000 index 000000000..80cb7d348 --- /dev/null +++ b/fix/am/global_soilmgldas.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t878.1760.880.grb b/fix/am/global_soilmgldas.t878.1760.880.grb new file mode 120000 index 000000000..4d25616c5 --- /dev/null +++ b/fix/am/global_soilmgldas.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t878.2640.1320.grb b/fix/am/global_soilmgldas.t878.2640.1320.grb new file mode 120000 index 000000000..9738d4425 --- /dev/null +++ b/fix/am/global_soilmgldas.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_soilmgldas.t92.192.94.grb b/fix/am/global_soilmgldas.t92.192.94.grb new file mode 120000 index 000000000..e9d458172 --- /dev/null +++ b/fix/am/global_soilmgldas.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_soilmgldas.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.1x1.grb b/fix/am/global_soiltype.1x1.grb new file mode 120000 index 000000000..dc1b93749 --- /dev/null +++ b/fix/am/global_soiltype.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.1x1.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t1148.2304.1152.grb b/fix/am/global_soiltype.statsgo.t1148.2304.1152.grb new file mode 120000 index 000000000..05c3f076d --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t126.384.190.grb b/fix/am/global_soiltype.statsgo.t126.384.190.grb new file mode 120000 index 000000000..724f5c994 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t126.384.190.rg.grb b/fix/am/global_soiltype.statsgo.t126.384.190.rg.grb new file mode 120000 index 000000000..966f1411b --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t1534.3072.1536.grb b/fix/am/global_soiltype.statsgo.t1534.3072.1536.grb new file mode 120000 index 000000000..0c81d6e48 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t1534.3072.1536.rg.grb b/fix/am/global_soiltype.statsgo.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..3bbf2d986 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t170.512.256.grb b/fix/am/global_soiltype.statsgo.t170.512.256.grb new file mode 120000 index 000000000..286122ecf --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t190.384.192.grb b/fix/am/global_soiltype.statsgo.t190.384.192.grb new file mode 120000 index 000000000..724f5c994 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t190.384.192.rg.grb b/fix/am/global_soiltype.statsgo.t190.384.192.rg.grb new file mode 120000 index 000000000..966f1411b --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t190.576.288.grb b/fix/am/global_soiltype.statsgo.t190.576.288.grb new file mode 120000 index 000000000..249f04686 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t190.576.288.rg.grb b/fix/am/global_soiltype.statsgo.t190.576.288.rg.grb new file mode 120000 index 000000000..249f04686 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t190.576.288.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t254.512.256.grb b/fix/am/global_soiltype.statsgo.t254.512.256.grb new file mode 120000 index 000000000..0207cbb69 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t254.512.256.rg.grb b/fix/am/global_soiltype.statsgo.t254.512.256.rg.grb new file mode 120000 index 000000000..f0c51cfda --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t254.768.384.grb b/fix/am/global_soiltype.statsgo.t254.768.384.grb new file mode 120000 index 000000000..b9df47ffa --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t382.1152.576.grb b/fix/am/global_soiltype.statsgo.t382.1152.576.grb new file mode 120000 index 000000000..40392feb2 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t382.768.384.grb b/fix/am/global_soiltype.statsgo.t382.768.384.grb new file mode 120000 index 000000000..025521bea --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t382.768.384.rg.grb b/fix/am/global_soiltype.statsgo.t382.768.384.rg.grb new file mode 120000 index 000000000..985584f77 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t574.1152.576.grb b/fix/am/global_soiltype.statsgo.t574.1152.576.grb new file mode 120000 index 000000000..f3d9bc659 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t574.1152.576.rg.grb b/fix/am/global_soiltype.statsgo.t574.1152.576.rg.grb new file mode 120000 index 000000000..9e4f74658 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t574.1760.880.grb b/fix/am/global_soiltype.statsgo.t574.1760.880.grb new file mode 120000 index 000000000..438eb9e3b --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t62.192.94.grb b/fix/am/global_soiltype.statsgo.t62.192.94.grb new file mode 120000 index 000000000..b198cbaad --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t62.192.94.rg.grb b/fix/am/global_soiltype.statsgo.t62.192.94.rg.grb new file mode 120000 index 000000000..73ebbad25 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t670.1344.672.grb b/fix/am/global_soiltype.statsgo.t670.1344.672.grb new file mode 120000 index 000000000..0a27d673b --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t670.1344.672.rg.grb b/fix/am/global_soiltype.statsgo.t670.1344.672.rg.grb new file mode 120000 index 000000000..f589641a0 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t766.1536.768.grb b/fix/am/global_soiltype.statsgo.t766.1536.768.grb new file mode 120000 index 000000000..bbf185bd8 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t766.1536.768.rg.grb b/fix/am/global_soiltype.statsgo.t766.1536.768.rg.grb new file mode 120000 index 000000000..bbf185bd8 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t878.1760.880.grb b/fix/am/global_soiltype.statsgo.t878.1760.880.grb new file mode 120000 index 000000000..d9539e81b --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t878.2640.1320.grb b/fix/am/global_soiltype.statsgo.t878.2640.1320.grb new file mode 120000 index 000000000..1fe2ba598 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t92.192.94.grb b/fix/am/global_soiltype.statsgo.t92.192.94.grb new file mode 120000 index 000000000..1219a8b23 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t92.192.94.rg.grb b/fix/am/global_soiltype.statsgo.t92.192.94.rg.grb new file mode 120000 index 000000000..58ab63811 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_soiltype.statsgo.t94.192.96.rg.grb b/fix/am/global_soiltype.statsgo.t94.192.96.rg.grb new file mode 120000 index 000000000..58ab63811 --- /dev/null +++ b/fix/am/global_soiltype.statsgo.t94.192.96.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_soiltype.statsgo.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_solarconstant_cmip_an.txt b/fix/am/global_solarconstant_cmip_an.txt new file mode 120000 index 000000000..18d6a84d1 --- /dev/null +++ b/fix/am/global_solarconstant_cmip_an.txt @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_cmip_an.txt \ No newline at end of file diff --git a/fix/am/global_solarconstant_cmip_mn.txt b/fix/am/global_solarconstant_cmip_mn.txt new file mode 120000 index 000000000..940931fb0 --- /dev/null +++ b/fix/am/global_solarconstant_cmip_mn.txt @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_cmip_mn.txt \ No newline at end of file diff --git a/fix/am/global_solarconstant_noaa_a0.txt b/fix/am/global_solarconstant_noaa_a0.txt new file mode 120000 index 000000000..6ce471c2b --- /dev/null +++ b/fix/am/global_solarconstant_noaa_a0.txt @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_noaa_a0.txt \ No newline at end of file diff --git a/fix/am/global_solarconstant_noaa_an.txt b/fix/am/global_solarconstant_noaa_an.txt new file mode 120000 index 000000000..df5937959 --- /dev/null +++ b/fix/am/global_solarconstant_noaa_an.txt @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_noaa_an.txt \ No newline at end of file diff --git a/fix/am/global_solarconstant_noaa_an.txt_v2011 b/fix/am/global_solarconstant_noaa_an.txt_v2011 new file mode 120000 index 000000000..f159f2e4b --- /dev/null +++ b/fix/am/global_solarconstant_noaa_an.txt_v2011 @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_noaa_an.txt_v2011 \ No newline at end of file diff --git a/fix/am/global_solarconstant_noaa_an.txt_v2019 b/fix/am/global_solarconstant_noaa_an.txt_v2019 new file mode 120000 index 000000000..ab2ae94c4 --- /dev/null +++ b/fix/am/global_solarconstant_noaa_an.txt_v2019 @@ -0,0 +1 @@ +../.agent/am/global_solarconstant_noaa_an.txt_v2019 \ No newline at end of file diff --git a/fix/am/global_solarconstantdata.txt b/fix/am/global_solarconstantdata.txt new file mode 120000 index 000000000..49c6fd77c --- /dev/null +++ b/fix/am/global_solarconstantdata.txt @@ -0,0 +1 @@ +../.agent/am/global_solarconstantdata.txt \ No newline at end of file diff --git a/fix/am/global_spectral_coefs.f77 b/fix/am/global_spectral_coefs.f77 new file mode 120000 index 000000000..0126208f7 --- /dev/null +++ b/fix/am/global_spectral_coefs.f77 @@ -0,0 +1 @@ +../.agent/am/global_spectral_coefs.f77 \ No newline at end of file diff --git a/fix/am/global_sstclim.2x2.grb b/fix/am/global_sstclim.2x2.grb new file mode 120000 index 000000000..bff104480 --- /dev/null +++ b/fix/am/global_sstclim.2x2.grb @@ -0,0 +1 @@ +../.agent/am/global_sstclim.2x2.grb \ No newline at end of file diff --git a/fix/am/global_tbthe.f77 b/fix/am/global_tbthe.f77 new file mode 120000 index 000000000..8ae646b9f --- /dev/null +++ b/fix/am/global_tbthe.f77 @@ -0,0 +1 @@ +../.agent/am/global_tbthe.f77 \ No newline at end of file diff --git a/fix/am/global_tg3clim.2.6x1.5.grb b/fix/am/global_tg3clim.2.6x1.5.grb new file mode 120000 index 000000000..3bb458930 --- /dev/null +++ b/fix/am/global_tg3clim.2.6x1.5.grb @@ -0,0 +1 @@ +../.agent/am/global_tg3clim.2.6x1.5.grb \ No newline at end of file diff --git a/fix/am/global_transmittance_coefs.f77 b/fix/am/global_transmittance_coefs.f77 new file mode 120000 index 000000000..3055c88cf --- /dev/null +++ b/fix/am/global_transmittance_coefs.f77 @@ -0,0 +1 @@ +../.agent/am/global_transmittance_coefs.f77 \ No newline at end of file diff --git a/fix/am/global_vars.l28.f77 b/fix/am/global_vars.l28.f77 new file mode 120000 index 000000000..dbd14c128 --- /dev/null +++ b/fix/am/global_vars.l28.f77 @@ -0,0 +1 @@ +../.agent/am/global_vars.l28.f77 \ No newline at end of file diff --git a/fix/am/global_vars.l42.f77 b/fix/am/global_vars.l42.f77 new file mode 120000 index 000000000..41882290c --- /dev/null +++ b/fix/am/global_vars.l42.f77 @@ -0,0 +1 @@ +../.agent/am/global_vars.l42.f77 \ No newline at end of file diff --git a/fix/am/global_vars.l64.f77 b/fix/am/global_vars.l64.f77 new file mode 120000 index 000000000..35ac20bf5 --- /dev/null +++ b/fix/am/global_vars.l64.f77 @@ -0,0 +1 @@ +../.agent/am/global_vars.l64.f77 \ No newline at end of file diff --git a/fix/am/global_vegfrac.0.144.decpercent.grb b/fix/am/global_vegfrac.0.144.decpercent.grb new file mode 120000 index 000000000..1cd0331dd --- /dev/null +++ b/fix/am/global_vegfrac.0.144.decpercent.grb @@ -0,0 +1 @@ +../.agent/am/global_vegfrac.0.144.decpercent.grb \ No newline at end of file diff --git a/fix/am/global_vegfrac.1x1.grb b/fix/am/global_vegfrac.1x1.grb new file mode 120000 index 000000000..2dabdac9d --- /dev/null +++ b/fix/am/global_vegfrac.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_vegfrac.1x1.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.1x1.grb b/fix/am/global_vegtype.1x1.grb new file mode 120000 index 000000000..1b307ac2e --- /dev/null +++ b/fix/am/global_vegtype.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.1x1.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t1148.2304.1152.grb b/fix/am/global_vegtype.igbp.t1148.2304.1152.grb new file mode 120000 index 000000000..052403cad --- /dev/null +++ b/fix/am/global_vegtype.igbp.t1148.2304.1152.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t1148.2304.1152.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t126.384.190.grb b/fix/am/global_vegtype.igbp.t126.384.190.grb new file mode 120000 index 000000000..4a9e1c146 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t126.384.190.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t126.384.190.rg.grb b/fix/am/global_vegtype.igbp.t126.384.190.rg.grb new file mode 120000 index 000000000..c75ec03ec --- /dev/null +++ b/fix/am/global_vegtype.igbp.t126.384.190.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t1534.3072.1536.grb b/fix/am/global_vegtype.igbp.t1534.3072.1536.grb new file mode 120000 index 000000000..228f226cc --- /dev/null +++ b/fix/am/global_vegtype.igbp.t1534.3072.1536.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t1534.3072.1536.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t1534.3072.1536.rg.grb b/fix/am/global_vegtype.igbp.t1534.3072.1536.rg.grb new file mode 120000 index 000000000..1deb8d8a4 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t1534.3072.1536.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t1534.3072.1536.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t170.512.256.grb b/fix/am/global_vegtype.igbp.t170.512.256.grb new file mode 120000 index 000000000..07fe9358d --- /dev/null +++ b/fix/am/global_vegtype.igbp.t170.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t170.512.256.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t190.384.192.grb b/fix/am/global_vegtype.igbp.t190.384.192.grb new file mode 120000 index 000000000..4a9e1c146 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t190.384.192.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t126.384.190.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t190.384.192.rg.grb b/fix/am/global_vegtype.igbp.t190.384.192.rg.grb new file mode 120000 index 000000000..c75ec03ec --- /dev/null +++ b/fix/am/global_vegtype.igbp.t190.384.192.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t126.384.190.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t190.576.288.grb b/fix/am/global_vegtype.igbp.t190.576.288.grb new file mode 120000 index 000000000..a90442550 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t190.576.288.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t190.576.288.rg.grb b/fix/am/global_vegtype.igbp.t190.576.288.rg.grb new file mode 120000 index 000000000..a90442550 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t190.576.288.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t190.576.288.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t254.512.256.grb b/fix/am/global_vegtype.igbp.t254.512.256.grb new file mode 120000 index 000000000..dfd7d9af0 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t254.512.256.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t254.512.256.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t254.512.256.rg.grb b/fix/am/global_vegtype.igbp.t254.512.256.rg.grb new file mode 120000 index 000000000..49a05c04a --- /dev/null +++ b/fix/am/global_vegtype.igbp.t254.512.256.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t254.512.256.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t254.768.384.grb b/fix/am/global_vegtype.igbp.t254.768.384.grb new file mode 120000 index 000000000..e899e059b --- /dev/null +++ b/fix/am/global_vegtype.igbp.t254.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t254.768.384.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t382.1152.576.grb b/fix/am/global_vegtype.igbp.t382.1152.576.grb new file mode 120000 index 000000000..aab838de9 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t382.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t382.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t382.768.384.grb b/fix/am/global_vegtype.igbp.t382.768.384.grb new file mode 120000 index 000000000..8362d5e55 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t382.768.384.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t382.768.384.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t382.768.384.rg.grb b/fix/am/global_vegtype.igbp.t382.768.384.rg.grb new file mode 120000 index 000000000..5e7476759 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t382.768.384.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t382.768.384.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t574.1152.576.grb b/fix/am/global_vegtype.igbp.t574.1152.576.grb new file mode 120000 index 000000000..e2e6d37ea --- /dev/null +++ b/fix/am/global_vegtype.igbp.t574.1152.576.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t574.1152.576.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t574.1152.576.rg.grb b/fix/am/global_vegtype.igbp.t574.1152.576.rg.grb new file mode 120000 index 000000000..ba9d09bff --- /dev/null +++ b/fix/am/global_vegtype.igbp.t574.1152.576.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t574.1152.576.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t574.1760.880.grb b/fix/am/global_vegtype.igbp.t574.1760.880.grb new file mode 120000 index 000000000..eb8b604e1 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t574.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t574.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t62.192.94.grb b/fix/am/global_vegtype.igbp.t62.192.94.grb new file mode 120000 index 000000000..08cc93e1c --- /dev/null +++ b/fix/am/global_vegtype.igbp.t62.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t62.192.94.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t62.192.94.rg.grb b/fix/am/global_vegtype.igbp.t62.192.94.rg.grb new file mode 120000 index 000000000..3a5605f57 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t62.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t62.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t670.1344.672.grb b/fix/am/global_vegtype.igbp.t670.1344.672.grb new file mode 120000 index 000000000..66ce887a3 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t670.1344.672.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t670.1344.672.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t670.1344.672.rg.grb b/fix/am/global_vegtype.igbp.t670.1344.672.rg.grb new file mode 120000 index 000000000..e439b0559 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t670.1344.672.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t670.1344.672.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t766.1536.768.grb b/fix/am/global_vegtype.igbp.t766.1536.768.grb new file mode 120000 index 000000000..6d44b1e57 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t766.1536.768.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t766.1536.768.rg.grb b/fix/am/global_vegtype.igbp.t766.1536.768.rg.grb new file mode 120000 index 000000000..6d44b1e57 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t766.1536.768.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t766.1536.768.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t878.1760.880.grb b/fix/am/global_vegtype.igbp.t878.1760.880.grb new file mode 120000 index 000000000..76284291c --- /dev/null +++ b/fix/am/global_vegtype.igbp.t878.1760.880.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t878.1760.880.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t878.2640.1320.grb b/fix/am/global_vegtype.igbp.t878.2640.1320.grb new file mode 120000 index 000000000..2a17eb4c2 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t878.2640.1320.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t878.2640.1320.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t92.192.94.grb b/fix/am/global_vegtype.igbp.t92.192.94.grb new file mode 120000 index 000000000..2f3d647d3 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t92.192.94.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t92.192.94.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t92.192.94.rg.grb b/fix/am/global_vegtype.igbp.t92.192.94.rg.grb new file mode 120000 index 000000000..2aba8d498 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t92.192.94.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_vegtype.igbp.t94.192.96.rg.grb b/fix/am/global_vegtype.igbp.t94.192.96.rg.grb new file mode 120000 index 000000000..2aba8d498 --- /dev/null +++ b/fix/am/global_vegtype.igbp.t94.192.96.rg.grb @@ -0,0 +1 @@ +../.agent/am/global_vegtype.igbp.t92.192.94.rg.grb \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1850-1859.txt b/fix/am/global_volcanic_aerosols_1850-1859.txt new file mode 120000 index 000000000..8ca37c9d3 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1850-1859.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1850-1859.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1860-1869.txt b/fix/am/global_volcanic_aerosols_1860-1869.txt new file mode 120000 index 000000000..93c0bc589 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1860-1869.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1860-1869.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1870-1879.txt b/fix/am/global_volcanic_aerosols_1870-1879.txt new file mode 120000 index 000000000..1dca097a7 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1870-1879.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1870-1879.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1880-1889.txt b/fix/am/global_volcanic_aerosols_1880-1889.txt new file mode 120000 index 000000000..b56750b42 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1880-1889.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1880-1889.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1890-1899.txt b/fix/am/global_volcanic_aerosols_1890-1899.txt new file mode 120000 index 000000000..ca0bec774 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1890-1899.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1890-1899.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1900-1909.txt b/fix/am/global_volcanic_aerosols_1900-1909.txt new file mode 120000 index 000000000..c3f993076 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1900-1909.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1900-1909.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1910-1919.txt b/fix/am/global_volcanic_aerosols_1910-1919.txt new file mode 120000 index 000000000..fbd38083c --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1910-1919.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1910-1919.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1920-1929.txt b/fix/am/global_volcanic_aerosols_1920-1929.txt new file mode 120000 index 000000000..9a0bdfe9d --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1920-1929.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1920-1929.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1930-1939.txt b/fix/am/global_volcanic_aerosols_1930-1939.txt new file mode 120000 index 000000000..f728246ac --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1930-1939.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1930-1939.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1940-1949.txt b/fix/am/global_volcanic_aerosols_1940-1949.txt new file mode 120000 index 000000000..69e35436a --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1940-1949.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1940-1949.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1950-1959.txt b/fix/am/global_volcanic_aerosols_1950-1959.txt new file mode 120000 index 000000000..88910b624 --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1950-1959.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1950-1959.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1960-1969.txt b/fix/am/global_volcanic_aerosols_1960-1969.txt new file mode 120000 index 000000000..daaa796ec --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1960-1969.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1960-1969.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1970-1979.txt b/fix/am/global_volcanic_aerosols_1970-1979.txt new file mode 120000 index 000000000..822235b6d --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1970-1979.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1970-1979.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1980-1989.txt b/fix/am/global_volcanic_aerosols_1980-1989.txt new file mode 120000 index 000000000..91c9ddbdb --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1980-1989.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1980-1989.txt \ No newline at end of file diff --git a/fix/am/global_volcanic_aerosols_1990-1999.txt b/fix/am/global_volcanic_aerosols_1990-1999.txt new file mode 120000 index 000000000..7ea95efcb --- /dev/null +++ b/fix/am/global_volcanic_aerosols_1990-1999.txt @@ -0,0 +1 @@ +../.agent/am/global_volcanic_aerosols_1990-1999.txt \ No newline at end of file diff --git a/fix/am/global_zorclim.1x1.grb b/fix/am/global_zorclim.1x1.grb new file mode 120000 index 000000000..0d144550a --- /dev/null +++ b/fix/am/global_zorclim.1x1.grb @@ -0,0 +1 @@ +../.agent/am/global_zorclim.1x1.grb \ No newline at end of file diff --git a/fix/am/hrrrdas_geo_em.d01.nc b/fix/am/hrrrdas_geo_em.d01.nc new file mode 120000 index 000000000..e48c4c71d --- /dev/null +++ b/fix/am/hrrrdas_geo_em.d01.nc @@ -0,0 +1 @@ +../.agent/am/hrrrdas_geo_em.d01.nc \ No newline at end of file diff --git a/fix/am/hrrrdas_geo_em.d02.nc b/fix/am/hrrrdas_geo_em.d02.nc new file mode 120000 index 000000000..d26dee668 --- /dev/null +++ b/fix/am/hrrrdas_geo_em.d02.nc @@ -0,0 +1 @@ +../.agent/am/hrrrdas_geo_em.d02.nc \ No newline at end of file diff --git a/fix/am/latlon_grid3.32769.nc b/fix/am/latlon_grid3.32769.nc new file mode 120000 index 000000000..faf052bbd --- /dev/null +++ b/fix/am/latlon_grid3.32769.nc @@ -0,0 +1 @@ +../.agent/am/latlon_grid3.32769.nc \ No newline at end of file diff --git a/fix/am/optics_BC.dat b/fix/am/optics_BC.dat new file mode 120000 index 000000000..8e2b86235 --- /dev/null +++ b/fix/am/optics_BC.dat @@ -0,0 +1 @@ +../.agent/am/optics_BC.dat \ No newline at end of file diff --git a/fix/am/optics_DU.dat b/fix/am/optics_DU.dat new file mode 120000 index 000000000..c1d025638 --- /dev/null +++ b/fix/am/optics_DU.dat @@ -0,0 +1 @@ +../.agent/am/optics_DU.dat \ No newline at end of file diff --git a/fix/am/optics_OC.dat b/fix/am/optics_OC.dat new file mode 120000 index 000000000..737c73cba --- /dev/null +++ b/fix/am/optics_OC.dat @@ -0,0 +1 @@ +../.agent/am/optics_OC.dat \ No newline at end of file diff --git a/fix/am/optics_SS.dat b/fix/am/optics_SS.dat new file mode 120000 index 000000000..e69151d40 --- /dev/null +++ b/fix/am/optics_SS.dat @@ -0,0 +1 @@ +../.agent/am/optics_SS.dat \ No newline at end of file diff --git a/fix/am/optics_SU.dat b/fix/am/optics_SU.dat new file mode 120000 index 000000000..a6b70402d --- /dev/null +++ b/fix/am/optics_SU.dat @@ -0,0 +1 @@ +../.agent/am/optics_SU.dat \ No newline at end of file diff --git a/fix/am/ozone.clim b/fix/am/ozone.clim new file mode 120000 index 000000000..4d0de226d --- /dev/null +++ b/fix/am/ozone.clim @@ -0,0 +1 @@ +../.agent/am/ozone.clim \ No newline at end of file diff --git a/fix/am/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 b/fix/am/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 new file mode 120000 index 000000000..63ba68194 --- /dev/null +++ b/fix/am/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 @@ -0,0 +1 @@ +../.agent/am/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 \ No newline at end of file diff --git a/fix/am/qr_acr_qg.dat b/fix/am/qr_acr_qg.dat new file mode 120000 index 000000000..b911cf1cd --- /dev/null +++ b/fix/am/qr_acr_qg.dat @@ -0,0 +1 @@ +../.agent/am/qr_acr_qg.dat \ No newline at end of file diff --git a/fix/am/qr_acr_qgV2.dat b/fix/am/qr_acr_qgV2.dat new file mode 120000 index 000000000..7e6dd7a35 --- /dev/null +++ b/fix/am/qr_acr_qgV2.dat @@ -0,0 +1 @@ +../.agent/am/qr_acr_qgV2.dat \ No newline at end of file diff --git a/fix/am/qr_acr_qs.dat b/fix/am/qr_acr_qs.dat new file mode 120000 index 000000000..01bbd952a --- /dev/null +++ b/fix/am/qr_acr_qs.dat @@ -0,0 +1 @@ +../.agent/am/qr_acr_qs.dat \ No newline at end of file diff --git a/fix/am/qr_acr_qsV2.dat b/fix/am/qr_acr_qsV2.dat new file mode 120000 index 000000000..73eed9ae3 --- /dev/null +++ b/fix/am/qr_acr_qsV2.dat @@ -0,0 +1 @@ +../.agent/am/qr_acr_qsV2.dat \ No newline at end of file diff --git a/fix/am/rrtmgp-cloud-optics-coeffs-lw.nc b/fix/am/rrtmgp-cloud-optics-coeffs-lw.nc new file mode 120000 index 000000000..990e0c64f --- /dev/null +++ b/fix/am/rrtmgp-cloud-optics-coeffs-lw.nc @@ -0,0 +1 @@ +../.agent/am/rrtmgp-cloud-optics-coeffs-lw.nc \ No newline at end of file diff --git a/fix/am/rrtmgp-cloud-optics-coeffs-sw.nc b/fix/am/rrtmgp-cloud-optics-coeffs-sw.nc new file mode 120000 index 000000000..7c6c6ff90 --- /dev/null +++ b/fix/am/rrtmgp-cloud-optics-coeffs-sw.nc @@ -0,0 +1 @@ +../.agent/am/rrtmgp-cloud-optics-coeffs-sw.nc \ No newline at end of file diff --git a/fix/am/rrtmgp-data-lw-g256-2018-12-04.nc b/fix/am/rrtmgp-data-lw-g256-2018-12-04.nc new file mode 120000 index 000000000..74be8875b --- /dev/null +++ b/fix/am/rrtmgp-data-lw-g256-2018-12-04.nc @@ -0,0 +1 @@ +../.agent/am/rrtmgp-data-lw-g256-2018-12-04.nc \ No newline at end of file diff --git a/fix/am/rrtmgp-data-sw-g224-2018-12-04.nc b/fix/am/rrtmgp-data-sw-g224-2018-12-04.nc new file mode 120000 index 000000000..1ab874739 --- /dev/null +++ b/fix/am/rrtmgp-data-sw-g224-2018-12-04.nc @@ -0,0 +1 @@ +../.agent/am/rrtmgp-data-sw-g224-2018-12-04.nc \ No newline at end of file diff --git a/fix/am/seaice_newland.grb b/fix/am/seaice_newland.grb new file mode 120000 index 000000000..8167ccd37 --- /dev/null +++ b/fix/am/seaice_newland.grb @@ -0,0 +1 @@ +../.agent/am/seaice_newland.grb \ No newline at end of file diff --git a/fix/am/syndat_fildef.vit b/fix/am/syndat_fildef.vit new file mode 120000 index 000000000..72967c6f8 --- /dev/null +++ b/fix/am/syndat_fildef.vit @@ -0,0 +1 @@ +../.agent/am/syndat_fildef.vit \ No newline at end of file diff --git a/fix/am/syndat_slmask.t126.gaussian b/fix/am/syndat_slmask.t126.gaussian new file mode 120000 index 000000000..c304fce4c --- /dev/null +++ b/fix/am/syndat_slmask.t126.gaussian @@ -0,0 +1 @@ +../.agent/am/syndat_slmask.t126.gaussian \ No newline at end of file diff --git a/fix/am/syndat_stmnames b/fix/am/syndat_stmnames new file mode 120000 index 000000000..9d74301e6 --- /dev/null +++ b/fix/am/syndat_stmnames @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames \ No newline at end of file diff --git a/fix/am/syndat_stmnames_new b/fix/am/syndat_stmnames_new new file mode 120000 index 000000000..1c25bb7f2 --- /dev/null +++ b/fix/am/syndat_stmnames_new @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_new \ No newline at end of file diff --git a/fix/am/syndat_stmnames_old b/fix/am/syndat_stmnames_old new file mode 120000 index 000000000..05478e7b0 --- /dev/null +++ b/fix/am/syndat_stmnames_old @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_old \ No newline at end of file diff --git a/fix/am/syndat_stmnames_old1 b/fix/am/syndat_stmnames_old1 new file mode 120000 index 000000000..3c5ed37ad --- /dev/null +++ b/fix/am/syndat_stmnames_old1 @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_old1 \ No newline at end of file diff --git a/fix/am/syndat_stmnames_old2 b/fix/am/syndat_stmnames_old2 new file mode 120000 index 000000000..fce7d0b71 --- /dev/null +++ b/fix/am/syndat_stmnames_old2 @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_old2 \ No newline at end of file diff --git a/fix/am/syndat_stmnames_previous b/fix/am/syndat_stmnames_previous new file mode 120000 index 000000000..44da648f5 --- /dev/null +++ b/fix/am/syndat_stmnames_previous @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_previous \ No newline at end of file diff --git a/fix/am/syndat_stmnames_q2fy19 b/fix/am/syndat_stmnames_q2fy19 new file mode 120000 index 000000000..fb270a5a5 --- /dev/null +++ b/fix/am/syndat_stmnames_q2fy19 @@ -0,0 +1 @@ +../.agent/am/syndat_stmnames_q2fy19 \ No newline at end of file diff --git a/fix/am/xlink.sh b/fix/am/xlink.sh new file mode 120000 index 000000000..b45616568 --- /dev/null +++ b/fix/am/xlink.sh @@ -0,0 +1 @@ +../.agent/am/xlink.sh \ No newline at end of file diff --git a/fix/bufrsnd/RRFS_CONUS_3km/rrfs_profdat b/fix/bufrsnd/RRFS_CONUS_3km/rrfs_profdat new file mode 120000 index 000000000..720c4d0ca --- /dev/null +++ b/fix/bufrsnd/RRFS_CONUS_3km/rrfs_profdat @@ -0,0 +1 @@ +../../.agent/bufrsnd/RRFS_CONUS_3km/rrfs_profdat \ No newline at end of file diff --git a/fix/bufrsnd/RRFS_NA_3km/rrfs_profdat b/fix/bufrsnd/RRFS_NA_3km/rrfs_profdat new file mode 120000 index 000000000..0460fb46d --- /dev/null +++ b/fix/bufrsnd/RRFS_NA_3km/rrfs_profdat @@ -0,0 +1 @@ +../../.agent/bufrsnd/RRFS_NA_3km/rrfs_profdat \ No newline at end of file diff --git a/fix/bufrsnd/regional_bufr.tbl b/fix/bufrsnd/regional_bufr.tbl new file mode 100755 index 000000000..5750b58e3 --- /dev/null +++ b/fix/bufrsnd/regional_bufr.tbl @@ -0,0 +1,187 @@ +.------------------------------------------------------------------------------. +| ------------ USER DEFINITIONS FOR TABLE-A TABLE-B TABLE D -------------- | +|------------------------------------------------------------------------------| +| MNEMONIC | NUMBER | DESCRIPTION | +|----------|--------|----------------------------------------------------------| +| | | | +| ETACLS1 | A60241 | TABLE A ENTRY - ETAMODEL MESSAGES | +| | | | +| HEADR | 362001 | TABLE D ENTRY - PROFILE COORDINATES | +| PROFILE | 362002 | TABLE D ENTRY - PROFILE DATA | +| | | | +| SURF | 362101 | TABLE D ENTRY - NEAR SURFACE SUBGROUP OF SFC DATA | +| D10M | 362102 | TABLE D ENTRY - SHELTER LEVEL SUBGROUP OF SFC DATA | +| FLUX | 362103 | TABLE D ENTRY - FLUX SUBGROUP OF SFC DATA | +| HYDR | 362104 | TABLE D ENTRY - HYDROLOGY SUBGROUP OF SFC DATA | +| SLYR | 362110 | TABLE D ENTRY - MULTI-LAYER SOIL DATA | +| XTRA | 362105 | TABLE D ENTRY - MISCELLANEOUS SUBGROUP OF SFC DATA | +| | | | +| FTIM | 004194 | TABLE B ENTRY - FORECAST TIME | +| STNM | 001205 | TABLE B ENTRY - STATION NUMBER -- 6 DIGITS | +| RPID | 001198 | REPORT IDENTIFIER | +| CLAT | 005002 | TABLE B ENTRY - GRID-POINT LATITUDE | +| CLON | 006002 | TABLE B ENTRY - GRID-POINT LONGITUDE | +| GELV | 010194 | TABLE B ENTRY - GRID-POINT ELEVATION | +| CLSS | 002196 | TABLE B ENTRY - CLASS OF PROFILE OUTPUT | +| | | | +| PRES | 010004 | TABLE B ENTRY - PRESSURE | +| TMDB | 012001 | TABLE B ENTRY - TEMPERATURE | +| UWND | 011003 | TABLE B ENTRY - U WIND | +| VWND | 011004 | TABLE B ENTRY - V WIND | +| SPFH | 013001 | TABLE B ENTRY - SPECIFIC HUMIDITY | +| OMEG | 011229 | TABLE B ENTRY - OMEGA | +| CWTR | 013239 | TABLE B ENTRY - CLOUD WATER MIXING RATIO | +| DTCP | 012221 | TABLE B ENTRY - CONVECTIVE LATENT HEATING RATE | +| DTGP | 012222 | TABLE B ENTRY - STABLE LATENT HEATING RATE | +| DTSW | 014194 | TABLE B ENTRY - SHORT-WAVE HEATING RATE | +| DTLW | 014195 | TABLE B ENTRY - LONG-WAVE HEATING RATE | +| CFRL | 020198 | TABLE B ENTRY - CLOUD COVER IN A LAYER | +| TKEL | 011193 | TABLE B ENTRY - TURBULENT KIN ENERGY IN A LAYER | +| IMXR | 013244 | TABLE B ENTRY - ICE MIXING RATIO | +| | | | +| PMSL | 010051 | TABLE B ENTRY - PRESSURE AT MEAN SEA LEVEL | +| PRSS | 010195 | TABLE B ENTRY - SURFACE PRESSURE | +| TMSK | 012061 | TABLE B ENTRY - SKIN TEMPERATURE | +| TMIN | 012196 | TABLE B ENTRY - 1-HR MIN TEMPERATURE AT LOWEST MODEL LVL | +| TMAX | 012197 | TABLE B ENTRY - 1-HR MAX TEMPERATURE AT LOWEST MODEL LVL | +| WTNS | 013220 | TABLE B ENTRY - SOIL MOISTURE AVAILABILITY | +| TP01 | 013019 | TABLE B ENTRY - 1-HR ACCUMULATED TOTAL PRECIP | +| C01M | 013208 | TABLE B ENTRY - 1-HR ACCUMULATED CONVECTIVE PRECIP | +| FXLH | 012199 | TABLE B ENTRY - 1-HR AVERAGE FLUX OF LATENT HEAT | +| FXLP | 012200 | TABLE B ENTRY - 1-HR AVG POTENTIAL FLUX OF LATENT HEAT | +| FXSH | 012201 | TABLE B ENTRY - 1-HR AVERAGE FLUX OF SENSIBLE HEAT | +| FXSS | 012202 | TABLE B ENTRY - 1-HR AVERAGE FLUX OF SUB-SURFACE HEAT | +| FXSN | 012203 | TABLE B ENTRY - 1-HR AVG FLUX OF SNOW PHASE CHANGE HEAT | +| SWRD | 014198 | TABLE B ENTRY - 1-HR AVERAGE SHORTWAVE DOWNWARD FLUX | +| SWRU | 014199 | TABLE B ENTRY - 1-HR AVERAGE SHORTWAVE UPWARD FLUX | +| LWRD | 014200 | TABLE B ENTRY - 1-HR AVERAGE LONGWAVE DOWNWARD FLUX | +| LWRU | 014201 | TABLE B ENTRY - 1-HR AVERAGE LONGWAVE UPWARD FLUX | +| LWRT | 014202 | TABLE B ENTRY - 1-HR AVERAGE NET LONGWAVE FLUX AT TOP | +| SWRT | 014203 | TABLE B ENTRY - 1-HR AVERAGE NET SHORTWAVE FLUX AT TOP | +| SNFL | 013216 | TABLE B ENTRY - 1-HR ACCUMULATED SNOW FALL | +| SMOI | 013197 | TABLE B ENTRY - TOTAL SOIL MOISTURE | +| SWEM | 013210 | TABLE B ENTRY - SNOW WATER EQUIVALENT | +| N01M | 013218 | TABLE B ENTRY - 1-HR ACCUMULATED SNOW MELT | +| R01M | 013222 | TABLE B ENTRY - 1-HR ACCUMULATED SURFACE RUNOFF | +| BFGR | 013224 | TABLE B ENTRY - 1-HR ACCUMU BASEFLOW-GROUNDWATER RUNOFF | +| SLTB | 012204 | TABLE B ENTRY - BOTTOM SOIL TEMPERATURE | +| SRLM | 011206 | TABLE B ENTRY - ROUGHNESS LENGTH | +| U10M | 011196 | TABLE B ENTRY - U-COMPONENT AT 10 M | +| V10M | 011197 | TABLE B ENTRY - V_COMPONENT AT 10 M | +| TH10 | 012205 | TABLE B ENTRY - POTENTIAL TEMPERATURE AT 10 M | +| Q10M | 013240 | TABLE B ENTRY - SPECIFIC HUMIDITY AT 10 M | +| T2MS | 012004 | TABLE B ENTRY - 2-METER TEMPERATURE | +| Q2MS | 013198 | TABLE B ENTRY - 2-METER SPECIFIC HUMIDITY | +| SFEX | 011208 | TABLE B ENTRY - SURFACE EXCHANGE COEFFICIENT | +| VEGF | 020231 | TABLE B ENTRY - GREEN VEGETATION COVER | +| CNPW | 013212 | TABLE B ENTRY - CANOPY WATER | +| SMC1 | 013226 | TABLE B ENTRY - LAYER VOLUMETRIC SOIL MOISTURE | +| STC1 | 012198 | TABLE B ENTRY - LAYER SOIL TEMPERATURE | +| LSQL | 008012 | TABLE B ENTRY - STATION LAND/SEA MASK | +| LCLD | 020051 | TABLE B ENTRY - AMOUNT OF LOW CLOUD | +| MCLD | 020052 | TABLE B ENTRY - AMOUNT OF MIDDLE CLOUD | +| HCLD | 020053 | TABLE B ENTRY - AMOUNT OF HIGH CLOUD | +| SNRA | 013231 | TABLE B ENTRY - SNOW RATIO FROM EXPLICITY CLOUD SCHEME | +| WXTS | 013232 | TABLE B ENTRY - SNOW PRECIP TYPE | +| WXTP | 013233 | TABLE B ENTRY - ICE PELLET PRECIP TYPE | +| WXTZ | 013234 | TABLE B ENTRY - FREEZING RAIN PRECIP TYPE | +| WXTR | 013235 | TABLE B ENTRY - RAIN PRECIP TYPE | +| USTM | 011231 | TABLE B ENTRY - U-COMPONENT OF STORM MOTION | +| VSTM | 011232 | TABLE B ENTRY - V_COMPONENT OF STORM MOTION | +| HLCY | 011233 | TABLE B ENTRY - STORM RELATIVE HELICITY | +| CDBP | 020015 | TABLE B ENTRY - PRESSURE AT THE BASE OF CLOUD | +| HOVI | 020001 | TABLE B ENTRY - HORIZONTAL VISIBILITY | +|------------------------------------------------------------------------------| +| MNEMONIC | SEQUENCE | +|----------|-------------------------------------------------------------------| +| | | +| ETACLS1 | HEADR {PROFILE} SURF FLUX HYDR D10M {SLYR} XTRA | +| HEADR | FTIM STNM RPID CLAT CLON GELV CLSS | +| PROFILE | PRES TMDB UWND VWND SPFH OMEG CWTR DTCP DTGP DTSW DTLW CFRL TKEL | +| PROFILE | IMXR | +| SURF | PMSL PRSS TMSK TMIN TMAX WTNS TP01 C01M | +| FLUX | FXLH FXLP FXSH FXSS FXSN SWRD SWRU LWRD LWRU LWRT SWRT | +| HYDR | SNFL SMOI SWEM N01M R01M BFGR SLTB | +| D10M | SRLM U10M V10M TH10 Q10M T2MS Q2MS SFEX VEGF CNPW | +| SLYR | SMC1 STC1 | +| XTRA | LSQL LCLD MCLD HCLD SNRA WXTS WXTP WXTZ WXTR USTM VSTM HLCY | +| XTRA | CDBP HOVI | +| | | +|------------------------------------------------------------------------------| +| MNEMONIC | SCAL | REFERENCE | BIT | UNITS |-------------| +|----------|------|-------------|-----|--------------------------|-------------| +| | | | | |-------------| +| FTIM | 0 | 0 | 24 | SECONDS |-------------| +| STNM | 0 | 0 | 20 | NUMERIC ID |-------------| +| RPID | 0 | 0 | 64 | CCITT IA5 |-------------| +| CLAT | 2 | -9000 | 15 | DEGREE (+:NORTH) |-------------| +| CLON | 2 | -18000 | 16 | DEGREE (+:EAST) |-------------| +| GELV | 0 | -400 | 15 | M |-------------| +| CLSS | 0 | 0 | 2 | 0 or 1 |-------------| +| PRES | -1 | 0 | 14 | PA |-------------| +| TMDB | 1 | 0 | 12 | K |-------------| +| UWND | 1 | -4096 | 13 | M/S |-------------| +| VWND | 1 | -4096 | 13 | M/S |-------------| +| SPFH | 7 | 0 | 20 | KG/KG |-------------| +| OMEG | 1 | -512 | 10 | PA/S |-------------| +| CWTR | 5 | 0 | 16 | KG/KG |-------------| +| DTCP | 6 | -6000 | 14 | K/S |-------------| +| DTGP | 6 | -6000 | 14 | K/S |-------------| +| DTSW | 7 | -12000 | 15 | K/S |-------------| +| DTLW | 7 | -12000 | 15 | K/S |-------------| +| CFRL | 0 | 0 | 7 | % |-------------| +| TKEL | 2 | -1024 | 13 | M**2/S**2 |-------------| +| IMXR | 5 | 0 | 18 | KG/KG |-------------| +| PMSL | -1 | 0 | 14 | PA |-------------| +| PRSS | -1 | 0 | 14 | PA |-------------| +| TMSK | 1 | 0 | 12 | K |-------------| +| TMIN | 1 | 0 | 12 | K |-------------| +| TMAX | 1 | 0 | 12 | K |-------------| +| WTNS | 0 | 0 | 8 | % |-------------| +| TP01 | 2 | -1 | 14 | KG/M**2 |-------------| +| C01M | 2 | -1 | 14 | KG/M**2 |-------------| +| FXLH | 1 | -10000 | 15 | W/M**2 (+:DOWNWARD) |-------------| +| FXLP | 1 | -10000 | 15 | W/M**2 (+:DOWNWARD) |-------------| +| FXSH | 1 | -10000 | 15 | W/M**2 (+:DOWNWARD) |-------------| +| FXSS | 1 | -5000 | 14 | W/M**2 (+:DOWNWARD) |-------------| +| FXSN | 1 | -10000 | 14 | W/M**2 (+:DOWNWARD) |-------------| +| SWRD | 1 | 0 | 14 | W/M**2 (+:DOWNWARD) |-------------| +| SWRU | 1 | -15000 | 14 | W/M**2 (+:DOWNWARD) |-------------| +| LWRD | 1 | 0 | 13 | W/M**2 (+:DOWNWARD) |-------------| +| LWRU | 1 | -8192 | 13 | W/M**2 (+:DOWNWARD) |-------------| +| LWRT | 1 | -8192 | 13 | W/M**2 (+:DOWNWARD) |-------------| +| SWRT | 1 | -15000 | 15 | W/M**2 (+:DOWNWARD) |-------------| +| SNFL | 1 | -1 | 14 | KG/M**2 |-------------| +| SMOI | 2 | 0 | 18 | KG/M**2 |-------------| +| SWEM | 2 | 0 | 18 | KG/M**2 |-------------| +| N01M | 2 | 0 | 14 | KG/M**2 |-------------| +| R01M | 2 | 0 | 15 | KG/M**2 |-------------| +| BFGR | 2 | 0 | 15 | KG/M**2 |-------------| +| SLTB | 1 | 0 | 12 | K |-------------| +| SRLM | 2 | 0 | 10 | M |-------------| +| U10M | 1 | -4096 | 13 | M/S |-------------| +| V10M | 1 | -4096 | 13 | M/S |-------------| +| TH10 | 1 | 0 | 12 | K |-------------| +| Q10M | 5 | 0 | 14 | KG/KG |-------------| +| T2MS | 1 | 0 | 12 | K |-------------| +| Q2MS | 5 | 0 | 14 | KG/KG |-------------| +| SFEX | 3 | 0 | 10 | M/S |-------------| +| VEGF | 0 | 0 | 7 | % |-------------| +| CNPW | 3 | 0 | 11 | KG/M**2 |-------------| +| SMC1 | 3 | 0 | 10 | NONE |-------------| +| STC1 | 1 | 0 | 12 | K |-------------| +| LSQL | 0 | 0 | 2 | 0(LAND) or 1 (SEA) |-------------| +| LCLD | 0 | 0 | 7 | % |-------------| +| MCLD | 0 | 0 | 7 | % |-------------| +| HCLD | 0 | 0 | 7 | % |-------------| +| SNRA | 0 | 0 | 7 | % |-------------| +| WXTS | 0 | 0 | 2 | 1=SNOW |-------------| +| WXTP | 0 | 0 | 2 | 1=ICE PELLETS |-------------| +| WXTZ | 0 | 0 | 2 | 1=FREEZING RAIN |-------------| +| WXTR | 0 | 0 | 2 | 1=RAIN |-------------| +| USTM | 1 | -4096 | 13 | M/S |-------------| +| VSTM | 1 | -4096 | 13 | M/S |-------------| +| HLCY | 1 | -10000 | 15 | M**2/S**2 |-------------| +| CDBP | -1 | 0 | 14 | PA |-------------| +| HOVI | -1 | 0 | 13 | M |-------------| +`------------------------------------------------------------------------------' diff --git a/fix/bufrsnd/regional_sndp.parm.mono b/fix/bufrsnd/regional_sndp.parm.mono new file mode 100755 index 000000000..c13e18eb0 --- /dev/null +++ b/fix/bufrsnd/regional_sndp.parm.mono @@ -0,0 +1,2 @@ + &OPTION + MONOL=.TRUE.,BRKOUT=.FALSE. / diff --git a/fix/crtm/CRTM_v2.3.0 b/fix/crtm/CRTM_v2.3.0 new file mode 120000 index 000000000..c4d6f050b --- /dev/null +++ b/fix/crtm/CRTM_v2.3.0 @@ -0,0 +1 @@ +../.agent/crtm/CRTM_v2.3.0 \ No newline at end of file diff --git a/fix/crtm/CRTM_v2.4.0 b/fix/crtm/CRTM_v2.4.0 new file mode 120000 index 000000000..e5d15ca47 --- /dev/null +++ b/fix/crtm/CRTM_v2.4.0 @@ -0,0 +1 @@ +../.agent/crtm/CRTM_v2.4.0 \ No newline at end of file diff --git a/fix/gsi/GSD_HRRR3km/fv3_akbk b/fix/gsi/GSD_HRRR3km/fv3_akbk new file mode 120000 index 000000000..f22159995 --- /dev/null +++ b/fix/gsi/GSD_HRRR3km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/GSD_HRRR3km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/GSD_HRRR3km/fv3_coupler.res b/fix/gsi/GSD_HRRR3km/fv3_coupler.res new file mode 120000 index 000000000..0144b7ab3 --- /dev/null +++ b/fix/gsi/GSD_HRRR3km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/GSD_HRRR3km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/GSD_HRRR3km/fv3_grid_spec b/fix/gsi/GSD_HRRR3km/fv3_grid_spec new file mode 120000 index 000000000..02c32acd4 --- /dev/null +++ b/fix/gsi/GSD_HRRR3km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/GSD_HRRR3km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/GSD_HRRR3km/geo_em.d01.nc b/fix/gsi/GSD_HRRR3km/geo_em.d01.nc new file mode 120000 index 000000000..41c387720 --- /dev/null +++ b/fix/gsi/GSD_HRRR3km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_HRRR3km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/GSD_HRRR3km/phis.nc b/fix/gsi/GSD_HRRR3km/phis.nc new file mode 120000 index 000000000..2b9a11d88 --- /dev/null +++ b/fix/gsi/GSD_HRRR3km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_HRRR3km/phis.nc \ No newline at end of file diff --git a/fix/gsi/GSD_RAP13km/fv3_akbk b/fix/gsi/GSD_RAP13km/fv3_akbk new file mode 120000 index 000000000..288ae392e --- /dev/null +++ b/fix/gsi/GSD_RAP13km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RAP13km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/GSD_RAP13km/fv3_coupler.res b/fix/gsi/GSD_RAP13km/fv3_coupler.res new file mode 120000 index 000000000..e74e525ff --- /dev/null +++ b/fix/gsi/GSD_RAP13km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RAP13km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/GSD_RAP13km/fv3_grid_spec b/fix/gsi/GSD_RAP13km/fv3_grid_spec new file mode 120000 index 000000000..e21b06754 --- /dev/null +++ b/fix/gsi/GSD_RAP13km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RAP13km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/GSD_RAP13km/geo_em.d01.nc b/fix/gsi/GSD_RAP13km/geo_em.d01.nc new file mode 120000 index 000000000..c6d3f6b90 --- /dev/null +++ b/fix/gsi/GSD_RAP13km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RAP13km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/GSD_RAP13km/phis.nc b/fix/gsi/GSD_RAP13km/phis.nc new file mode 120000 index 000000000..b348952b6 --- /dev/null +++ b/fix/gsi/GSD_RAP13km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RAP13km/phis.nc \ No newline at end of file diff --git a/fix/gsi/GSD_RRFSAK_3km/fv3_akbk b/fix/gsi/GSD_RRFSAK_3km/fv3_akbk new file mode 120000 index 000000000..0d981414d --- /dev/null +++ b/fix/gsi/GSD_RRFSAK_3km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RRFSAK_3km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/GSD_RRFSAK_3km/fv3_coupler.res b/fix/gsi/GSD_RRFSAK_3km/fv3_coupler.res new file mode 120000 index 000000000..6ae0911e3 --- /dev/null +++ b/fix/gsi/GSD_RRFSAK_3km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RRFSAK_3km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/GSD_RRFSAK_3km/fv3_grid_spec b/fix/gsi/GSD_RRFSAK_3km/fv3_grid_spec new file mode 120000 index 000000000..07443ce9c --- /dev/null +++ b/fix/gsi/GSD_RRFSAK_3km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RRFSAK_3km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/GSD_RRFSAK_3km/geo_em.d01.nc b/fix/gsi/GSD_RRFSAK_3km/geo_em.d01.nc new file mode 120000 index 000000000..10cfd9c91 --- /dev/null +++ b/fix/gsi/GSD_RRFSAK_3km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RRFSAK_3km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/GSD_RRFSAK_3km/phis.nc b/fix/gsi/GSD_RRFSAK_3km/phis.nc new file mode 120000 index 000000000..e3b69a674 --- /dev/null +++ b/fix/gsi/GSD_RRFSAK_3km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/GSD_RRFSAK_3km/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_AK_3km/fv3_akbk b/fix/gsi/RRFS_AK_3km/fv3_akbk new file mode 120000 index 000000000..f3896e8f6 --- /dev/null +++ b/fix/gsi/RRFS_AK_3km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_AK_3km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_AK_3km/fv3_coupler.res b/fix/gsi/RRFS_AK_3km/fv3_coupler.res new file mode 120000 index 000000000..866462e93 --- /dev/null +++ b/fix/gsi/RRFS_AK_3km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_AK_3km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_AK_3km/fv3_grid_spec b/fix/gsi/RRFS_AK_3km/fv3_grid_spec new file mode 120000 index 000000000..ffba5f698 --- /dev/null +++ b/fix/gsi/RRFS_AK_3km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_AK_3km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_AK_3km/geo_em.d01.nc b/fix/gsi/RRFS_AK_3km/geo_em.d01.nc new file mode 120000 index 000000000..867186f4c --- /dev/null +++ b/fix/gsi/RRFS_AK_3km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_AK_3km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_AK_3km/phis.nc b/fix/gsi/RRFS_AK_3km/phis.nc new file mode 120000 index 000000000..89ac594cb --- /dev/null +++ b/fix/gsi/RRFS_AK_3km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_AK_3km/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_13km/fv3_akbk b/fix/gsi/RRFS_CONUS_13km/fv3_akbk new file mode 120000 index 000000000..9cc1124ab --- /dev/null +++ b/fix/gsi/RRFS_CONUS_13km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_13km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_13km/fv3_coupler.res b/fix/gsi/RRFS_CONUS_13km/fv3_coupler.res new file mode 120000 index 000000000..47609bf40 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_13km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_13km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_13km/fv3_grid_spec b/fix/gsi/RRFS_CONUS_13km/fv3_grid_spec new file mode 120000 index 000000000..b94a7db17 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_13km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_13km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_13km/geo_em.d01.nc b/fix/gsi/RRFS_CONUS_13km/geo_em.d01.nc new file mode 120000 index 000000000..0ad4d5d27 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_13km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_13km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_13km/phis.nc b/fix/gsi/RRFS_CONUS_13km/phis.nc new file mode 120000 index 000000000..0ef6d1b0b --- /dev/null +++ b/fix/gsi/RRFS_CONUS_13km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_13km/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_25km/fv3_akbk b/fix/gsi/RRFS_CONUS_25km/fv3_akbk new file mode 120000 index 000000000..8debd3926 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_25km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_25km/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_25km/fv3_coupler.res b/fix/gsi/RRFS_CONUS_25km/fv3_coupler.res new file mode 120000 index 000000000..aa46539db --- /dev/null +++ b/fix/gsi/RRFS_CONUS_25km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_25km/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_25km/fv3_grid_spec b/fix/gsi/RRFS_CONUS_25km/fv3_grid_spec new file mode 120000 index 000000000..ddae23b45 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_25km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_25km/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_25km/geo_em.d01.nc b/fix/gsi/RRFS_CONUS_25km/geo_em.d01.nc new file mode 120000 index 000000000..95fe6989c --- /dev/null +++ b/fix/gsi/RRFS_CONUS_25km/geo_em.d01.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_25km/geo_em.d01.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_25km/phis.nc b/fix/gsi/RRFS_CONUS_25km/phis.nc new file mode 120000 index 000000000..654d7a7ca --- /dev/null +++ b/fix/gsi/RRFS_CONUS_25km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_25km/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_akbk b/fix/gsi/RRFS_CONUS_3km/fv3_akbk new file mode 120000 index 000000000..25866334c --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_coupler.res b/fix/gsi/RRFS_CONUS_3km/fv3_coupler.res new file mode 120000 index 000000000..133f2c769 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec new file mode 120000 index 000000000..71a036a78 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0000 b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0000 new file mode 120000 index 000000000..838c7401a --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0000 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/grid_spec.nc.0000 \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0001 b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0001 new file mode 120000 index 000000000..2e8d442d7 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0001 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/grid_spec.nc.0001 \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0002 b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0002 new file mode 120000 index 000000000..ed2a1562d --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0002 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/grid_spec.nc.0002 \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0003 b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0003 new file mode 120000 index 000000000..b2de835f4 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/fv3_grid_spec.0003 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/grid_spec.nc.0003 \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km/phis.nc b/fix/gsi/RRFS_CONUS_3km/phis.nc new file mode 120000 index 000000000..f362971de --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_C3359/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_akbk b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_akbk new file mode 120000 index 000000000..d89ee0e89 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_HRRRIC/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_coupler.res b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_coupler.res new file mode 120000 index 000000000..dd8716a55 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_HRRRIC/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_grid_spec b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_grid_spec new file mode 120000 index 000000000..d1add80ac --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km_HRRRIC/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_HRRRIC/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_CONUS_3km_HRRRIC/phis.nc b/fix/gsi/RRFS_CONUS_3km_HRRRIC/phis.nc new file mode 120000 index 000000000..546a60813 --- /dev/null +++ b/fix/gsi/RRFS_CONUS_3km_HRRRIC/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_CONUS_3km_HRRRIC/phis.nc \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_akbk b/fix/gsi/RRFS_NA_3km/fv3_akbk new file mode 120000 index 000000000..9af2e6357 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_akbk @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/fv3_akbk \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_coupler.res b/fix/gsi/RRFS_NA_3km/fv3_coupler.res new file mode 120000 index 000000000..d3b207696 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_coupler.res @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/fv3_coupler.res \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec b/fix/gsi/RRFS_NA_3km/fv3_grid_spec new file mode 120000 index 000000000..d96e76a7f --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/fv3_grid_spec \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0000 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0000 new file mode 120000 index 000000000..5a8918103 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0000 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0000 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0001 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0001 new file mode 120000 index 000000000..89ebe3e15 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0001 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0001 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0002 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0002 new file mode 120000 index 000000000..0c2eddeb2 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0002 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0002 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0003 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0003 new file mode 120000 index 000000000..8c66a1b1b --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0003 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0003 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0004 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0004 new file mode 120000 index 000000000..55b5b3926 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0004 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0004 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0005 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0005 new file mode 120000 index 000000000..2edb38f9d --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0005 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0005 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0006 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0006 new file mode 120000 index 000000000..2556c42ac --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0006 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0006 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0007 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0007 new file mode 120000 index 000000000..30f9ae4ab --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0007 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0007 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0008 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0008 new file mode 120000 index 000000000..237bb3157 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0008 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0008 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0009 b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0009 new file mode 120000 index 000000000..914b08af4 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/fv3_grid_spec.0009 @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/grid_spec.nc.0009 \ No newline at end of file diff --git a/fix/gsi/RRFS_NA_3km/phis.nc b/fix/gsi/RRFS_NA_3km/phis.nc new file mode 120000 index 000000000..66892cb38 --- /dev/null +++ b/fix/gsi/RRFS_NA_3km/phis.nc @@ -0,0 +1 @@ +../../.agent/gsi/RRFS_NA_3km_C3463/phis.nc \ No newline at end of file diff --git a/fix/gsi/anavinfo.enkf.rrfs_dbz b/fix/gsi/anavinfo.enkf.rrfs_dbz new file mode 100644 index 000000000..d2c7ebeb9 --- /dev/null +++ b/fix/gsi/anavinfo.enkf.rrfs_dbz @@ -0,0 +1,88 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + w 65 2 vertical_velocity w + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp + t2m 1 -1 2-m_T t2m + q2m 1 -1 2-m_Q q2m + ql 65 10 cloud_condensate QCLOUD + qr 65 10 rain QRAIN + qs 65 10 snow QSNOW + qi 65 10 ice QICE + qg 65 10 graupel QGRAUP + dbz 65 10 reflectivity REFL_10CM +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + cw 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + w 65 0 met_guess w + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q + prse 66 0 met_guess prse + ps 1 0 met_guess prse + qr 65 1 met_guess qr + ql 65 1 met_guess qc + qs 65 1 met_guess qs + qi 65 1 met_guess qi + qg 65 1 met_guess qg + dbz 65 1 met_guess dbz +:: +control_vector_enkf:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + u 65 0 1.00 -1.0 state u,v + v 65 0 1.00 -1.0 state u,v + ps 1 0 0.50 -1.0 state prse + t 65 0 0.70 -1.0 state tv + q 65 1 0.70 -1.0 state q + qr 65 1 1.0 -1.0 state qr + qs 65 1 1.0 -1.0 state qs + qg 65 1 1.0 -1.0 state qg + ql 65 1 1.0 -1.0 state cw +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 0.5 -1.0 state u,v + vp 65 0 0.5 -1.0 state u,v + ps 1 0 0.50 -1.0 state prse + t 65 0 0.70 -1.0 state tv + q 65 1 0.40 -1.0 state q + w 65 0 1.0 -1.0 state w + dbz 65 1 1.00 -1.0 state dbz + qr 65 1 1.0 -1.0 state qr + qs 65 1 1.0 -1.0 state qs + qi 65 1 1.0 -1.0 state qi + qg 65 1 1.0 -1.0 state qg + ql 65 1 1.0 -1.0 state qc +:: diff --git a/fix/gsi/anavinfo.rrfs b/fix/gsi/anavinfo.rrfs new file mode 100644 index 000000000..80835c1f1 --- /dev/null +++ b/fix/gsi/anavinfo.rrfs @@ -0,0 +1,70 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp + t2m 1 -1 2-m_T t2m + q2m 1 -1 2-m_Q q2m +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + cw 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q + oz 65 1 met_guess oz + prse 66 0 met_guess prse + ps 1 0 met_guess prse + sst 1 0 met_guess sst +:: + +control_vector_enkf:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + u 65 0 1.00 -1.0 state u,v + v 65 0 1.00 -1.0 state u,v + ps 1 0 0.50 -1.0 state prse + t 65 0 0.70 -1.0 state tv + oz 65 0 0.70 -1.0 state oz + q 65 1 0.70 -1.0 state q +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 0.90 -1.0 state u,v + vp 65 0 0.90 -1.0 state u,v + ps 1 0 1.00 -1.0 state prse + t 65 0 1.40 -1.0 state tv + q 65 1 0.80 -1.0 state q + sst 1 0 1.00 -1.0 state sst + stl 1 0 1.00 -1.0 motley sst + sti 1 0 1.00 -1.0 motley sst +:: diff --git a/fix/gsi/anavinfo.rrfs_conv_dbz b/fix/gsi/anavinfo.rrfs_conv_dbz new file mode 100644 index 000000000..fa73c9e5a --- /dev/null +++ b/fix/gsi/anavinfo.rrfs_conv_dbz @@ -0,0 +1,81 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + w 65 2 vertical velocity w + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp + t2m 1 -1 2-m_T t2m + q2m 1 -1 2-m_Q q2m + ql 65 10 cloud_condensate QCLOUD + qr 65 10 rain QRAIN + qs 65 10 snow QSNOW + qi 65 10 ice QICE + qg 65 10 graupel QGRAUP + dbz 65 10 reflectivity REFL_10CM +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + cw 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + w 65 0 met_guess w + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q + oz 65 1 met_guess oz + prse 66 0 met_guess prse + ps 1 0 met_guess prse + sst 1 0 met_guess sst + qr 65 1 met_guess qr + ql 65 1 met_guess qc + qs 65 1 met_guess qs + qi 65 1 met_guess qi + qg 65 1 met_guess qg + dbz 65 1 met_guess dbz +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 0.90 -1.0 state u,v + vp 65 0 0.90 -1.0 state u,v + ps 1 0 1.00 -1.0 state prse + t 65 0 1.40 -1.0 state tv + q 65 1 0.80 -1.0 state q + sst 1 0 1.00 -1.0 state sst + w 65 11 0.00 -1.0 state w + qr 65 11 0.00 -1.0 state qr + qs 65 11 0.00 -1.0 state qs + qi 65 11 0.00 -1.0 state qi + qg 65 11 0.00 -1.0 state qg + ql 65 11 0.00 -1.0 state qc + dbz 65 11 0.00 -1.0 state dbz + stl 1 0 1.00 -1.0 motley sst + sti 1 0 1.00 -1.0 motley sst +:: diff --git a/fix/gsi/anavinfo.rrfs_dbz b/fix/gsi/anavinfo.rrfs_dbz new file mode 100644 index 000000000..71894964b --- /dev/null +++ b/fix/gsi/anavinfo.rrfs_dbz @@ -0,0 +1,79 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + w 65 2 vertical velocity w + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp + t2m 1 -1 2-m_T t2m + q2m 1 -1 2-m_Q q2m + ql 65 10 cloud_condensate QCLOUD + qr 65 10 rain QRAIN + qs 65 10 snow QSNOW + qi 65 10 ice QICE + qg 65 10 graupel QGRAUP + dbz 65 10 reflectivity REFL_10CM +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + w 65 0 met_guess w + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q +! oz 65 1 met_guess oz + prse 66 0 met_guess prse + ps 1 0 met_guess prse +! sst 1 0 met_guess sst + qr 65 1 met_guess qr + ql 65 1 met_guess qc + qs 65 1 met_guess qs + qi 65 1 met_guess qi + qg 65 1 met_guess qg + dbz 65 1 met_guess dbz +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 0.90 -1.0 state u,v + vp 65 0 0.90 -1.0 state u,v + ps 1 0 1.00 -1.0 state prse + t 65 0 1.40 -1.0 state tv + q 65 1 0.80 -1.0 state q +! sst 1 0 1.00 -1.0 state sst +! stl 1 0 1.00 -1.0 motley sst +! sti 1 0 1.00 -1.0 motley sst + qr 65 1 1.0 -1.0 state qr + qs 65 1 1.0 -1.0 state qs + qi 65 1 1.0 -1.0 state qi + qg 65 1 1.0 -1.0 state qg + ql 65 1 1.0 -1.0 state qc + dbz 65 1 1.00 -1.0 state dbz +:: diff --git a/fix/gsi/anavinfo.rrfs_sd b/fix/gsi/anavinfo.rrfs_sd new file mode 100644 index 000000000..03306d04b --- /dev/null +++ b/fix/gsi/anavinfo.rrfs_sd @@ -0,0 +1,65 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + cw 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q + oz 65 1 met_guess oz + prse 66 0 met_guess prse + ps 1 0 met_guess prse + smoke 65 1 chem_guess smoke + dust 65 1 chem_guess dust +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 0.90 -1.0 state u,v + vp 65 0 0.90 -1.0 state u,v + ps 1 0 1.00 -1.0 state prse + t 65 0 1.40 -1.0 state tv + q 65 1 0.80 -1.0 state q + smoke 65 1 1.00 -1.0 state smoke + dust 65 1 1.00 -1.0 state dust +:: + +chem_guess:: +!var level itracer crtm_use type orig_name + smoke 65 1 12 smoke smoke + dust 65 1 12 dust dust + pm2_5 65 1 10 pm2_5 pm2_5 +:: diff --git a/fix/gsi/anavinfo.rtma b/fix/gsi/anavinfo.rtma new file mode 100644 index 000000000..39ed5f9d8 --- /dev/null +++ b/fix/gsi/anavinfo.rtma @@ -0,0 +1,60 @@ +met_guess:: +!var level crtm_use desc orig_name + ps 1 -1 surface_pressure ps + z 1 -1 geopotential_height phis + u 65 2 zonal_wind u + v 65 2 meridional_wind v + tv 65 2 virtual_temperature tv + q 65 2 specific_humidity sphu + oz 65 2 ozone ozone + delp 65 -1 fv3 del pressure delp + t2m 1 -1 2-m_T t2m + q2m 1 -1 2-m_Q q2m +:: + +state_derivatives:: +!var level src + ps 1 met_guess + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + cw 65 met_guess + prse 66 met_guess +:: + +state_tendencies:: +!var levels source + u 65 met_guess + v 65 met_guess + tv 65 met_guess + q 65 met_guess + oz 65 met_guess + prse 66 met_guess +:: + +state_vector:: +!var level itracer source funcof + u 65 0 met_guess u + v 65 0 met_guess v + tv 65 0 met_guess tv + tsen 65 0 met_guess tv,q + q 65 1 met_guess q + oz 65 1 met_guess oz + prse 66 0 met_guess prse + ps 1 0 met_guess prse + sst 1 0 met_guess sst +:: + +control_vector:: +!var level itracer as/tsfc_sdv an_amp0 source funcof + sf 65 0 1.00 -1.0 state u,v + vp 65 0 1.00 -1.0 state u,v + ps 1 0 0.50 -1.0 state prse + t 65 0 0.70 -1.0 state tv + q 65 1 0.70 -1.0 state q + sst 1 0 1.00 -1.0 state sst + stl 1 0 1.00 -1.0 motley sst + sti 1 0 1.00 -1.0 motley sst +:: diff --git a/fix/gsi/atms_beamwidth.txt b/fix/gsi/atms_beamwidth.txt new file mode 100755 index 000000000..21a002d0c --- /dev/null +++ b/fix/gsi/atms_beamwidth.txt @@ -0,0 +1,36 @@ +# LOC = data/preproc/atms_beamwidth.dat +# WMO Satellite ID +224 +# Version identifier +1 +# Sampling distance (deg) +1.11 +# Number of channels to modify +22 +# Channel, beam width, new width, cutoff, nxaverage, nyaverage, QC dist +# Note: to use FFT technique, set new width and cutoff as required and set +# nxaverage and nyaverage to 0. To use simple averaging set new width to 0.0 +# and use nxaverage and nyaverage (e.g. 3 3 for 3x3 averaging). +# QC Dist gives number of points around missing value to flag as missing. + 1 5.2 3.33 0.4 0 0 11 + 2 5.2 3.33 0.4 0 0 11 + 3 2.2 3.33 0.0 0 0 5 + 4 2.2 3.33 0.0 0 0 5 + 5 2.2 3.33 0.0 0 0 5 + 6 2.2 3.33 0.0 0 0 5 + 7 2.2 3.33 0.0 0 0 5 + 8 2.2 3.33 0.0 0 0 5 + 9 2.2 3.33 0.0 0 0 5 +10 2.2 3.33 0.0 0 0 5 +11 2.2 3.33 0.0 0 0 5 +12 2.2 3.33 0.0 0 0 5 +13 2.2 3.33 0.0 0 0 5 +14 2.2 3.33 0.0 0 0 5 +15 2.2 3.33 0.0 0 0 5 +16 2.2 3.33 0.0 0 0 5 +17 1.1 3.33 0.0 0 0 5 +18 1.1 3.33 0.0 0 0 5 +19 1.1 3.33 0.0 0 0 5 +20 1.1 3.33 0.0 0 0 5 +21 1.1 3.33 0.0 0 0 5 +22 1.1 3.33 0.0 0 0 5 diff --git a/fix/gsi/berror.rtma b/fix/gsi/berror.rtma new file mode 120000 index 000000000..f6ec68161 --- /dev/null +++ b/fix/gsi/berror.rtma @@ -0,0 +1 @@ +../.agent/gsi/berror_rrfsRTMA_hgtdep_20230330 \ No newline at end of file diff --git a/fix/gsi/convinfo.rrfs b/fix/gsi/convinfo.rrfs new file mode 100644 index 000000000..63f64c53e --- /dev/null +++ b/fix/gsi/convinfo.rrfs @@ -0,0 +1,238 @@ +! otype = observation type (a7, t, uv, q, etc.) +! type = prepbufr observation type (if available) +! sub = prepbufr subtype (not yet available) +! iuse = flag if to use/not use / monitor data +! = 1 use data +! = 0 do not use data +! = -1 monitor data +! twindow = time window (+/- hours) +! numgrp = cross validation parameter - number of groups +! ngroup = cross validation parameter - group to remove from data use +! nmiter = cross validation parameter - external iteration to introduce removed data +! gross = gross error parameter - gross error +! ermax = gross error parameter - max error +! ermin = gross error parameter - min error +! var_b = variational quality control parameter - b parameter +! var_pg ithin rmesh npred = variational quality control parameter - pg parameter +! pmot: the optione to keep thinned datai as monitored, 0: not to keep, other values: to keep +! ptime: time interval for thinning, 0, no temporal thinning, other values define time interval (less than 6) +!otype type sub iuse twindow numgrp ngroup nmiter gross ermax ermin var_b var_pg ithin rmesh pmesh npred pmot ptime + tcp 112 0 1 1.5 0 0 0 75.0 3.0 1.0 75.0 0.000 0 0. 0. 0 0. 0. + ps 111 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 120 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 132 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 180 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 183 0 -1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 188 0 1 0.1 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 120 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 126 0 1 0.40 0 0 0 5.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 130 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 131 0 1 1.0 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 132 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 133 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 134 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 135 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 180 0 1 1.5 0 0 0 7.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 183 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 188 0 1 0.1 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + q 111 0 -1 1.5 0 0 0 7.0 75.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 120 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 130 0 -1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 131 0 -1 1.0 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 132 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 133 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 134 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 135 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 180 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 181 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 182 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 183 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 187 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 188 0 1 0.1 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 152 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 153 0 1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 156 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 157 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 158 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 159 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + sst 120 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 180 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 181 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 182 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 183 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 184 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 185 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 186 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 187 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 188 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 189 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 190 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 191 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 192 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 193 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 194 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 195 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 196 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 197 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 198 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 199 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 200 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 201 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 202 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + uv 210 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 220 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 221 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 223 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 224 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 227 0 1 0.40 0 0 0 5.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 228 0 -1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 229 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 230 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 231 0 1 1.0 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 232 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 233 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 234 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 235 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 257 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 259 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 270 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 271 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 272 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 241 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 3 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 4 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 206 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 207 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 209 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 223 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 0 -1 1.5 0 0 0 2.0 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 272 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 272 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 272 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 224 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 249 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 259 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 270 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 271 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 272 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 54 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 55 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 56 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 57 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 256 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 0 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 224 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 225 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 261 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 280 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 281 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 282 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 284 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 285 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 286 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 287 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 288 0 1 0.1 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 289 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 4 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 3 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 6 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 291 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 296 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 260 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 283 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 999 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 201 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 202 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 100 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 101 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + srw 999 0 -1 1.5 0 0 0 7.0 10.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + rw 999 0 1 1.5 0 0 0 5.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + gps 004 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 041 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 722 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 723 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 740 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 741 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 742 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 743 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 744 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 745 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 820 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 042 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 043 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 786 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 421 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 003 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 821 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 440 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + mta_cld 181 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 183 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 187 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + gos_ctp 151 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + rad_ref 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + lghtn 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + larccld 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + dbz 888 0 1 0.5 0 0 0 8.0 80.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. diff --git a/fix/gsi/convinfo.rrfs_sd b/fix/gsi/convinfo.rrfs_sd new file mode 100644 index 000000000..9f30a92b2 --- /dev/null +++ b/fix/gsi/convinfo.rrfs_sd @@ -0,0 +1,234 @@ +! otype = observation type (a7, t, uv, q, etc.) +! type = prepbufr observation type (if available) +! sub = prepbufr subtype (not yet available) +! iuse = flag if to use/not use / monitor data +! = 1 use data +! = 0 do not use data +! = -1 monitor data +! twindow = time window (+/- hours) +! numgrp = cross validation parameter - number of groups +! ngroup = cross validation parameter - group to remove from data use +! nmiter = cross validation parameter - external iteration to introduce removed data +! gross = gross error parameter - gross error +! ermax = gross error parameter - max error +! ermin = gross error parameter - min error +! var_b = variational quality control parameter - b parameter +! var_pg ithin rmesh npred = variational quality control parameter - pg parameter +! pmot: the optione to keep thinned datai as monitored, 0: not to keep, other values: to keep +! ptime: time interval for thinning, 0, no temporal thinning, other values define time interval (less than 6) +!otype type sub iuse twindow numgrp ngroup nmiter gross ermax ermin var_b var_pg ithin rmesh pmesh npred pmot ptime + tcp 112 0 1 1.5 0 0 0 75.0 3.0 1.0 75.0 0.000 0 0. 0. 0 0. 0. + ps 111 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 120 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 132 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 180 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 183 0 -1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 188 0 1 0.1 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 120 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 126 0 1 0.40 0 0 0 5.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 130 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 131 0 1 1.0 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 132 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 133 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 134 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 135 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 180 0 1 1.5 0 0 0 7.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 183 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 188 0 1 0.1 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + q 111 0 -1 1.5 0 0 0 7.0 75.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 120 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 130 0 -1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 131 0 -1 1.0 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 132 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 133 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 134 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 135 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 180 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 181 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 182 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 183 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 187 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 188 0 1 0.1 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 152 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 153 0 1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 156 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 157 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 158 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 159 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + sst 120 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 180 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 181 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 182 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 183 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 184 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 185 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 186 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 187 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 188 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 189 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 190 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 191 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 192 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 193 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 194 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 195 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 196 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 197 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 198 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 199 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 200 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 201 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 202 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + uv 210 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 220 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 221 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 223 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 224 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 227 0 1 0.40 0 0 0 5.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 228 0 -1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 229 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 230 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 231 0 1 1.0 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 232 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 233 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 234 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 235 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 257 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 259 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 270 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 271 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 241 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 3 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 4 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 206 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 207 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 209 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 223 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 0 -1 1.5 0 0 0 2.0 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 270 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 271 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 224 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 249 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 259 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 270 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 271 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 173 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 174 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 54 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 55 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 56 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 57 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 70 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 256 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 0 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 224 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 225 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 261 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 280 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 281 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 282 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 284 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 285 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 286 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 287 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 288 0 1 0.1 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 289 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 4 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 3 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 6 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 291 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 296 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 260 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 283 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 999 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 201 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 202 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 100 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 101 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + srw 999 0 -1 1.5 0 0 0 7.0 10.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + rw 999 0 1 1.5 0 0 0 5.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + gps 004 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 041 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 722 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 723 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 740 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 741 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 742 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 743 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 744 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 745 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 820 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 042 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 043 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 786 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 421 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 003 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 821 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 440 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + pm2_5 102 0 1 3.0 0 0 0 900.0 1.5 0.75 10.0 0.000000 0 0. 0. 0 0. 0. + mta_cld 181 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 183 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 187 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + gos_ctp 151 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + rad_ref 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + lghtn 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + larccld 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + dbz 888 0 1 0.5 0 0 0 8.0 80.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. diff --git a/fix/gsi/convinfo.rtma b/fix/gsi/convinfo.rtma new file mode 100644 index 000000000..129f32a1e --- /dev/null +++ b/fix/gsi/convinfo.rtma @@ -0,0 +1,224 @@ +! otype = observation type (a7, t, uv, q, etc.) +! type = prepbufr observation type (if available) +! sub = prepbufr subtype (not yet available) +! iuse = flag if to use/not use / monitor data +! = 1 use data +! = 0 do not use data +! = -1 monitor data +! twindow = time window (+/- hours) +! numgrp = cross validation parameter - number of groups +! ngroup = cross validation parameter - group to remove from data use +! nmiter = cross validation parameter - external iteration to introduce removed data +! gross = gross error parameter - gross error +! ermax = gross error parameter - max error +! ermin = gross error parameter - min error +! var_b = variational quality control parameter - b parameter +! var_pg ithin rmesh npred = variational quality control parameter - pg parameter +! pmot: the optione to keep thinned datai as monitored, 0: not to keep, other values: to keep +! ptime: time interval for thinning, 0, no temporal thinning, other values define time interval (less than 6) +!otype type sub iuse twindow numgrp ngroup nmiter gross ermax ermin var_b var_pg ithin rmesh pmesh npred pmot ptime + tcp 112 0 1 1.5 0 0 0 75.0 5.0 1.0 75.0 0.000 0 0. 0. 0 0. 0. + ps 111 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 120 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 132 0 -1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 180 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 183 0 -1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 188 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 192 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 193 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 194 0 -1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + ps 195 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 120 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 126 0 1 0.40 0 0 0 5.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 130 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 131 0 1 1.0 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 132 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 133 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 134 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 135 0 1 0.75 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + t 180 0 1 1.5 0 0 0 7.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 181 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 182 0 1 1.5 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 183 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 187 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 188 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 192 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 193 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 194 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + t 195 0 1 0.25 0 0 0 5.0 3.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + q 111 0 -1 1.5 0 0 0 7.0 75.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 120 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 130 0 -1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 131 0 -1 1.0 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 132 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 133 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 134 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 135 0 1 0.75 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 180 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 181 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 182 0 1 1.5 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 183 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 187 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 188 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 192 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 193 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 194 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + q 195 0 1 0.25 0 0 0 7.0 50.0 5.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 152 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 153 0 1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 156 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 157 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 158 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + pw 159 0 -1 1.5 0 0 0 7.0 8.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + sst 120 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 180 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 181 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 182 0 -1 1.5 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 183 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 184 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 185 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 186 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 187 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 188 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 189 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 190 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 191 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 192 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 193 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 194 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 195 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 200 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 201 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + sst 202 0 -1 0.25 0 0 0 7.0 2.0 0.2 10.0 0.000 0 0. 0. 0 0. 0. + uv 210 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 220 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 221 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 223 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 224 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 227 0 1 0.40 0 0 0 5.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 228 0 -1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 229 0 1 1.5 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 230 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 231 0 1 1.0 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 232 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 233 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 234 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 235 0 1 0.75 0 0 0 10.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 257 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 240 259 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 241 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 0 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 242 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 0 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 243 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 3 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 4 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 206 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 207 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 209 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 244 223 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 0 1 1.5 0 0 0 2.0 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 257 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 245 259 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 246 259 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 247 259 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 248 224 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 249 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 171 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 250 172 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 257 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 251 259 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 0 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 171 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 252 172 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 0 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 54 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 55 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 56 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 253 57 1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 0 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 54 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 55 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 56 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 254 57 -1 1.5 0 0 0 2.5 5.0 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 256 0 -1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 257 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 258 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 0 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 783 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 259 784 1 1.5 0 0 0 7.0 6.1 1.4 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 0 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 260 224 -1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 261 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 280 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 281 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 282 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 284 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 285 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 286 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 287 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 288 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 289 0 0 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 4 0 3.0 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 3 0 3.0 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 5 0 3.0 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 290 6 0 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 291 0 -1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 292 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 293 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 294 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + uv 295 0 1 0.25 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 260 0 1 1.5 0 0 0 1.5 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + spd 283 0 1 1.5 0 0 0 5.0 5.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 999 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 201 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 202 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 100 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + dw 101 0 -1 1.5 0 0 0 7.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + srw 999 0 -1 1.5 0 0 0 7.0 10.0 1.0 10.0 0.000 0 0. 0. 0 0. 0. + rw 999 0 1 1.5 0 0 0 5.0 10.0 2.0 10.0 0.000 0 0. 0. 0 0. 0. + gps 004 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 041 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 722 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 723 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 740 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 741 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 742 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 743 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 744 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 745 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 820 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 042 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 043 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 786 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 421 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 003 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 821 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + gps 440 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 0. 0. + mta_cld 181 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 183 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + mta_cld 187 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + gos_ctp 151 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + rad_ref 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + lghtn 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. + larccld 999 0 1 1.5 0 0 0 7.0 5.6 1.3 10.0 0.000 0 0. 0. 0 0. 0. diff --git a/fix/gsi/current_bad_aircraft.txt b/fix/gsi/current_bad_aircraft.txt new file mode 100644 index 000000000..c64aa0255 --- /dev/null +++ b/fix/gsi/current_bad_aircraft.txt @@ -0,0 +1,220 @@ +;First, we go through my AMDAR-RR database table '7day' (an error +;summary table) and look for aircraft with the following criteria: +; bias_T > 2, +; std_T > 2, +; bias_S > 2, +; std_S > 5, +; bias_DIR > 7, +; std_DIR > 30, +; std_W > 5, +; rms_W > 7, +; bias_RH > 10, +; std_RH > 20, +;Then we reject all MD88 aircraft, and TAMDAR research aircraft. +; +;tail errors FSL MDCRS N bs_T Std_T bs_S std_S bs_D std_D std_W rms_W bs_RH std_RH (failures) + +00000400 T W R 0 -------- 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 UND_Piper ( resrch_T_W_R ) +00000450 T W R 9086 -------- 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 UND_Piper ( resrch_T_W_R resrch_T_W_R ) +00000451 T W R 9148 -------- 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 King_Air ( resrch_T_W_R U_Wyo_T_W_R ) +00000499 T W R 0 -------- 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 Unknown ( TAM_FS_T_W_R ) +00000506 T W R 9147 -------- 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 SAAB-340 ( resrch_T_W_R PenAir_T_W_R ) +DRAFAQ T - - 25374 -------- 387 3.3 1.3 -0.1 2.6 -0 6 2.2 3.7 0.0 0.0 Unknown ( bias_T ) +EC-MTI - W - 21139 QQNJ5VJA 209 1.6 1.1 1.4 3.6 27 56 21.3 25.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +EC-NBM - W - 24401 KIMUD2JA 303 1.1 1.3 0.5 2.9 18 45 24.0 27.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +EU0010 - W - 9281 -------- 576 -0.1 0.9 -0.7 3.0 17 15 4.8 8.4 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0016 - W - 9370 -------- 499 -0.0 1.0 0.0 3.4 22 20 5.3 8.7 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU0083 - W - 9699 -------- 312 -0.1 1.0 -0.1 3.3 26 20 4.6 8.9 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0090 - W - 9724 -------- 289 0.1 1.2 -0.7 3.9 19 20 5.7 9.2 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU0151 - W - 11390 -------- 293 -0.1 1.0 -0.4 2.6 12 12 4.0 6.3 0.0 0.0 Unknown ( bias_DIR ) +EU0165 - W - 11496 -------- 443 0.2 0.9 0.0 2.9 14 15 4.2 6.9 0.0 0.0 Unknown ( bias_DIR ) +EU0166 - W - 11803 -------- 466 0.2 0.9 -0.0 3.6 16 15 4.1 7.5 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0168 - W - 11503 -------- 363 0.4 0.9 -0.4 2.9 15 16 5.0 8.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU0169 - W - 11559 -------- 346 0.0 1.0 -0.1 3.2 14 15 4.6 7.4 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0171 - W - 11552 -------- 438 -0.1 0.9 -0.3 2.8 16 15 3.9 7.0 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0172 - W - 11691 -------- 504 0.0 0.9 0.3 2.9 15 16 4.2 7.4 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0174 - W - 11884 -------- 379 -0.0 0.9 -0.3 2.9 8 12 2.9 5.4 0.0 0.0 Unknown ( bias_DIR ) +EU0183 - W - 11973 -------- 534 -0.2 0.9 0.2 3.5 12 22 4.3 7.3 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0186 - W - 11974 -------- 387 -0.1 0.9 -0.7 3.4 16 20 4.1 7.3 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0207 - W - 10078 -------- 404 -0.0 1.0 -1.2 3.5 9 18 5.0 7.6 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU0230 - W - 2706 -------- 205 0.0 0.8 -0.2 1.8 1 37 7.7 9.0 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +EU0262 - W - 10320 -------- 228 0.9 1.0 0.2 2.2 -10 1 1.3 3.2 0.0 0.0 Unknown ( bias_DIR ) +EU0318 - W - 10949 -------- 389 -0.1 0.9 0.1 2.7 13 16 3.7 5.8 0.0 0.0 Unknown ( bias_DIR ) +EU0412 - W - 10948 -------- 351 1.0 1.1 -0.7 3.7 9 16 4.0 7.5 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0666 T - - 21533 -------- 273 7.8 2.3 0.9 2.9 -2 8 2.0 4.7 0.0 0.0 Unknown ( bias_T std_T ) +EU0710 - W - 11315 -------- 456 -0.0 0.9 -0.5 3.7 26 15 4.6 7.9 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU0819 - W - 10343 -------- 323 -0.2 1.0 -0.3 3.0 5 14 4.4 7.1 0.0 0.0 Unknown ( rms_W ) +EU0821 - W - 10360 -------- 273 -0.3 0.9 -0.2 2.9 12 20 7.2 10.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU1654 - W - 24785 -------- 424 -0.2 1.2 -0.7 3.0 8 14 2.9 5.5 0.0 0.0 Unknown ( bias_DIR ) +EU1655 - W - 25730 -------- 501 -0.2 1.1 -0.5 3.0 18 16 4.3 7.3 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU1656 - W - 14547 -------- 285 0.1 1.0 0.1 2.6 14 17 4.0 6.7 0.0 0.0 Unknown ( bias_DIR ) +EU1664 - W - 26109 -------- 512 -0.1 1.1 -0.5 2.8 29 19 5.1 9.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU1735 - W - 14542 -------- 468 -0.2 1.2 -0.5 3.0 19 18 4.5 8.4 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU1754 - W - 14536 -------- 425 -0.3 1.1 -0.5 2.9 15 14 4.0 7.5 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU1755 - W - 14540 -------- 466 -0.3 1.0 -0.2 3.0 17 16 4.2 7.9 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU1757 - W - 14532 -------- 364 -0.2 1.0 -0.4 2.8 16 17 4.2 7.9 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU1790 - W - 2631 -------- 592 -0.2 1.0 -0.7 3.8 7 15 3.5 6.6 0.0 0.0 Unknown ( bias_DIR ) +EU2593 - W - 12424 -------- 298 0.2 0.9 -0.2 3.3 7 13 2.7 5.5 0.0 0.0 Unknown ( bias_DIR ) +EU2594 - W - 12432 -------- 381 -0.0 0.9 0.3 3.5 23 17 4.7 9.0 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU2596 - W - 12443 -------- 407 -0.1 0.9 0.2 3.2 16 18 3.2 6.9 0.0 0.0 Unknown ( bias_DIR ) +EU2597 - W - 12416 -------- 382 -0.0 0.9 -0.4 3.6 20 18 4.3 7.8 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU2598 - W - 12433 -------- 422 -0.0 0.7 0.1 3.4 9 15 2.9 5.6 0.0 0.0 Unknown ( bias_DIR ) +EU2601 - W - 12466 -------- 268 -0.1 1.0 -0.2 2.3 26 26 8.1 11.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU3684 - W - 2098 -------- 475 -0.1 0.9 -0.3 3.5 19 23 4.9 7.8 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4075 - W - 2857 -------- 344 0.0 1.0 -1.0 3.5 15 18 4.9 8.0 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4110 - W - 9897 -------- 520 0.0 0.9 -0.1 2.8 25 20 5.6 9.9 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4215 - W - 9915 -------- 217 0.1 1.0 -0.9 3.4 13 16 4.0 7.8 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4247 - W - 9851 -------- 443 -0.2 1.0 0.0 2.7 13 20 4.5 7.3 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4255 - W - 9026 -------- 554 0.1 1.0 -0.2 2.6 23 16 5.1 9.0 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4451 - W - 9901 -------- 406 0.0 0.9 -0.2 2.9 21 17 5.8 10.2 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4480 - W - 9916 -------- 253 -0.2 0.9 -0.1 3.8 23 18 4.3 10.0 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4490 - W - 9905 -------- 306 -0.2 0.9 -0.5 3.5 15 22 7.1 10.6 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4495 - W - 9854 -------- 327 0.2 1.0 -0.6 2.9 15 17 4.0 7.4 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4500 - W - 9853 -------- 289 0.5 0.9 0.1 3.0 16 20 4.3 7.2 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4505 - W - 9912 -------- 476 -0.3 0.8 -0.2 2.7 27 23 4.1 8.1 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4507 - W - 9911 -------- 342 -0.1 1.0 0.5 2.8 14 16 5.3 8.5 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4510 - W - 9896 -------- 398 0.1 0.9 -0.3 3.0 29 24 6.0 11.0 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4515 - W - 9902 -------- 312 0.0 1.1 0.0 2.8 21 20 5.8 9.7 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4523 - W - 9904 -------- 546 0.1 0.9 0.5 3.0 22 21 5.7 9.9 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4526 - W - 9908 -------- 393 -0.1 0.9 0.2 2.6 16 16 3.8 7.2 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4531 - W - 9900 -------- 552 0.6 0.9 -0.5 3.0 15 18 4.5 7.6 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4536 - W - 9899 -------- 459 0.2 1.0 -0.1 3.1 20 24 6.6 10.6 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4538 - W - 9917 -------- 482 0.0 1.0 0.5 3.2 25 18 6.0 10.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4539 - W - 9903 -------- 429 0.4 0.9 0.1 3.0 26 18 5.2 10.3 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4607 - W - 1976 -------- 298 0.2 1.0 0.4 3.0 22 20 4.6 8.1 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU4674 - W - 9909 -------- 657 0.3 0.9 0.0 2.9 39 13 6.1 12.9 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4786 - W - 9910 -------- 408 -0.1 0.8 0.4 3.0 32 22 8.2 13.4 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4938 - W - 9852 -------- 377 -0.1 0.9 0.2 2.9 35 23 7.4 12.0 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4985 - W - 9906 -------- 488 -0.1 0.9 1.0 3.9 38 19 6.0 11.0 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4993 - W - 11772 -------- 458 -0.1 0.8 0.3 2.8 14 24 8.0 11.1 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU4994 - W - 11864 -------- 284 -0.5 0.9 0.5 3.2 6 10 4.5 7.0 0.0 0.0 Unknown ( rms_W ) +EU4995 - W - 11894 -------- 517 -0.4 0.8 0.3 2.9 9 13 4.0 6.7 0.0 0.0 Unknown ( bias_DIR ) +EU5334 - W - 11534 -------- 244 -0.1 0.8 0.0 3.4 5 22 5.0 7.5 0.0 0.0 Unknown ( rms_W ) +EU5478 - W - 1967 -------- 436 -0.0 0.9 0.2 3.6 21 18 3.8 7.0 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU5777 - W - 1968 -------- 347 0.0 0.8 -0.2 2.5 16 18 3.3 5.7 0.0 0.0 Unknown ( bias_DIR ) +EU6395 - W - 5363 -------- 325 0.0 1.1 -1.8 4.6 12 17 4.7 7.8 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU8000 - W - 10076 -------- 995 0.0 1.0 0.1 5.9 -1 9 6.2 7.8 0.0 0.0 Unknown ( std_S std_W rms_W ) +EU9158 - W - 1972 -------- 277 -0.0 1.1 -0.5 3.1 12 14 3.4 6.4 0.0 0.0 Unknown ( bias_DIR ) +EU9622 - W - 2011 -------- 241 0.3 0.8 -0.3 3.9 15 15 4.6 7.3 0.0 0.0 Unknown ( bias_DIR rms_W ) +EU9680 - W - 2158 -------- 383 0.2 1.0 -0.3 3.5 25 18 5.2 9.7 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +EU9743 - W - 2573 -------- 225 0.4 0.7 -0.5 2.3 18 15 3.3 5.2 0.0 0.0 Unknown ( bias_DIR ) +EU9962 - W - 9191 -------- 211 0.5 0.9 -0.2 3.6 12 17 5.3 7.6 0.0 0.0 Unknown ( bias_DIR std_W rms_W ) +G-TUIL - W - 21087 EIU10YBA 288 0.9 1.4 0.6 3.3 19 49 20.7 24.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +G-TUIM - W - 21738 ZOXEH2BA 298 0.3 1.3 0.8 3.3 20 47 22.3 25.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +G-TUIN - W - 25666 XZMENIRA 281 0.1 1.2 0.5 2.8 14 41 13.8 16.0 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +G-TUIO - W - 25681 GPLU02JA 236 0.5 1.3 0.6 3.1 24 51 21.4 25.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +GR9bbd T - - 12989 -------- 412 2.1 1.2 -0.1 2.9 -1 5 2.2 4.2 0.0 0.0 Unknown ( bias_T ) +JA873J - W - 22134 3H01EWZA 268 1.0 1.1 0.3 3.6 14 45 22.2 24.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +JA877J - W - 23909 AW41CORA 239 0.4 1.0 0.0 2.6 7 32 10.0 11.4 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +JA878J - W - 25790 VOX1DJBA 255 0.9 1.0 1.1 2.3 -2 31 6.4 8.0 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +KLOTQD T - - 24572 -------- 360 2.2 1.3 -0.3 3.5 -1 7 2.5 4.6 0.0 0.0 Unknown ( bias_T ) +N12003 - W - 23590 EDNCOHBA 455 0.5 1.1 -0.1 3.2 4 24 7.6 8.9 0.0 0.0 Unknown ( std_W rms_W ) +N12004 - W - 23860 ZMOBATBA 422 0.1 0.9 0.3 2.7 2 31 16.1 17.6 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N12006 - W - 24180 GN0RPDJA 392 1.2 1.1 0.6 2.8 -5 41 10.5 12.3 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N12010 - W - 25857 GXZAOHRA 386 1.2 0.9 0.1 2.6 6 32 13.0 14.3 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N12116 T - - 5159 SSQRPMJA 323 3.0 1.4 0.7 3.7 -2 8 2.2 5.0 0.0 0.0 Unknown ( bias_T ) +N13954 - W - 12351 WHZBFCRA 267 0.6 1.0 -0.1 2.6 -1 30 6.4 8.0 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N14001 - W - 23372 OA1CBFJA 422 -0.2 1.0 0.4 2.5 3 21 17.6 18.6 0.0 0.0 Unknown ( std_W rms_W ) +N14011 - W - 25904 5YSSATRA 396 0.8 1.0 0.0 2.8 6 29 8.9 10.4 0.0 0.0 Unknown ( std_W rms_W ) +N14120 T - - 5177 W4LQPIRA 241 2.3 1.2 0.4 3.7 -0 7 2.2 4.9 0.0 0.0 Unknown ( bias_T ) +N15969 - W - 13845 U2VTZDBA 301 0.5 0.9 0.2 2.8 3 25 9.5 10.8 0.0 0.0 Unknown ( std_W rms_W ) +N16008 - W - 24256 OQGDSDZA 401 0.3 1.1 0.6 2.8 3 21 9.8 10.9 0.0 0.0 Unknown ( std_W rms_W ) +N16009 - W - 24372 TWRTPMBA 354 0.2 1.0 0.7 2.6 1 17 12.7 13.5 0.0 0.0 Unknown ( std_W rms_W ) +N1603 T - - 1696 HEYASIZA 332 2.3 1.1 0.2 2.8 -1 5 1.9 3.8 0.0 0.0 Unknown ( bias_T ) +N17002 - W - 23457 WSRSVRZA 461 0.6 1.2 0.4 3.3 7 36 17.4 19.1 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N17963 - W - 13118 CKHSYBBA 251 1.3 1.1 0.2 3.0 14 52 19.1 22.4 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N211WN - - R 11131 ZS4UOGBA 3251 -0.2 0.8 0.1 2.0 -0 7 1.6 2.9 19.6 42.6 Unknown ( bias_RH std_RH ) +N24972 - W - 20278 LE5CTRJA 300 1.7 0.9 0.2 2.9 -9 51 14.2 16.8 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N24974 - W - 20748 EHDRETBA 321 0.7 1.2 0.1 3.4 8 47 16.8 19.2 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N24976 - W - 26108 X4TBZDRA 249 0.3 1.0 0.4 2.9 -3 37 7.6 9.4 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N26910 T W - 11853 WSDQOORA 253 2.2 1.2 0.8 2.6 -2 28 6.3 7.9 0.0 0.0 Unknown ( bias_T std_W rms_W ) +N26952 - W - 12322 ESXCSSBA 323 0.4 1.3 0.0 3.0 11 44 11.8 14.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N26960 - W - 12764 4RYAPWRA 416 0.9 1.2 0.2 3.1 8 37 13.3 15.4 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N26966 - W - 13282 HWSRYFJA 284 0.2 1.2 -0.1 3.3 10 41 14.0 16.3 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N26970 - W - 13885 RJRAYBRA 389 0.8 1.0 0.4 3.1 7 31 12.3 13.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N27901 - W - 11326 1NISBMJA 439 0.7 1.2 -0.3 2.6 8 33 12.1 13.5 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N27903 - W - 11331 VAYCOOBA 335 0.8 1.2 0.8 2.8 -4 55 18.9 21.8 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N27908 - W - 11628 0NRTSKZA 344 0.7 1.0 0.3 3.7 4 22 7.5 8.8 0.0 0.0 Unknown ( std_W rms_W ) +N27957 - W - 12593 LZZDFGZA 288 1.0 0.9 -0.1 2.4 -0 22 7.5 8.8 0.0 0.0 Unknown ( std_W rms_W ) +N27958 - W - 12602 SP0DTRBA 234 0.7 1.1 0.1 2.8 -4 60 20.2 23.5 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N27959 - W - 12608 EU5TYFRA 289 0.5 0.9 0.5 3.3 19 44 14.2 16.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N27964 - W - 13170 3N5BFFBA 406 1.2 1.4 0.2 3.2 10 38 11.8 13.8 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N287WN T - R 11115 TCXUOFJA 2952 -1.8 3.3 0.2 2.3 1 6 1.6 3.1 11.0 26.9 Unknown ( std_T bias_RH std_RH ) +N28912 - W - 11984 4B1SV4JA 358 0.9 1.2 0.0 2.8 10 46 9.6 11.7 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N29907 - W - 11481 GYOTA4ZA 330 0.6 1.3 0.2 3.3 16 47 17.4 20.2 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N29961 - W - 12786 YDCSFCJA 262 0.5 1.1 1.2 4.2 3 31 14.0 15.6 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N30913 - W - 12237 XNJCPKZA 396 1.5 0.9 0.0 2.6 5 31 6.8 8.4 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N330NV T - - 23055 12XXRVZA 953 2.2 0.8 0.3 2.3 -0 8 2.0 3.4 0.0 0.0 Unknown ( bias_T ) +N358UP T - - 11433 BY2WUWJA 2019 2.9 1.1 0.7 2.6 -0 7 2.0 3.8 0.0 0.0 Unknown ( bias_T ) +N35953 - W - 12342 YTSSPWBA 388 -0.2 1.1 1.2 3.1 4 60 16.3 19.9 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N38955 - W - 12512 RM1RSWJA 296 0.9 0.9 0.1 2.4 8 36 13.5 14.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N402WN - - R 11149 LVQUOGRA 3213 -0.2 0.8 -0.0 2.4 -0 6 2.0 3.3 11.2 22.0 Unknown ( bias_RH std_RH ) +N406UP - - R 712 CA0WUWBA 1317 0.3 0.8 0.0 2.5 -1 6 1.7 3.4 -49.5 36.6 Unknown ( bias_RH std_RH ) +N407UP - - R 94 BPZGUWRA 1609 0.6 1.0 0.1 2.5 -0 6 1.8 3.5 17.8 59.9 Unknown ( bias_RH std_RH ) +N409UP - - R 285 3OXWUWJA 928 0.7 0.8 0.3 2.5 -2 6 1.8 3.4 32.7 82.3 Unknown ( bias_RH std_RH ) +N413UP T - - 434 T2EWUURA 1563 2.0 1.0 0.1 2.6 -0 7 1.9 3.6 0.0 0.0 Unknown ( bias_T ) +N418UP - W - 366 5JTGUWRA 1712 -0.2 0.8 1.7 10.6 4 28 12.8 14.0 0.0 0.0 Unknown ( std_S std_W rms_W ) +N431UP T - - 713 K40WU1ZA 567 2.3 1.0 -0.0 3.1 0 8 2.5 4.3 0.0 0.0 Unknown ( bias_T ) +N433UP T - - 703 WXKGUURA 549 3.3 1.6 -0.3 3.5 -1 8 2.5 4.6 0.0 0.0 Unknown ( bias_T ) +N438WN - - R 11165 DVPUOFZA 2712 0.0 0.9 0.1 2.1 0 6 1.7 3.1 4.7 22.0 Unknown ( std_RH ) +N443WN T - - 11940 LUHEOGJA 3054 3.2 1.3 0.0 2.4 -0 6 1.9 3.3 0.0 0.0 Unknown ( bias_T ) +N450UP - - R 378 Z3NGU1JA 996 0.9 0.8 -0.1 2.4 -0 6 1.7 3.3 15.5 53.6 Unknown ( bias_RH std_RH ) +N451UP - - R 495 POWGU1ZA 1365 0.1 0.7 0.1 2.1 -0 7 1.5 3.1 24.5 50.0 Unknown ( bias_RH std_RH ) +N45905 - W - 11430 PIKRV4RA 357 0.9 1.0 -0.0 2.7 3 24 5.4 7.0 0.0 0.0 Unknown ( std_W rms_W ) +N45956 - W - 12564 05URYCJA 221 1.0 0.9 0.5 2.4 1 13 8.4 9.3 0.0 0.0 Unknown ( std_W rms_W ) +N459WN - - R 10804 CGCEOHBA 3069 -0.1 0.8 -0.0 2.2 -0 6 1.6 3.0 36.0 57.8 Unknown ( bias_RH std_RH ) +N465UP - - R 936 VQLGUUZA 959 0.2 0.9 0.5 2.8 -1 6 2.0 3.9 65.1 87.1 Unknown ( bias_RH std_RH ) +N474WN T - - 11062 LNVUOGZA 3128 2.6 1.1 0.3 2.2 -0 6 1.7 3.0 0.0 0.0 Unknown ( bias_T ) +N475UP - - R 1370 SESWUUZA 1533 1.1 1.0 0.2 2.5 -0 7 1.9 3.5 22.1 60.5 Unknown ( bias_RH std_RH ) +N584AS T - - 10447 KJ4FGAJA 3601 2.5 1.1 0.4 3.2 -0 8 2.3 4.4 0.0 0.0 Unknown ( bias_T ) +N667DN T - - 199 LCMUIRZA 534 -2.8 0.9 0.1 2.5 0 4 1.8 3.6 0.0 0.0 Unknown ( bias_T ) +N667UA T - - 200 XZ4IR3JA 610 4.9 1.2 0.5 3.9 -0 6 2.2 5.0 0.0 0.0 Unknown ( bias_T ) +N745SW - - R 11006 OHLXOARA 2106 -0.2 0.9 0.2 2.3 -0 6 1.7 3.1 11.9 25.7 Unknown ( bias_RH std_RH ) +N78003 - W - 4897 HK3COHBA 254 0.8 1.0 0.6 3.3 5 26 7.0 8.4 0.0 0.0 Unknown ( std_W rms_W ) +N800AN - W - 12292 RCKUIJZA 254 1.4 1.3 0.2 3.1 1 17 6.4 7.8 0.0 0.0 Unknown ( std_W rms_W ) +N802AN - W - 12501 EPSEILRA 214 1.0 1.1 -0.4 2.4 2 19 16.0 16.9 0.0 0.0 Unknown ( std_W rms_W ) +N804AN - W - 12482 0OEUILJA 215 -0.0 1.1 0.5 2.2 0 17 6.6 7.8 0.0 0.0 Unknown ( std_W rms_W ) +N816AA - W - 13260 XMCYCOZA 279 1.1 1.1 0.5 2.5 2 17 10.1 11.0 0.0 0.0 Unknown ( std_W rms_W ) +N819AN - W - 14252 T5CUIEZA 353 0.6 1.1 -0.2 2.8 7 31 14.1 15.5 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N820DX - W - 13204 VJ3H1DBA 257 -0.3 1.1 0.2 3.3 13 30 17.3 20.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N821AN - W - 13471 GQBUILBA 359 1.0 1.1 0.3 2.4 2 19 5.7 7.0 0.0 0.0 Unknown ( std_W ) +N823AN - W - 13667 BOZEILJA 319 -0.0 1.2 0.4 2.8 11 50 16.7 19.3 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N823DX - W - 13151 BTSX1DZA 284 -0.2 1.0 0.4 2.7 15 40 19.6 22.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N824AN - W - 13693 12KEILJA 233 0.6 1.2 1.5 4.0 12 40 20.7 23.4 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N825AA - W - 13710 NKEICOJA 352 0.3 1.1 0.5 2.6 11 38 15.3 17.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N826AN - W - 14388 PVUUIEBA 435 0.5 1.1 -0.0 2.7 3 26 10.8 11.9 0.0 0.0 Unknown ( std_W rms_W ) +N827AN - W - 14403 LGHEIERA 336 0.6 1.0 0.7 2.3 10 34 12.6 14.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N828AA - W - 14424 RSLICNRA 409 0.5 0.9 -0.1 2.4 4 24 9.9 11.0 0.0 0.0 Unknown ( std_W rms_W ) +N829AN - W - 14486 XJ1UIEZA 354 1.7 1.2 0.3 2.8 16 44 15.5 17.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N830AN - W - 14489 VE5EIJZA 382 1.2 1.1 0.9 4.1 17 51 21.6 25.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N832AA - W - 18533 1AQICMZA 354 0.7 1.2 0.8 4.0 4 36 18.4 20.6 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N833AA - W - 19449 Y5FYCOBA 235 1.0 1.1 0.6 2.8 7 32 13.3 14.9 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N835AN - W - 22236 3TQEILZA 293 0.2 1.0 0.4 2.9 9 56 15.4 18.1 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N836AA - W - 22542 IHOICOZA 205 0.7 1.2 0.5 2.9 1 15 10.0 11.0 0.0 0.0 Unknown ( std_W rms_W ) +N837AN - W - 22746 LQ4UIERA 311 1.1 0.9 0.5 2.8 8 34 14.4 16.3 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N838AA - W - 22812 UGSYCNRA 271 0.1 1.0 0.7 3.0 -5 53 14.5 17.3 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +N839AA - W - 23268 GURICNJA 304 -0.4 1.0 0.3 3.3 2 29 10.4 11.8 0.0 0.0 Unknown ( std_W rms_W ) +N841AN - W - 24014 QPNEILBA 285 1.0 1.2 0.2 4.7 14 46 20.2 23.0 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +N843MH T - - 2605 SQ3JMQRA 210 2.1 1.0 0.3 2.6 -0 6 2.0 3.8 0.0 0.0 Unknown ( bias_T ) +N8637A T - - 12743 5H3YFRJA 2746 0.8 2.3 0.2 2.3 -0 6 1.8 3.3 0.0 0.0 Unknown ( std_T ) +N91007 - W - 24520 1KCDAXJA 375 0.9 1.0 0.3 2.6 2 22 6.6 7.8 0.0 0.0 Unknown ( std_W rms_W ) +N917DE - W - 1081 FVN0IGRA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N920DL - W - 1073 YVCL3QZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N921DL - W - 230 OE513SBA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N924DL - W - 518 S0ML3SZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N933DL - W - 231 JNW13SJA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N938DL - W - 232 BUZL3RZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N939DL - W - 1095 5LKL3RZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N940DL - W - 849 3GK13QZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N945DL - W - 1352 VT5L3RBA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N962DL - W - 241 OJ013SRA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N987DL - W - 789 RAP13RJA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N988DL - W - 250 C5M13RZA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +N989DL - W - 251 ENXL3TBA 0 0.0 0.0 0.0 0.0 0 0 0.0 0.0 0.0 0.0 MD88 ( md88_W ) +OO-LOE - W - 21432 ATD0M4JA 259 0.8 1.4 1.0 3.0 17 43 19.6 22.3 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +RPC3507 - W - 24055 TBYAO5TA 206 0.8 1.0 -0.9 2.7 11 42 8.2 10.0 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +SL0030 - W - 13559 -------- 362 0.3 0.9 1.6 4.0 -7 16 3.6 6.1 0.0 0.0 Unknown ( bias_DIR ) +SL0095 T - - 13617 -------- 257 1.1 2.2 0.8 3.4 2 12 2.5 4.8 0.0 0.0 Unknown ( std_T ) +VH-ZNA - W - 19411 J1EYQLBA 207 1.4 0.8 0.7 3.0 8 44 15.2 17.6 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) +VH-ZNC - W - 20380 4WUI11RA 205 0.4 1.0 0.7 3.0 4 35 11.4 13.3 0.0 0.0 Unknown ( std_DIR std_W rms_W ) +ZK-NZQ - W - 22897 OBNWPSBA 237 0.2 1.0 0.1 2.9 8 35 13.3 15.3 0.0 0.0 Unknown ( bias_DIR std_DIR std_W rms_W ) diff --git a/fix/gsi/errtable.rrfs b/fix/gsi/errtable.rrfs new file mode 100755 index 000000000..f70f07153 --- /dev/null +++ b/fix/gsi/errtable.rrfs @@ -0,0 +1,6800 @@ + 100 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 101 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 102 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 103 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 104 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 105 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 106 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 107 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 108 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 109 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 110 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 111 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 112 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 113 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 114 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 115 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 116 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 117 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 118 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 119 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 120 OBSERVATION TYPE + 0.11000E+04 0.12671E+01 0.56103E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10500E+04 0.13302E+01 0.63026E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10000E+04 0.14017E+01 0.73388E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.95000E+03 0.14543E+01 0.86305E+00 0.10000E+10 0.71307E+00 0.10000E+10 + 0.90000E+03 0.14553E+01 0.99672E+00 0.10000E+10 0.74576E+00 0.10000E+10 + 0.85000E+03 0.13865E+01 0.11210E+01 0.10000E+10 0.77845E+00 0.10000E+10 + 0.80000E+03 0.12696E+01 0.12347E+01 0.10000E+10 0.79791E+00 0.10000E+10 + 0.75000E+03 0.11458E+01 0.13337E+01 0.10000E+10 0.81737E+00 0.10000E+10 + 0.70000E+03 0.10461E+01 0.14214E+01 0.10000E+10 0.83684E+00 0.10000E+10 + 0.65000E+03 0.98493E+00 0.15031E+01 0.10000E+10 0.92441E+00 0.10000E+10 + 0.60000E+03 0.95259E+00 0.15641E+01 0.10000E+10 0.10120E+01 0.10000E+10 + 0.55000E+03 0.93530E+00 0.15940E+01 0.10000E+10 0.10899E+01 0.10000E+10 + 0.50000E+03 0.92541E+00 0.15962E+01 0.10000E+10 0.11775E+01 0.10000E+10 + 0.45000E+03 0.92565E+00 0.16026E+01 0.10000E+10 0.12844E+01 0.10000E+10 + 0.40000E+03 0.94536E+00 0.16419E+01 0.10000E+10 0.14499E+01 0.10000E+10 + 0.35000E+03 0.99513E+00 0.17154E+01 0.10000E+10 0.15858E+01 0.10000E+10 + 0.30000E+03 0.10799E+01 0.17980E+01 0.10000E+10 0.18293E+01 0.10000E+10 + 0.25000E+03 0.11885E+01 0.18754E+01 0.10000E+10 0.24716E+01 0.10000E+10 + 0.20000E+03 0.12894E+01 0.19339E+01 0.10000E+10 0.26954E+01 0.10000E+10 + 0.15000E+03 0.13559E+01 0.19701E+01 0.10000E+10 0.31528E+01 0.10000E+10 + 0.10000E+03 0.13854E+01 0.19887E+01 0.10000E+10 0.38338E+01 0.10000E+10 + 0.75000E+02 0.13857E+01 0.19966E+01 0.10000E+10 0.48946E+01 0.10000E+10 + 0.50000E+02 0.13525E+01 0.19993E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.40000E+02 0.13019E+01 0.20000E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.30000E+02 0.12818E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.13112E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.13698E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.14263E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.14654E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.14868E+01 0.20001E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.14964E+01 0.20004E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.14992E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.14962E+01 0.19949E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 121 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 122 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 123 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 124 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 125 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 126 OBSERVATION TYPE + 0.11000E+04 0.24296E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.24261E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.23798E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.23022E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.22627E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.22817E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.22826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.21826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.20092E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.18385E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.17169E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.16511E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.16306E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.16472E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17905E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.19016E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.19907E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.20094E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.19571E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.18864E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.18600E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.19104E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.20392E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22324E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.24605E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26741E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.28318E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.29263E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.29735E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.29931E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.29985E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.29924E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 127 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 128 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 129 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 130 OBSERVATION TYPE + 0.11000E+04 0.24618E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.24244E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.23481E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.22352E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.20999E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19647E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.18522E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17754E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17323E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17134E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17093E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17131E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17170E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17061E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.16550E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15397E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.13754E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12567E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12116E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.12520E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.13700E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15010E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16004E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16588E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16865E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16969E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16998E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17001E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17003E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16999E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16956E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 131 OBSERVATION TYPE + 0.11000E+04 0.13385E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12190E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10515E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.87460E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.73725E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.66965E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.66362E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.66525E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.65262E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.63131E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.59435E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.54816E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.51139E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.49975E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.51952E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.59104E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.71862E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.85608E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.95397E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10124E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10103E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10055E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10021E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.99990E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99991E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99744E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 132 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.26291E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23549E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.22342E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.12685E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.12818E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.81442E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.66483E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.69405E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.50735E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.36023E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.52198E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.46408E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.88835E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.60699E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.42288E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.41536E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.71442E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.50865E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 133 OBSERVATION TYPE + 0.11000E+04 0.14088E+01 0.19455E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13361E+01 0.19064E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12395E+01 0.18488E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11379E+01 0.17877E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10505E+01 0.17342E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.98154E+00 0.16976E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.92451E+00 0.16777E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.87349E+00 0.16696E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.82829E+00 0.16605E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.79582E+00 0.16522E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.77562E+00 0.16637E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.75911E+00 0.17086E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.74080E+00 0.17791E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.72571E+00 0.18492E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.72719E+00 0.18996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.75204E+00 0.19294E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.80129E+00 0.19447E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.86960E+00 0.19597E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.93292E+00 0.19748E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.96720E+00 0.19866E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.98310E+00 0.19941E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.99132E+00 0.19979E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.99603E+00 0.19994E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.99854E+00 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.99963E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.99997E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99999E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99995E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.99985E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.99958E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99914E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99869E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 134 OBSERVATION TYPE + 0.11000E+04 0.13806E+01 0.10178E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12566E+01 0.90966E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.11252E+01 0.82655E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10055E+01 0.78617E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.90851E+00 0.78063E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.83495E+00 0.79308E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.78541E+00 0.81070E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.75802E+00 0.82841E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.74540E+00 0.84912E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.74532E+00 0.88692E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.76976E+00 0.95913E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.83782E+00 0.10801E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.95649E+00 0.12459E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.11080E+01 0.14281E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.12625E+01 0.15959E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.13975E+01 0.17319E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15033E+01 0.18320E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15792E+01 0.19002E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.16299E+01 0.19437E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.16614E+01 0.19699E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.16799E+01 0.19847E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.16901E+01 0.19926E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16953E+01 0.19966E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16979E+01 0.19985E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16991E+01 0.19993E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16995E+01 0.19996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16997E+01 0.19997E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16996E+01 0.19995E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16993E+01 0.19992E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16989E+01 0.19988E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16984E+01 0.19981E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16968E+01 0.19963E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.19899E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 135 OBSERVATION TYPE + 0.11000E+04 0.14544E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13404E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12300E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11433E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10834E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10460E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10241E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10095E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.99605E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.97832E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.95123E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.91277E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.86866E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.83423E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.82956E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.86953E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.95611E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10780E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12178E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.13527E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.14663E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15524E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16121E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16506E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16737E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16866E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16934E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16980E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16984E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16981E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 136 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 137 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 138 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 139 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 140 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 141 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 142 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 143 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 144 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 145 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 146 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 147 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 148 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 149 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 150 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 151 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 152 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 153 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 154 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 155 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 156 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 157 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 158 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 159 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 160 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 161 OBSERVATION TYPE + 0.11000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.84250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.69500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.54750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 162 OBSERVATION TYPE + 0.11000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.45667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.44333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.43000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.41667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.40333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.39000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.39250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.39500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.39750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 163 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 164 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 165 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 166 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 167 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 168 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 169 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 170 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 171 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 172 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 173 OBSERVATION TYPE + 0.11000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.74333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.72667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.71000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.69333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.67667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.68000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.69000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.70000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.68750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.67500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.66250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 174 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 175 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 176 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 177 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 178 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 179 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 180 OBSERVATION TYPE + 0.11000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 181 OBSERVATION TYPE + 0.11000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 182 OBSERVATION TYPE + 0.11000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 183 OBSERVATION TYPE + 0.11000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 184 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 185 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 186 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 187 OBSERVATION TYPE + 0.11000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 188 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 189 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 190 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 191 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 192 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 193 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 194 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 195 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 196 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 197 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 198 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 199 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 200 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 201 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 202 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 203 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 204 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 205 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 206 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 207 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 208 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 209 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 210 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 211 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 212 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 213 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 214 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 215 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 216 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 217 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 218 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 219 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 220 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 221 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.45378E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.31731E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.31827E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.57746E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.41757E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.44875E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.53540E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.43706E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.39567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.38573E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.43050E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.57301E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.44400E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.53824E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.54431E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.51026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.82180E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.88136E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50652E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.50465E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.64676E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 222 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 223 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.20694E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20468E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.20075E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19652E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19392E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19362E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19390E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19288E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.18947E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.18341E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.17469E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.16504E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15700E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15225E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15150E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15445E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15902E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.16377E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.16938E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.17914E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19945E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23461E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.28106E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32342E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.36912E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.37654E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.37924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.37995E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.38006E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.38008E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.37997E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.37902E+01 0.10000E+10 0.10000E+10 + 224 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.28617E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.27545E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26060E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24519E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23213E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.22446E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22396E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.22997E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24140E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.25663E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.27346E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.28938E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30317E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.31600E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32982E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35780E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.43349E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56961E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.74388E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.89893E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10045E+02 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10623E+02 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10883E+02 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10975E+02 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10972E+02 0.10000E+10 0.10000E+10 + 225 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 226 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 227 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38103E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.39841E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.41510E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.42916E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.44065E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.44955E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45569E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.45933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.69196E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.92558E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.92998E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.93782E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.95024E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.96730E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.98780E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 1.00944E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 1.02930E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 1.04434E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 1.05204E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 1.05076E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 1.04010E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 1.02100E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99550E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.96654E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.93720E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.91024E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.88760E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.87010E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.85762E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.84936E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.84420E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.84072E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.83666E+01 0.10000E+10 0.10000E+10 + 228 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 229 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 230 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 231 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 232 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.33133E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.40029E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.47167E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.51420E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.51372E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.48225E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.43831E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.39783E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.37330E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.36483E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.36557E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.36653E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.36168E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.34788E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32246E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.29305E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.27079E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.25883E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26008E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26158E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26346E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26564E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26754E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26882E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26953E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26985E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26995E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26999E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.27001E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.27005E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26931E+01 0.10000E+10 0.10000E+10 + 233 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 234 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38901E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.37615E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37452E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38681E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.40863E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.43283E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45455E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.47094E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.48036E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.48388E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.48463E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.48723E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.49327E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50201E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.51193E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.52166E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.53020E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.53703E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.54203E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.54540E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.54750E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.54872E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.54938E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.54971E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54992E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54991E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54978E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54965E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54947E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54897E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 235 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.39845E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38612E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37929E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.37968E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38561E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.39456E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.40321E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.40893E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.41115E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.41030E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40690E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40240E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.39821E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.39532E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.39523E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40010E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.41203E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.43179E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.45673E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.48193E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50368E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.52042E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.53219E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.53986E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54452E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54718E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54858E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54950E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54954E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54942E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54895E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 236 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 237 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 238 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 239 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 240 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 241 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 242 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 243 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 244 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 245 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 246 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 247 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 248 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 249 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 250 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 251 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 252 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 253 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 254 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 255 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 256 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 257 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 258 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 259 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 260 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 261 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 262 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 263 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 264 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 265 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 266 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 267 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 268 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 269 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 270 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 271 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 272 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 273 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 274 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 275 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 276 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 277 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 278 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 279 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 280 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 281 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 282 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 283 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 284 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 285 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 286 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 287 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 288 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 289 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 290 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 291 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 292 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 293 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 294 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 295 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 296 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 297 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 298 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 299 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 diff --git a/fix/gsi/errtable.rtma b/fix/gsi/errtable.rtma new file mode 100644 index 000000000..452f202c1 --- /dev/null +++ b/fix/gsi/errtable.rtma @@ -0,0 +1,6800 @@ + 100 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 101 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 102 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 103 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 104 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 105 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 106 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 107 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 108 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 109 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 110 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 111 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 112 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 113 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 114 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 115 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 116 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 117 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 118 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 119 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 120 OBSERVATION TYPE + 0.11000E+04 0.12671E+01 0.56103E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10500E+04 0.13302E+01 0.63026E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10000E+04 0.14017E+01 0.73388E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.95000E+03 0.14543E+01 0.86305E+00 0.10000E+10 0.71307E+00 0.10000E+10 + 0.90000E+03 0.14553E+01 0.99672E+00 0.10000E+10 0.74576E+00 0.10000E+10 + 0.85000E+03 0.13865E+01 0.11210E+01 0.10000E+10 0.77845E+00 0.10000E+10 + 0.80000E+03 0.12696E+01 0.12347E+01 0.10000E+10 0.79791E+00 0.10000E+10 + 0.75000E+03 0.11458E+01 0.13337E+01 0.10000E+10 0.81737E+00 0.10000E+10 + 0.70000E+03 0.10461E+01 0.14214E+01 0.10000E+10 0.83684E+00 0.10000E+10 + 0.65000E+03 0.98493E+00 0.15031E+01 0.10000E+10 0.92441E+00 0.10000E+10 + 0.60000E+03 0.95259E+00 0.15641E+01 0.10000E+10 0.10120E+01 0.10000E+10 + 0.55000E+03 0.93530E+00 0.15940E+01 0.10000E+10 0.10899E+01 0.10000E+10 + 0.50000E+03 0.92541E+00 0.15962E+01 0.10000E+10 0.11775E+01 0.10000E+10 + 0.45000E+03 0.92565E+00 0.16026E+01 0.10000E+10 0.12844E+01 0.10000E+10 + 0.40000E+03 0.94536E+00 0.16419E+01 0.10000E+10 0.14499E+01 0.10000E+10 + 0.35000E+03 0.99513E+00 0.17154E+01 0.10000E+10 0.15858E+01 0.10000E+10 + 0.30000E+03 0.10799E+01 0.17980E+01 0.10000E+10 0.18293E+01 0.10000E+10 + 0.25000E+03 0.11885E+01 0.18754E+01 0.10000E+10 0.24716E+01 0.10000E+10 + 0.20000E+03 0.12894E+01 0.19339E+01 0.10000E+10 0.26954E+01 0.10000E+10 + 0.15000E+03 0.13559E+01 0.19701E+01 0.10000E+10 0.31528E+01 0.10000E+10 + 0.10000E+03 0.13854E+01 0.19887E+01 0.10000E+10 0.38338E+01 0.10000E+10 + 0.75000E+02 0.13857E+01 0.19966E+01 0.10000E+10 0.48946E+01 0.10000E+10 + 0.50000E+02 0.13525E+01 0.19993E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.40000E+02 0.13019E+01 0.20000E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.30000E+02 0.12818E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.13112E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.13698E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.14263E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.14654E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.14868E+01 0.20001E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.14964E+01 0.20004E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.14992E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.14962E+01 0.19949E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 121 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 122 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 123 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 124 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 125 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 126 OBSERVATION TYPE + 0.11000E+04 0.24296E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.24261E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.23798E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.23022E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.22627E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.22817E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.22826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.21826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.20092E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.18385E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.17169E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.16511E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.16306E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.16472E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17905E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.19016E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.19907E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.20094E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.19571E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.18864E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.18600E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.19104E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.20392E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22324E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.24605E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26741E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.28318E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.29263E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.29735E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.29931E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.29985E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.29924E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 127 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 128 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 129 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 130 OBSERVATION TYPE + 0.11000E+04 0.24618E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.24244E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.23481E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.22352E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.20999E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19647E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.18522E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17754E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17323E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17134E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17093E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17131E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17170E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17061E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.16550E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15397E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.13754E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12567E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12116E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.12520E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.13700E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15010E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16004E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16588E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16865E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16969E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16998E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17001E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17003E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16999E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16956E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 131 OBSERVATION TYPE + 0.11000E+04 0.13385E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12190E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10515E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.87460E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.73725E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.66965E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.66362E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.66525E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.65262E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.63131E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.59435E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.54816E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.51139E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.49975E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.51952E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.59104E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.71862E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.85608E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.95397E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10124E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10103E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10055E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10021E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.99990E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99991E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99744E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 132 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.26291E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23549E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.22342E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.12685E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.12818E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.81442E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.66483E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.69405E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.50735E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.36023E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.52198E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.46408E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.88835E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.60699E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.42288E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.41536E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.71442E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.50865E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 133 OBSERVATION TYPE + 0.11000E+04 0.14088E+01 0.19455E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13361E+01 0.19064E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12395E+01 0.18488E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11379E+01 0.17877E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10505E+01 0.17342E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.98154E+00 0.16976E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.92451E+00 0.16777E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.87349E+00 0.16696E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.82829E+00 0.16605E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.79582E+00 0.16522E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.77562E+00 0.16637E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.75911E+00 0.17086E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.74080E+00 0.17791E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.72571E+00 0.18492E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.72719E+00 0.18996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.75204E+00 0.19294E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.80129E+00 0.19447E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.86960E+00 0.19597E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.93292E+00 0.19748E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.96720E+00 0.19866E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.98310E+00 0.19941E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.99132E+00 0.19979E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.99603E+00 0.19994E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.99854E+00 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.99963E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.99997E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99999E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99995E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.99985E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.99958E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99914E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99869E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 134 OBSERVATION TYPE + 0.11000E+04 0.13806E+01 0.10178E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12566E+01 0.90966E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.11252E+01 0.82655E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10055E+01 0.78617E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.90851E+00 0.78063E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.83495E+00 0.79308E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.78541E+00 0.81070E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.75802E+00 0.82841E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.74540E+00 0.84912E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.74532E+00 0.88692E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.76976E+00 0.95913E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.83782E+00 0.10801E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.95649E+00 0.12459E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.11080E+01 0.14281E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.12625E+01 0.15959E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.13975E+01 0.17319E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15033E+01 0.18320E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15792E+01 0.19002E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.16299E+01 0.19437E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.16614E+01 0.19699E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.16799E+01 0.19847E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.16901E+01 0.19926E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16953E+01 0.19966E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16979E+01 0.19985E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16991E+01 0.19993E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16995E+01 0.19996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16997E+01 0.19997E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16996E+01 0.19995E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16993E+01 0.19992E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16989E+01 0.19988E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16984E+01 0.19981E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16968E+01 0.19963E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.19899E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 135 OBSERVATION TYPE + 0.11000E+04 0.14544E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13404E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12300E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11433E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10834E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10460E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10241E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10095E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.99605E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.97832E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.95123E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.91277E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.86866E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.83423E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.82956E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.86953E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.95611E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10780E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12178E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.13527E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.14663E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15524E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16121E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16506E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16737E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16866E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16934E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16980E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16984E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16981E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 136 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 137 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 138 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 139 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 140 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 141 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 142 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 143 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 144 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 145 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 146 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 147 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 148 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 149 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 150 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 151 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 152 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 153 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 154 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 155 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 156 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 157 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 158 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 159 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 160 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 161 OBSERVATION TYPE + 0.11000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.84250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.69500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.54750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 162 OBSERVATION TYPE + 0.11000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.45667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.44333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.43000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.41667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.40333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.39000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.39250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.39500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.39750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 163 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 164 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 165 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 166 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 167 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 168 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 169 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 170 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 171 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 172 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 173 OBSERVATION TYPE + 0.11000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.74333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.72667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.71000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.69333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.67667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.68000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.69000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.70000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.68750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.67500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.66250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 174 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 175 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 176 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 177 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 178 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 179 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 180 OBSERVATION TYPE + 0.11000E+04 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.50000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.45000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.40000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.13283E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 181 OBSERVATION TYPE + 0.11000E+04 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.50000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.45000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.40000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.94100E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 182 OBSERVATION TYPE + 0.11000E+04 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.50000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.45000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.40000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.65875E-01 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 183 OBSERVATION TYPE + 0.11000E+04 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16468E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 184 OBSERVATION TYPE + 0.11000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 185 OBSERVATION TYPE + 0.11000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 186 OBSERVATION TYPE + 0.11000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 187 OBSERVATION TYPE + 0.11000E+04 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.50000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.45000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.40000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.14116E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 188 OBSERVATION TYPE + 0.11000E+04 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.25000E+00 0.43750E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 189 OBSERVATION TYPE + 0.11000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10500E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.10000E+04 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.95000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.90000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.85000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.80000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.75000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.70000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.65000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.60000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.33681E-01 0.10000E+10 + 0.55000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.25000E+00 0.36950E-01 0.10000E+10 0.10000E+10 0.10000E+10 + 190 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 191 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.12500E+00 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 192 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 193 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 194 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 195 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 196 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 197 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 198 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 199 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 200 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 201 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 202 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 203 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 204 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 205 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 206 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 207 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 208 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 209 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 210 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 211 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 212 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 213 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 214 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 215 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 216 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 217 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 218 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 219 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 220 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 221 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.45378E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.31731E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.31827E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.57746E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.41757E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.44875E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.53540E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.43706E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.39567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.38573E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.43050E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.57301E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.44400E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.53824E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.54431E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.51026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.82180E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.88136E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50652E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.50465E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.64676E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 222 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 223 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.20694E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20468E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.20075E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19652E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19392E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19362E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19390E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19288E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.18947E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.18341E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.17469E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.16504E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15700E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15225E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15150E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15445E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15902E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.16377E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.16938E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.17914E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19945E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23461E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.28106E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32342E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.36912E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.37654E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.37924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.37995E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.38006E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.38008E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.37997E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.37902E+01 0.10000E+10 0.10000E+10 + 224 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.28617E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.27545E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26060E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24519E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23213E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.22446E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22396E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.22997E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24140E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.25663E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.27346E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.28938E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30317E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.31600E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32982E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35780E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.43349E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56961E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.74388E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.89893E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10045E+02 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10623E+02 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10883E+02 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10975E+02 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10972E+02 0.10000E+10 0.10000E+10 + 225 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 226 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 227 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38103E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.39841E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.41510E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.42916E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.44065E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.44955E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45569E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.45933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.69196E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.92558E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.92998E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.93782E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.95024E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.96730E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.98780E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 1.00944E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 1.02930E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 1.04434E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 1.05204E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 1.05076E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 1.04010E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 1.02100E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99550E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.96654E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.93720E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.91024E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.88760E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.87010E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.85762E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.84936E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.84420E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.84072E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.83666E+01 0.10000E+10 0.10000E+10 + 228 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 229 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 230 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 231 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 232 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.33133E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.40029E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.47167E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.51420E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.51372E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.48225E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.43831E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.39783E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.37330E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.36483E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.36557E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.36653E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.36168E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.34788E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32246E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.29305E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.27079E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.25883E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26008E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26158E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26346E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26564E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26754E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26882E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26953E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26985E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26995E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26999E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.27001E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.27005E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26931E+01 0.10000E+10 0.10000E+10 + 233 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 234 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38901E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.37615E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37452E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38681E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.40863E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.43283E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45455E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.47094E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.48036E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.48388E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.48463E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.48723E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.49327E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50201E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.51193E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.52166E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.53020E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.53703E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.54203E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.54540E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.54750E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.54872E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.54938E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.54971E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54992E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54991E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54978E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54965E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54947E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54897E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 235 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.39845E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38612E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37929E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.37968E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38561E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.39456E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.40321E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.40893E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.41115E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.41030E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40690E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40240E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.39821E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.39532E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.39523E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40010E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.41203E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.43179E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.45673E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.48193E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50368E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.52042E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.53219E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.53986E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54452E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54718E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54858E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54950E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54954E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54942E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54895E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 236 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 237 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 238 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 239 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 240 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 241 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 242 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 243 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 244 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 245 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 246 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 247 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 248 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 249 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 250 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 251 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 252 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 253 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 254 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 255 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 256 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 257 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 258 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 259 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 260 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 261 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 262 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 263 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 264 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 265 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 266 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 267 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 268 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 269 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 270 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 271 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 272 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 273 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 274 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 275 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 276 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 277 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 278 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 279 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 280 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.16425E+00 0.10000E+10 0.10000E+10 + 281 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 282 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 283 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 284 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 285 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 286 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.67437E-01 0.10000E+10 0.10000E+10 + 287 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.99212E-01 0.10000E+10 0.10000E+10 + 288 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.18750E+00 0.10000E+10 0.10000E+10 + 289 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.12049E+00 0.10000E+10 0.10000E+10 + 290 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 291 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 292 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 293 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 294 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 295 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 296 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 297 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 298 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 299 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 diff --git a/fix/gsi/global_convinfo.txt b/fix/gsi/global_convinfo.txt new file mode 100755 index 000000000..8af72efae --- /dev/null +++ b/fix/gsi/global_convinfo.txt @@ -0,0 +1,134 @@ +! otype = observation type (a7, t, uv, q, etc.) +! type = prepbufr observation type (if available) +! sub = prepbufr subtype (not yet available) +! iuse = flag if to use/not use / monitor data +! = 1 use data +! = 0 do not use data +! = -1 monitor data +! twindow = time window (+/- hours) +! numgrp = cross validation parameter - number of groups +! ngroup = cross validation parameter - group to remove from data use +! nmiter = cross validation parameter - external iteration to introduce removed data +! gross = gross error parameter - gross error +! ermax = gross error parameter - max error +! ermin = gross error parameter - min error +! var_b = variational quality control parameter - b parameter +! var_pg ithin rmesh npred = variational quality control parameter - pg parameter +!otype type sub iuse twindow numgrp ngroup nmiter gross ermax ermin var_b var_pg ithin rmesh pmesh npred + tcp 112 0 1 3.0 0 0 0 75.0 5.0 1.0 75.0 0.000000 0 0. 0. 0 + ps 120 0 1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + ps 132 0 -1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + ps 180 0 1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + ps 181 0 1 3.0 0 0 0 3.6 3.0 1.0 3.6 0.000300 0 0. 0. 0 + ps 182 0 1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + ps 183 0 -1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + ps 187 0 1 3.0 0 0 0 4.0 3.0 1.0 4.0 0.000300 0 0. 0. 0 + t 120 0 1 3.0 0 0 0 8.0 5.6 1.3 8.0 0.000001 0 0. 0. 0 + t 126 0 -1 3.0 0 0 0 8.0 5.6 1.3 8.0 0.001000 0 0. 0. 0 + t 130 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.001000 0 0. 0. 0 + t 131 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.001000 0 0. 0. 0 + t 132 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.001000 0 0. 0. 0 + t 133 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 134 0 -1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 135 0 -1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 180 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 181 0 -1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 182 0 1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 183 0 -1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + t 187 0 -1 3.0 0 0 0 7.0 5.6 1.3 7.0 0.004000 0 0. 0. 0 + q 120 0 1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000500 0 0. 0. 0 + q 130 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 131 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 132 0 1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 133 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 134 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 135 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 180 0 1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000500 0 0. 0. 0 + q 181 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000500 0 0. 0. 0 + q 182 0 1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 183 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + q 187 0 -1 3.0 0 0 0 8.0 100.0 10.0 8.0 0.000600 0 0. 0. 0 + pw 152 0 -1 3.0 0 0 0 10.0 8.0 2.0 10.0 0.000000 0 0. 0. 0 + pw 153 0 -1 3.0 0 0 0 5.0 5.0 2.0 5.0 0.000000 0 0. 0. 0 + pw 156 0 -1 3.0 0 0 0 10.0 8.0 2.0 10.0 0.000000 0 0. 0. 0 + pw 157 0 -1 3.0 0 0 0 10.0 8.0 2.0 10.0 0.000000 0 0. 0. 0 + pw 158 0 -1 3.0 0 0 0 10.0 8.0 2.0 10.0 0.000000 0 0. 0. 0 + pw 159 0 -1 3.0 0 0 0 10.0 8.0 2.0 10.0 0.000000 0 0. 0. 0 + sst 120 0 -1 3.0 0 0 0 10.0 2.0 0.2 10.0 0.000000 0 0. 0. 0 + sst 180 0 -1 3.0 0 0 0 10.0 2.0 0.2 10.0 0.000000 0 0. 0. 0 + sst 181 0 -1 3.0 0 0 0 10.0 2.0 0.2 10.0 0.000000 0 0. 0. 0 + sst 183 0 -1 3.0 0 0 0 10.0 2.0 0.2 10.0 0.000000 0 0. 0. 0 + sst 187 0 -1 3.0 0 0 0 10.0 2.0 0.2 10.0 0.000000 0 0. 0. 0 + uv 210 0 1 3.0 0 0 0 8.0 6.1 1.4 8.0 0.000001 0 0. 0. 0 + uv 220 0 1 3.0 0 0 0 8.0 6.1 1.4 8.0 0.000001 0 0. 0. 0 + uv 221 0 1 3.0 0 0 0 8.0 6.1 1.4 8.0 0.000001 0 0. 0. 0 + uv 223 0 1 3.0 0 0 0 7.5 6.1 1.4 7.5 0.000001 0 0. 0. 0 + uv 224 0 1 3.0 0 0 0 6.5 6.1 1.4 6.5 0.000001 0 0. 0. 0 + uv 228 0 -1 3.0 0 0 0 6.5 6.1 1.4 6.5 0.000001 0 0. 0. 0 + uv 229 0 1 3.0 0 0 0 6.5 6.1 1.4 6.5 0.000001 0 0. 0. 0 + uv 230 0 1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000100 0 0. 0. 0 + uv 231 0 1 3.0 0 0 0 6.5 6.1 1.4 6.5 0.000100 0 0. 0. 0 + uv 232 0 1 3.0 0 0 0 7.0 6.1 1.4 7.0 0.000100 0 0. 0. 0 + uv 233 0 1 3.0 0 0 0 7.5 6.1 1.4 7.5 0.000100 0 0. 0. 0 + uv 234 0 -1 3.0 0 0 0 7.5 6.1 1.4 7.5 0.000100 0 0. 0. 0 + uv 235 0 -1 3.0 0 0 0 7.5 6.1 1.4 7.5 0.000100 0 0. 0. 0 + uv 241 0 -1 3.0 0 0 0 7.5 6.1 1.4 7.5 0.000100 0 0. 0. 0 + uv 242 0 1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.005000 0 0. 0. 0 + uv 243 0 1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.005000 0 0. 0. 0 + uv 243 55 -1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.005000 1 200. 100. 0 + uv 243 56 1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.005000 1 200. 100. 0 + uv 245 0 1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.005000 0 200. 100. 0 + uv 246 0 1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.005000 0 200. 100. 0 + uv 247 0 -1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.005000 0 0. 0. 0 + uv 248 0 -1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.000500 0 0. 0. 0 + uv 249 0 -1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.000500 0 0. 0. 0 + uv 250 0 -1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.000500 0 0. 0. 0 + uv 251 0 -1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.000050 0 0. 0. 0 + uv 252 0 1 3.0 0 0 0 2.5 5.0 1.4 2.5 0.000050 0 0. 0. 0 + uv 253 0 1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 0 0. 0. 0 + uv 253 55 -1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 1 200. 100. 0 + uv 253 56 1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 1 200. 100. 0 + uv 254 0 -1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 0 0. 0. 0 + uv 254 55 -1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 0 0. 0. 0 + uv 254 56 -1 3.0 0 0 0 1.5 5.0 1.4 1.5 0.000500 0 0. 0. 0 + uv 256 0 -1 3.0 0 0 0 2.5 6.1 1.4 2.5 0.000500 0 0. 0. 0 + uv 257 0 1 3.0 0 0 0 2.5 6.1 1.4 2.5 0.000500 0 0. 0. 0 + uv 258 0 1 3.0 0 0 0 2.5 6.1 1.4 2.5 0.000500 0 0. 0. 0 + uv 259 0 1 3.0 0 0 0 2.5 6.1 1.4 2.5 0.000500 0 0. 0. 0 + uv 280 0 1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 281 0 -1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 282 0 1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 284 0 -1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 285 0 -1 3.0 0 0 0 5.0 6.1 1.4 5.0 0.000500 0 0. 0. 0 + uv 286 0 -1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 287 0 -1 3.0 0 0 0 6.0 6.1 1.4 6.0 0.000500 0 0. 0. 0 + uv 289 0 1 3.0 0 0 0 5.0 6.1 1.4 5.0 0.000500 0 0. 0. 0 + uv 290 0 -1 3.0 0 0 0 5.0 6.1 1.4 5.0 0.000500 1 100. 1200. 0 + spd 283 0 -1 3.0 0 0 0 8.0 6.1 1.4 8.0 0.000000 0 0. 0. 0 + dw 999 0 -1 3.0 0 0 0 8.0 10.0 2.0 8.0 0.000000 0 0. 0. 0 + srw 999 0 -1 2.5 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + rw 999 0 -1 2.5 0 0 0 10.0 10.0 2.0 10.0 0.000000 0 0. 0. 0 + gps_ref 401 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 004 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 041 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 722 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 723 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 740 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 741 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 742 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 743 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 744 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 745 0 1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_ref 820 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 401 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 004 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 041 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 722 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 723 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 740 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 741 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 742 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 743 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 744 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 745 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 + gps_bnd 820 0 -1 3.0 0 0 0 10.0 10.0 1.0 10.0 0.000000 0 0. 0. 0 diff --git a/fix/gsi/global_ozinfo.txt b/fix/gsi/global_ozinfo.txt new file mode 100755 index 000000000..dcc25e1e8 --- /dev/null +++ b/fix/gsi/global_ozinfo.txt @@ -0,0 +1,144 @@ +! sens/instr/sat lev use pressure gross obs b_oz pg_oz +! error error variational qc + sbuv6_n14 1 -1 0.240 1.000 1.000 10.000 0.000 + sbuv6_n14 2 -1 0.490 1.000 1.000 10.000 0.000 + sbuv6_n14 3 -1 0.980 1.000 1.000 10.000 0.000 + sbuv6_n14 4 -1 1.950 1.000 1.000 10.000 0.000 + sbuv6_n14 5 -1 3.900 2.000 1.000 10.000 0.000 + sbuv6_n14 6 -1 7.800 3.000 1.414 10.000 0.000 + sbuv6_n14 7 -1 15.600 5.000 1.225 10.000 0.000 + sbuv6_n14 8 -1 31.000 7.000 1.225 10.000 0.000 + sbuv6_n14 9 -1 62.000 7.000 1.871 10.000 0.000 + sbuv6_n14 10 -1 125.000 5.000 1.871 10.000 0.000 + sbuv6_n14 11 -1 250.000 3.000 1.732 10.000 0.000 + sbuv6_n14 12 -1 1000.000 3.000 1.414 10.000 0.000 + sbuv6_n14 13 -1 0.000 12.000 2.236 10.000 0.000 + sbuv6_n16 1 -1 0.240 1.000 1.000 10.000 0.000 + sbuv6_n16 2 -1 0.490 1.000 1.000 10.000 0.000 + sbuv6_n16 3 -1 0.980 1.000 1.000 10.000 0.000 + sbuv6_n16 4 -1 1.950 1.000 1.000 10.000 0.000 + sbuv6_n16 5 -1 3.900 2.000 1.000 10.000 0.000 + sbuv6_n16 6 -1 7.800 3.000 1.414 10.000 0.000 + sbuv6_n16 7 -1 15.600 5.000 1.225 10.000 0.000 + sbuv6_n16 8 -1 31.000 7.000 1.225 10.000 0.000 + sbuv6_n16 9 -1 62.000 7.000 1.871 10.000 0.000 + sbuv6_n16 10 -1 125.000 5.000 1.871 10.000 0.000 + sbuv6_n16 11 -1 250.000 3.000 1.732 10.000 0.000 + sbuv6_n16 12 -1 1000.000 3.000 1.414 10.000 0.000 + sbuv6_n16 13 -1 0.000 12.000 2.236 10.000 0.000 + sbuv6_n17 1 -1 0.240 1.000 1.000 10.000 0.000 + sbuv6_n17 2 -1 0.490 1.000 1.000 10.000 0.000 + sbuv6_n17 3 -1 0.980 1.000 1.000 10.000 0.000 + sbuv6_n17 4 -1 1.950 1.000 1.000 10.000 0.000 + sbuv6_n17 5 -1 3.900 2.000 1.000 10.000 0.000 + sbuv6_n17 6 -1 7.800 3.000 1.414 10.000 0.000 + sbuv6_n17 7 -1 15.600 5.000 1.225 10.000 0.000 + sbuv6_n17 8 -1 31.000 7.000 1.225 10.000 0.000 + sbuv6_n17 9 -1 62.000 7.000 1.871 10.000 0.000 + sbuv6_n17 10 -1 125.000 5.000 1.871 10.000 0.000 + sbuv6_n17 11 -1 250.000 3.000 1.732 10.000 0.000 + sbuv6_n17 12 -1 1000.000 3.000 1.414 10.000 0.000 + sbuv6_n17 13 -1 0.000 12.000 2.236 10.000 0.000 + sbuv6_n18 1 -1 0.240 1.000 1.000 10.000 0.000 + sbuv6_n18 2 -1 0.490 1.000 1.000 10.000 0.000 + sbuv6_n18 3 -1 0.980 1.000 1.000 10.000 0.000 + sbuv6_n18 4 -1 1.950 1.000 1.000 10.000 0.000 + sbuv6_n18 5 -1 3.900 2.000 1.000 10.000 0.000 + sbuv6_n18 6 -1 7.800 3.000 1.414 10.000 0.000 + sbuv6_n18 7 -1 15.600 5.000 1.225 10.000 0.000 + sbuv6_n18 8 -1 31.000 7.000 1.225 10.000 0.000 + sbuv6_n18 9 -1 62.000 7.000 1.871 10.000 0.000 + sbuv6_n18 10 -1 125.000 5.000 1.871 10.000 0.000 + sbuv6_n18 11 -1 250.000 3.000 1.732 10.000 0.000 + sbuv6_n18 12 -1 1000.000 3.000 1.414 10.000 0.000 + sbuv6_n18 13 -1 0.000 12.000 2.236 10.000 0.000 + sbuv8_n16 1 -1 0.100 1.000 1.000 10.000 0.000 + sbuv8_n16 2 -1 0.158 1.000 1.000 10.000 0.000 + sbuv8_n16 3 -1 0.251 1.000 1.000 10.000 0.000 + sbuv8_n16 4 -1 0.398 1.000 1.000 10.000 0.000 + sbuv8_n16 5 -1 0.631 1.000 1.000 10.000 0.000 + sbuv8_n16 6 -1 1.000 1.000 1.000 10.000 0.000 + sbuv8_n16 7 -1 1.580 1.000 1.000 10.000 0.000 + sbuv8_n16 8 -1 2.510 1.282 1.000 10.000 0.000 + sbuv8_n16 9 -1 3.980 2.051 1.021 10.000 0.000 + sbuv8_n16 10 -1 6.310 2.641 1.265 10.000 0.000 + sbuv8_n16 11 -1 10.000 3.590 1.358 10.000 0.000 + sbuv8_n16 12 -1 15.800 5.052 1.225 10.000 0.000 + sbuv8_n16 13 -1 25.100 6.273 1.225 10.000 0.000 + sbuv8_n16 14 -1 39.800 7.000 1.423 10.000 0.000 + sbuv8_n16 15 -1 63.100 6.940 1.871 10.000 0.000 + sbuv8_n16 16 -1 100.000 5.752 1.871 10.000 0.000 + sbuv8_n16 17 -1 158.000 4.422 1.831 10.000 0.000 + sbuv8_n16 18 -1 251.000 3.000 1.730 10.000 0.000 + sbuv8_n16 19 -1 398.000 3.000 1.667 10.000 0.000 + sbuv8_n16 20 -1 631.000 3.000 1.567 10.000 0.000 + sbuv8_n16 21 -1 1000.000 3.000 1.408 10.000 0.000 + sbuv8_n16 22 -1 0.000 12.000 2.236 10.000 0.000 + sbuv8_n17 1 1 0.100 1.000 1.000 10.000 0.000 + sbuv8_n17 2 1 0.158 1.000 1.000 10.000 0.000 + sbuv8_n17 3 1 0.251 1.000 1.000 10.000 0.000 + sbuv8_n17 4 1 0.398 1.000 1.000 10.000 0.000 + sbuv8_n17 5 1 0.631 1.000 1.000 10.000 0.000 + sbuv8_n17 6 1 1.000 1.000 1.000 10.000 0.000 + sbuv8_n17 7 1 1.580 1.000 1.000 10.000 0.000 + sbuv8_n17 8 1 2.510 1.282 1.000 10.000 0.000 + sbuv8_n17 9 1 3.980 2.051 1.021 10.000 0.000 + sbuv8_n17 10 1 6.310 2.641 1.265 10.000 0.000 + sbuv8_n17 11 1 10.000 3.590 1.358 10.000 0.000 + sbuv8_n17 12 1 15.800 5.052 1.225 10.000 0.000 + sbuv8_n17 13 1 25.100 6.273 1.225 10.000 0.000 + sbuv8_n17 14 1 39.800 7.000 1.423 10.000 0.000 + sbuv8_n17 15 1 63.100 6.940 1.871 10.000 0.000 + sbuv8_n17 16 1 100.000 5.752 1.871 10.000 0.000 + sbuv8_n17 17 1 158.000 4.422 1.831 10.000 0.000 + sbuv8_n17 18 1 251.000 3.000 1.730 10.000 0.000 + sbuv8_n17 19 1 398.000 3.000 1.667 10.000 0.000 + sbuv8_n17 20 1 631.000 3.000 1.567 10.000 0.000 + sbuv8_n17 21 1 1000.000 3.000 1.408 10.000 0.000 + sbuv8_n17 22 1 0.000 12.000 2.236 10.000 0.000 + sbuv8_n18 1 1 0.100 1.000 1.000 10.000 0.000 + sbuv8_n18 2 1 0.158 1.000 1.000 10.000 0.000 + sbuv8_n18 3 1 0.251 1.000 1.000 10.000 0.000 + sbuv8_n18 4 1 0.398 1.000 1.000 10.000 0.000 + sbuv8_n18 5 1 0.631 1.000 1.000 10.000 0.000 + sbuv8_n18 6 1 1.000 1.000 1.000 10.000 0.000 + sbuv8_n18 7 1 1.580 1.000 1.000 10.000 0.000 + sbuv8_n18 8 1 2.510 1.282 1.000 10.000 0.000 + sbuv8_n18 9 1 3.980 2.051 1.021 10.000 0.000 + sbuv8_n18 10 1 6.310 2.641 1.265 10.000 0.000 + sbuv8_n18 11 1 10.000 3.590 1.358 10.000 0.000 + sbuv8_n18 12 1 15.800 5.052 1.225 10.000 0.000 + sbuv8_n18 13 1 25.100 6.273 1.225 10.000 0.000 + sbuv8_n18 14 1 39.800 7.000 1.423 10.000 0.000 + sbuv8_n18 15 1 63.100 6.940 1.871 10.000 0.000 + sbuv8_n18 16 1 100.000 5.752 1.871 10.000 0.000 + sbuv8_n18 17 1 158.000 4.422 1.831 10.000 0.000 + sbuv8_n18 18 1 251.000 3.000 1.730 10.000 0.000 + sbuv8_n18 19 1 398.000 3.000 1.667 10.000 0.000 + sbuv8_n18 20 1 631.000 3.000 1.567 10.000 0.000 + sbuv8_n18 21 1 1000.000 3.000 1.408 10.000 0.000 + sbuv8_n18 22 1 0.000 12.000 2.236 10.000 0.000 + sbuv8_n19 1 -1 0.100 1.000 1.000 10.000 0.000 + sbuv8_n19 2 -1 0.158 1.000 1.000 10.000 0.000 + sbuv8_n19 3 -1 0.251 1.000 1.000 10.000 0.000 + sbuv8_n19 4 -1 0.398 1.000 1.000 10.000 0.000 + sbuv8_n19 5 -1 0.631 1.000 1.000 10.000 0.000 + sbuv8_n19 6 -1 1.000 1.000 1.000 10.000 0.000 + sbuv8_n19 7 -1 1.580 1.000 1.000 10.000 0.000 + sbuv8_n19 8 -1 2.510 1.282 1.000 10.000 0.000 + sbuv8_n19 9 -1 3.980 2.051 1.021 10.000 0.000 + sbuv8_n19 10 -1 6.310 2.641 1.265 10.000 0.000 + sbuv8_n19 11 -1 10.000 3.590 1.358 10.000 0.000 + sbuv8_n19 12 -1 15.800 5.052 1.225 10.000 0.000 + sbuv8_n19 13 -1 25.100 6.273 1.225 10.000 0.000 + sbuv8_n19 14 -1 39.800 7.000 1.423 10.000 0.000 + sbuv8_n19 15 -1 63.100 6.940 1.871 10.000 0.000 + sbuv8_n19 16 -1 100.000 5.752 1.871 10.000 0.000 + sbuv8_n19 17 -1 158.000 4.422 1.831 10.000 0.000 + sbuv8_n19 18 -1 251.000 3.000 1.730 10.000 0.000 + sbuv8_n19 19 -1 398.000 3.000 1.667 10.000 0.000 + sbuv8_n19 20 -1 631.000 3.000 1.567 10.000 0.000 + sbuv8_n19 21 -1 1000.000 3.000 1.408 10.000 0.000 + sbuv8_n19 22 -1 0.000 12.000 2.236 10.000 0.000 + omi_aura 1 1 0.000 6.000 5.000 10.000 0.000 + gome_metop-a 1 -1 0.000 12.000 2.236 10.000 0.000 diff --git a/fix/gsi/global_pcpinfo.txt b/fix/gsi/global_pcpinfo.txt new file mode 100755 index 000000000..644c7f125 --- /dev/null +++ b/fix/gsi/global_pcpinfo.txt @@ -0,0 +1,4 @@ +!satid use bias oberr gross b_pcp pg_pcp +! (mm/h) error variational qc + pcp_ssmi -1 0 0.500 3.000 10.000 0.000 !fnoc obs, 1 deg superob + pcp_tmi 1 0 0.500 3.000 10.000 0.000 !tmi obs, 1 deg superob diff --git a/fix/gsi/global_satangbias.txt b/fix/gsi/global_satangbias.txt new file mode 100755 index 000000000..b74e822d0 --- /dev/null +++ b/fix/gsi/global_satangbias.txt @@ -0,0 +1,16478 @@ + 1 amsua_n15 1 0.528768E-02 + 0.063 -0.200 -0.411 -0.588 -0.638 -0.523 -0.493 -0.466 -0.482 -0.475 + -0.666 -0.587 -0.593 -0.602 -0.766 -0.955 -1.080 -1.218 -1.149 -1.374 + -1.553 -1.635 -1.715 -1.783 -1.689 -1.507 -1.473 -1.244 -1.233 -1.259 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 2 amsua_n15 2 0.290661E-02 + -2.769 -2.880 -2.583 -2.449 -2.218 -1.810 -1.536 -1.242 -0.882 -0.788 + -0.676 -0.697 -0.508 -0.464 -0.544 -0.790 -0.945 -1.108 -1.002 -1.364 + -1.404 -1.315 -1.318 -1.151 -0.826 -0.219 0.086 0.631 1.121 1.807 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 3 amsua_n15 3 0.174554E-01 + 1.349 1.645 1.828 1.952 2.091 2.273 2.465 2.596 2.755 2.961 + 3.122 3.378 3.484 3.576 3.703 3.727 3.713 3.604 3.477 3.312 + 3.071 2.867 2.599 2.417 2.166 1.886 1.582 1.272 1.007 0.461 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 4 amsua_n15 4 0.390677E-01 + -0.359 -0.411 -0.393 -0.371 -0.206 -0.093 0.019 0.136 0.263 0.422 + 0.475 0.567 0.656 0.700 0.728 0.747 0.728 0.659 0.557 0.453 + 0.319 0.201 0.064 -0.086 -0.263 -0.414 -0.690 -0.935 -1.188 -1.346 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 5 amsua_n15 5 0.496683E-01 + 0.337 0.153 -0.019 -0.113 -0.107 -0.107 -0.067 -0.013 0.071 0.141 + 0.197 0.235 0.255 0.284 0.268 0.266 0.289 0.282 0.269 0.204 + 0.148 0.065 -0.001 -0.075 -0.165 -0.328 -0.484 -0.508 -0.627 -0.544 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 6 amsua_n15 6 0.501461E-01 + 0.044 -0.281 -0.420 -0.607 -0.732 -0.829 -0.863 -0.902 -0.938 -0.968 + -1.004 -1.044 -1.077 -1.109 -1.133 -1.203 -1.219 -1.232 -1.234 -1.252 + -1.227 -1.253 -1.244 -1.265 -1.234 -1.237 -1.337 -1.360 -1.397 -1.318 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 7 amsua_n15 7 0.391649E-01 + 0.977 0.787 0.661 0.514 0.342 0.233 0.153 0.049 0.004 -0.106 + -0.199 -0.255 -0.290 -0.375 -0.371 -0.413 -0.440 -0.453 -0.408 -0.358 + -0.279 -0.162 -0.090 -0.037 0.004 0.088 0.021 -0.049 -0.019 0.048 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 8 amsua_n15 8 0.257209E-01 + 0.461 0.275 0.120 0.033 0.069 0.026 -0.019 -0.048 -0.062 -0.068 + -0.094 -0.097 -0.082 -0.090 -0.083 -0.044 -0.038 -0.046 -0.068 -0.057 + -0.045 -0.082 -0.084 -0.104 -0.148 -0.183 -0.260 -0.224 -0.181 -0.087 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 9 amsua_n15 9 -0.129654E-01 + 0.280 0.282 0.235 0.040 0.012 0.072 0.079 0.208 0.047 0.185 + 0.028 -0.039 0.163 0.037 -0.085 0.012 -0.051 -0.052 -0.237 -0.030 + -0.095 -0.178 -0.289 -0.244 -0.275 -0.275 -0.325 -0.441 -0.422 -0.343 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 10 amsua_n15 10 -0.301720E-01 + 0.526 0.457 0.382 0.302 0.235 0.199 0.163 0.145 0.139 0.128 + 0.118 0.113 0.108 0.111 0.099 0.047 0.024 -0.010 -0.053 -0.087 + -0.108 -0.119 -0.140 -0.140 -0.143 -0.158 -0.230 -0.263 -0.262 -0.219 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 11 amsua_n15 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 12 amsua_n15 12 -0.667220E-01 + -0.324 -0.238 -0.220 -0.258 -0.261 -0.238 -0.260 -0.250 -0.232 -0.189 + -0.184 -0.164 -0.130 -0.124 -0.138 -0.183 -0.205 -0.254 -0.321 -0.375 + -0.432 -0.487 -0.540 -0.556 -0.595 -0.635 -0.762 -0.874 -0.968 -1.044 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 13 amsua_n15 13 -0.913346E-01 + -1.940 -1.817 -1.751 -1.734 -1.727 -1.684 -1.662 -1.629 -1.606 -1.529 + -1.499 -1.458 -1.412 -1.401 -1.412 -1.465 -1.492 -1.535 -1.622 -1.700 + -1.752 -1.841 -1.932 -1.971 -2.018 -2.090 -2.248 -2.387 -2.520 -2.650 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 14 amsua_n15 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 15 amsua_n15 15 0.888067E-02 + 1.950 1.820 1.621 1.723 1.848 2.086 2.276 2.550 2.755 3.010 + 3.072 3.282 3.343 3.415 3.543 3.539 3.482 3.446 3.402 3.275 + 3.167 3.023 2.905 2.727 2.606 2.472 2.335 2.283 2.559 2.908 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 16 amsub_n15 1 0.799398E-02 + -1.071 -1.453 -1.276 -1.264 -1.270 -1.216 -1.150 -1.199 -1.078 -0.941 + -0.921 -0.913 -0.785 -0.893 -0.794 -0.661 -0.602 -0.528 -0.450 -0.386 + -0.374 -0.180 -0.202 -0.073 -0.150 0.020 -0.071 0.154 0.175 0.162 + 0.215 0.212 0.374 0.280 0.377 0.467 0.419 0.421 0.464 0.449 + 0.404 0.468 0.484 0.527 0.516 0.461 0.464 0.461 0.422 0.379 + 0.234 0.265 0.256 0.151 0.123 0.030 0.024 0.002 -0.218 -0.264 + -0.256 -0.353 -0.459 -0.506 -0.512 -0.642 -0.740 -0.738 -0.770 -0.851 + -1.002 -1.008 -1.149 -1.198 -1.323 -1.322 -1.431 -1.507 -1.651 -1.697 + -1.806 -1.924 -2.022 -2.098 -2.119 -2.253 -2.306 -2.484 -2.556 -2.330 + + 17 amsub_n15 2 0.150843E-01 + -2.970 -2.905 -2.990 -2.957 -2.938 -2.872 -2.761 -2.712 -2.518 -2.432 + -2.276 -2.197 -2.075 -1.932 -1.888 -1.672 -1.494 -1.336 -1.273 -1.114 + -0.958 -0.788 -0.727 -0.652 -0.522 -0.304 -0.403 -0.202 -0.078 0.064 + 0.054 0.152 0.206 0.228 0.238 0.255 0.403 0.370 0.436 0.437 + 0.482 0.562 0.593 0.624 0.622 0.620 0.725 0.751 0.765 0.694 + 0.651 0.629 0.628 0.722 0.681 0.704 0.758 0.865 0.811 0.813 + 0.913 0.978 0.816 0.969 0.981 0.917 0.871 0.955 1.004 0.961 + 0.821 0.804 0.700 0.658 0.539 0.467 0.320 0.323 0.113 0.090 + 0.040 -0.108 -0.210 -0.301 -0.365 -0.432 -0.580 -0.737 -0.860 -1.037 + + 18 amsub_n15 3 0.750901E-01 + 1.511 1.932 2.176 2.082 2.155 2.044 1.941 1.886 1.751 1.619 + 1.709 1.384 1.142 1.210 1.150 0.905 1.022 1.011 1.158 0.946 + 0.960 0.855 0.891 0.770 0.886 0.809 0.932 0.775 1.059 1.164 + 1.135 1.038 1.168 1.143 1.162 0.971 1.033 0.934 0.867 0.519 + 0.675 0.490 0.328 0.260 0.081 0.068 0.114 -0.007 0.074 0.119 + 0.272 -0.114 0.048 -0.132 0.042 -0.201 0.003 -0.153 -0.020 -0.171 + 0.001 -0.118 0.127 -0.058 0.211 0.143 0.382 0.380 0.422 0.491 + 0.403 0.319 0.501 0.682 0.568 0.430 0.652 0.738 0.807 0.690 + 0.784 0.675 0.840 0.721 0.730 0.718 0.655 0.412 0.445 0.259 + + 19 amsub_n15 4 0.540310E-01 + 0.329 -0.173 0.092 0.809 1.787 2.426 2.574 2.588 2.667 2.579 + 2.721 2.526 2.696 2.836 2.824 2.796 2.914 3.085 3.009 3.387 + 3.599 3.950 4.164 4.098 4.348 4.401 4.453 4.227 4.117 4.262 + 4.169 4.338 3.948 4.044 3.898 3.771 3.452 3.501 3.249 2.867 + 2.397 2.393 1.901 1.761 1.389 1.085 0.786 0.650 0.355 0.263 + 0.174 0.098 -0.121 0.243 0.196 0.276 0.584 0.725 0.945 1.270 + 1.393 1.990 2.459 3.089 3.511 3.796 4.487 5.012 5.430 5.742 + 6.064 6.562 6.452 6.354 6.695 7.162 7.240 7.241 6.729 7.342 + 7.495 7.487 7.356 7.424 7.297 7.296 7.142 6.930 6.946 6.923 + + 20 amsub_n15 5 0.353670E-01 + 2.569 2.720 2.946 2.843 2.918 2.928 2.886 2.637 2.648 2.360 + 2.304 2.065 1.861 1.810 1.836 1.614 1.268 1.230 1.338 1.139 + 1.105 0.978 0.858 0.774 0.667 0.450 0.484 0.238 0.361 0.199 + 0.340 0.638 0.572 0.559 0.685 0.821 0.804 0.751 0.964 0.709 + 0.737 0.571 0.673 0.624 0.506 0.471 0.618 0.665 0.565 0.195 + 0.351 0.327 0.112 0.047 -0.011 0.116 0.043 0.112 0.430 0.355 + 0.496 0.356 0.730 0.878 0.903 1.052 1.214 1.361 1.241 1.066 + 1.498 1.177 1.050 0.819 0.774 0.833 1.015 0.844 0.878 0.919 + 1.004 0.758 0.924 0.892 1.092 1.214 1.437 1.404 1.285 1.605 + + 21 hirs3_n16 1 -0.434204E-01 + -3.223 -2.914 -2.252 -2.225 -2.371 -2.198 -1.902 -1.946 -2.316 -2.426 + -2.104 -1.982 -2.136 -2.104 -1.848 -1.991 -2.050 -2.361 -1.948 -2.000 + -2.332 -2.385 -2.090 -1.690 -1.938 -2.274 -2.152 -2.001 -2.046 -2.182 + -1.724 -1.896 -2.016 -2.103 -1.973 -2.076 -2.411 -2.335 -2.097 -2.090 + -2.273 -2.524 -2.515 -2.226 -2.281 -2.619 -2.221 -2.095 -2.366 -2.632 + -2.448 -2.630 -2.897 -2.907 -2.556 -2.779 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 22 hirs3_n16 2 -0.343319E-01 + -0.850 -0.807 -0.730 -0.682 -0.745 -0.766 -0.729 -0.773 -0.735 -0.726 + -0.730 -0.738 -0.819 -0.736 -0.715 -0.680 -0.781 -0.795 -0.709 -0.725 + -0.747 -0.790 -0.797 -0.764 -0.803 -0.654 -0.742 -0.744 -0.793 -0.682 + -0.714 -0.692 -0.766 -0.716 -0.803 -0.764 -0.735 -0.717 -0.748 -0.725 + -0.755 -0.685 -0.716 -0.676 -0.785 -0.722 -0.723 -0.679 -0.771 -0.749 + -0.752 -0.715 -0.742 -0.773 -0.846 -0.904 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 23 hirs3_n16 3 -0.967748E-02 + -0.648 -0.614 -0.536 -0.457 -0.577 -0.570 -0.478 -0.523 -0.558 -0.535 + -0.515 -0.508 -0.554 -0.583 -0.519 -0.538 -0.626 -0.519 -0.597 -0.550 + -0.631 -0.631 -0.551 -0.611 -0.633 -0.561 -0.571 -0.549 -0.685 -0.671 + -0.535 -0.568 -0.620 -0.624 -0.630 -0.611 -0.689 -0.660 -0.616 -0.584 + -0.622 -0.618 -0.560 -0.495 -0.595 -0.603 -0.562 -0.539 -0.597 -0.555 + -0.629 -0.561 -0.581 -0.658 -0.604 -0.676 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 24 hirs3_n16 4 0.270774E-01 + -0.101 -0.108 -0.000 -0.018 -0.038 -0.052 -0.003 -0.009 -0.006 -0.055 + -0.014 -0.038 -0.009 -0.042 -0.041 -0.010 -0.037 -0.051 -0.036 -0.049 + -0.068 -0.126 -0.086 -0.115 -0.134 -0.139 -0.099 -0.121 -0.160 -0.202 + -0.131 -0.121 -0.133 -0.161 -0.117 -0.098 -0.114 -0.136 -0.138 -0.100 + -0.079 -0.126 -0.114 -0.088 -0.129 -0.152 -0.103 -0.142 -0.173 -0.221 + -0.191 -0.187 -0.285 -0.293 -0.279 -0.314 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 25 hirs3_n16 5 0.402805E-01 + 0.411 0.351 0.391 0.336 0.324 0.274 0.311 0.266 0.270 0.237 + 0.229 0.236 0.237 0.197 0.227 0.223 0.169 0.127 0.165 0.172 + 0.150 0.111 0.114 0.104 0.104 0.078 0.104 0.103 0.097 0.055 + 0.128 0.106 0.114 0.062 0.103 0.120 0.101 0.100 0.125 0.137 + 0.122 0.101 0.121 0.129 0.117 0.137 0.131 0.134 0.116 0.101 + 0.135 0.149 0.107 0.155 0.228 0.300 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 26 hirs3_n16 6 0.455370E-01 + 0.779 0.694 0.701 0.627 0.622 0.566 0.582 0.568 0.523 0.524 + 0.539 0.528 0.535 0.506 0.526 0.518 0.470 0.468 0.491 0.481 + 0.436 0.414 0.435 0.434 0.406 0.401 0.412 0.391 0.389 0.402 + 0.423 0.400 0.373 0.382 0.401 0.411 0.356 0.387 0.414 0.426 + 0.361 0.394 0.428 0.413 0.392 0.410 0.399 0.409 0.380 0.394 + 0.443 0.456 0.423 0.506 0.608 0.756 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 27 hirs3_n16 7 0.392896E-01 + 0.550 0.487 0.481 0.427 0.427 0.366 0.392 0.350 0.336 0.318 + 0.316 0.285 0.295 0.279 0.289 0.264 0.241 0.248 0.240 0.246 + 0.220 0.192 0.216 0.196 0.193 0.194 0.204 0.210 0.191 0.183 + 0.211 0.183 0.174 0.158 0.184 0.191 0.166 0.193 0.201 0.219 + 0.179 0.218 0.227 0.250 0.220 0.227 0.268 0.263 0.234 0.260 + 0.285 0.320 0.301 0.359 0.416 0.508 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 28 hirs3_n16 8 0.102141E-01 + -0.865 -0.813 -0.753 -0.740 -0.710 -0.710 -0.683 -0.670 -0.641 -0.621 + -0.593 -0.588 -0.582 -0.589 -0.574 -0.576 -0.557 -0.528 -0.537 -0.503 + -0.515 -0.540 -0.534 -0.518 -0.518 -0.546 -0.524 -0.486 -0.517 -0.501 + -0.495 -0.522 -0.532 -0.562 -0.540 -0.536 -0.563 -0.564 -0.586 -0.601 + -0.624 -0.634 -0.641 -0.649 -0.717 -0.698 -0.703 -0.751 -0.805 -0.833 + -0.841 -0.888 -0.928 -0.981 -0.998 -1.095 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 29 hirs3_n16 9 -0.112994E-01 + -0.789 -0.772 -0.778 -0.850 -0.847 -0.891 -0.878 -0.884 -0.868 -0.905 + -0.891 -0.882 -0.885 -0.883 -0.829 -0.851 -0.854 -0.816 -0.789 -0.830 + -0.796 -0.818 -0.808 -0.824 -0.821 -0.816 -0.834 -0.791 -0.833 -0.822 + -0.816 -0.822 -0.861 -0.871 -0.875 -0.870 -0.899 -0.885 -0.927 -0.905 + -0.962 -0.954 -0.954 -0.962 -1.029 -0.976 -0.998 -1.003 -1.060 -1.029 + -1.026 -1.002 -1.018 -0.972 -0.953 -0.941 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 30 hirs3_n16 10 0.200068E-01 + -0.187 -0.138 -0.104 -0.107 -0.107 -0.104 -0.083 -0.106 -0.119 -0.105 + -0.091 -0.097 -0.102 -0.092 -0.080 -0.094 -0.129 -0.108 -0.079 -0.066 + -0.109 -0.106 -0.108 -0.110 -0.107 -0.126 -0.090 -0.078 -0.122 -0.085 + -0.081 -0.110 -0.115 -0.139 -0.128 -0.132 -0.140 -0.122 -0.128 -0.145 + -0.160 -0.160 -0.155 -0.156 -0.188 -0.204 -0.160 -0.160 -0.209 -0.226 + -0.220 -0.237 -0.263 -0.296 -0.285 -0.319 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 31 hirs3_n16 11 0.603300E-01 + 0.001 0.054 0.037 0.019 0.026 -0.032 -0.026 -0.015 -0.072 -0.110 + -0.073 -0.104 -0.109 -0.112 -0.080 -0.087 -0.132 -0.100 -0.154 -0.125 + -0.162 -0.168 -0.164 -0.120 -0.147 -0.183 -0.188 -0.154 -0.143 -0.178 + -0.118 -0.169 -0.172 -0.200 -0.170 -0.165 -0.148 -0.172 -0.188 -0.167 + -0.149 -0.135 -0.171 -0.130 -0.176 -0.117 -0.146 -0.115 -0.139 -0.162 + -0.123 -0.047 -0.090 -0.093 -0.061 0.032 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 32 hirs3_n16 12 0.797241E-01 + 0.168 0.360 0.630 0.522 0.457 0.362 0.332 0.453 0.454 0.356 + 0.277 0.315 0.350 0.253 0.325 0.293 0.039 0.188 0.153 0.348 + 0.223 0.135 0.097 0.178 0.246 0.018 0.125 0.135 0.338 0.156 + 0.219 0.204 0.152 0.134 0.110 0.287 0.148 0.246 0.255 0.320 + 0.314 0.177 0.344 0.327 0.378 0.304 0.296 0.252 0.264 0.259 + 0.370 0.448 0.259 0.379 0.312 0.331 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 33 hirs3_n16 13 0.354515E-01 + 0.062 0.064 -0.001 -0.004 -0.009 -0.011 -0.008 -0.018 -0.026 -0.018 + -0.030 -0.031 -0.067 -0.066 -0.085 -0.080 -0.092 -0.080 -0.111 -0.107 + -0.115 -0.117 -0.146 -0.144 -0.125 -0.142 -0.143 -0.120 -0.156 -0.137 + -0.132 -0.134 -0.130 -0.146 -0.155 -0.139 -0.137 -0.136 -0.151 -0.131 + -0.145 -0.142 -0.161 -0.140 -0.186 -0.159 -0.158 -0.137 -0.175 -0.165 + -0.153 -0.135 -0.133 -0.090 -0.039 0.033 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 34 hirs3_n16 14 0.465241E-01 + 0.712 0.533 0.444 0.365 0.356 0.288 0.270 0.233 0.229 0.200 + 0.192 0.173 0.160 0.129 0.124 0.122 0.102 0.098 0.073 0.072 + 0.047 0.037 0.027 0.014 0.018 0.003 -0.003 0.009 -0.012 -0.006 + -0.001 0.006 0.017 0.002 0.011 0.031 0.020 0.028 0.028 0.057 + 0.050 0.055 0.057 0.074 0.046 0.067 0.067 0.093 0.062 0.087 + 0.102 0.149 0.154 0.255 0.362 0.553 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 35 hirs3_n16 15 0.453782E-01 + 0.328 0.152 0.047 -0.053 -0.087 -0.159 -0.188 -0.237 -0.246 -0.283 + -0.288 -0.311 -0.323 -0.351 -0.346 -0.368 -0.376 -0.394 -0.399 -0.409 + -0.426 -0.446 -0.453 -0.465 -0.455 -0.477 -0.476 -0.482 -0.497 -0.494 + -0.469 -0.488 -0.503 -0.498 -0.481 -0.474 -0.489 -0.479 -0.471 -0.470 + -0.476 -0.459 -0.455 -0.440 -0.477 -0.451 -0.455 -0.434 -0.481 -0.447 + -0.422 -0.387 -0.384 -0.280 -0.183 -0.003 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 36 hirs3_n16 16 0.424834E-01 + 1.489 1.308 1.231 1.100 1.069 0.988 0.951 0.902 0.888 0.841 + 0.839 0.794 0.803 0.775 0.782 0.743 0.725 0.701 0.711 0.667 + 0.674 0.654 0.650 0.632 0.627 0.613 0.601 0.566 0.589 0.581 + 0.607 0.586 0.568 0.579 0.594 0.588 0.584 0.578 0.612 0.590 + 0.596 0.608 0.608 0.619 0.601 0.622 0.609 0.623 0.582 0.618 + 0.633 0.676 0.680 0.761 0.845 1.012 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 37 hirs3_n16 17 0.244565E-01 + -1.671 -1.593 -1.591 -1.641 -1.655 -1.660 -1.594 -1.555 -1.539 -1.544 + -1.510 -1.510 -1.506 -1.508 -1.392 -1.481 -1.422 -1.453 -1.432 -1.427 + -1.356 -1.423 -1.438 -1.391 -1.388 -1.430 -1.425 -1.475 -1.421 -1.375 + -1.408 -1.450 -1.460 -1.479 -1.445 -1.502 -1.479 -1.470 -1.508 -1.527 + -1.546 -1.569 -1.593 -1.643 -1.750 -1.705 -1.723 -1.760 -1.844 -1.901 + -1.911 -1.972 -1.984 -1.993 -2.011 -2.103 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 38 hirs3_n16 18 0.544709E-02 + -1.655 -1.457 -1.420 -1.394 -1.345 -1.353 -1.262 -1.274 -1.164 -1.200 + -1.125 -1.151 -1.083 -1.134 -1.012 -1.096 -1.006 -1.033 -0.973 -1.022 + -0.912 -1.004 -1.004 -0.994 -0.956 -0.979 -1.006 -1.021 -1.000 -0.956 + -0.969 -1.001 -0.991 -1.031 -1.017 -1.108 -1.049 -1.025 -1.100 -1.126 + -1.136 -1.166 -1.202 -1.240 -1.335 -1.341 -1.331 -1.421 -1.504 -1.557 + -1.645 -1.711 -1.714 -1.784 -1.879 -2.080 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 39 hirs3_n16 19 0.578890E-02 + -1.328 -1.169 -1.144 -1.136 -1.076 -1.060 -0.986 -0.979 -0.917 -0.897 + -0.888 -0.868 -0.851 -0.916 -0.776 -0.828 -0.761 -0.785 -0.744 -0.745 + -0.650 -0.788 -0.741 -0.763 -0.736 -0.751 -0.760 -0.768 -0.781 -0.755 + -0.758 -0.775 -0.734 -0.782 -0.787 -0.876 -0.786 -0.782 -0.869 -0.871 + -0.905 -0.910 -0.968 -0.989 -1.054 -1.076 -1.067 -1.140 -1.213 -1.261 + -1.352 -1.400 -1.423 -1.523 -1.608 -1.816 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 40 amsua_n16 1 0.542503E-02 + -1.253 -1.311 -1.470 -1.706 -1.858 -1.966 -2.012 -1.764 -1.844 -1.825 + -1.879 -1.765 -1.777 -1.572 -1.585 -1.440 -1.592 -1.592 -1.539 -1.607 + -1.538 -1.740 -1.816 -1.909 -1.884 -1.992 -1.868 -1.654 -1.498 -1.310 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 41 amsua_n16 2 0.293402E-02 + -2.607 -2.791 -2.819 -2.830 -2.884 -2.715 -2.568 -2.214 -2.137 -1.979 + -1.853 -1.703 -1.611 -1.397 -1.405 -1.293 -1.364 -1.335 -1.309 -1.361 + -1.212 -1.284 -1.276 -1.200 -1.032 -0.927 -0.534 -0.034 0.355 0.973 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 42 amsua_n16 3 0.176055E-01 + 1.358 1.761 1.912 1.909 1.997 2.060 2.277 2.401 2.596 2.832 + 2.854 2.923 3.132 3.194 3.124 3.164 3.113 2.837 2.647 2.525 + 2.283 1.985 1.722 1.580 1.376 1.249 0.986 0.811 0.540 -0.067 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 43 amsua_n16 4 0.393216E-01 + -0.593 -0.446 -0.176 0.071 0.458 0.691 0.977 1.167 1.439 1.586 + 1.871 2.004 2.153 2.211 2.278 2.258 2.317 2.281 2.227 2.063 + 1.878 1.667 1.412 1.197 0.846 0.488 0.168 -0.178 -0.543 -0.753 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 44 amsua_n16 5 0.505452E-01 + -0.403 -0.564 -0.609 -0.565 -0.548 -0.504 -0.455 -0.376 -0.318 -0.253 + -0.185 -0.145 -0.104 -0.064 -0.040 -0.022 -0.003 -0.018 -0.065 -0.123 + -0.165 -0.208 -0.310 -0.414 -0.465 -0.508 -0.560 -0.517 -0.550 -0.364 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 45 amsua_n16 6 0.517824E-01 + -0.217 -0.302 -0.415 -0.532 -0.597 -0.635 -0.633 -0.678 -0.618 -0.641 + -0.667 -0.716 -0.697 -0.673 -0.715 -0.717 -0.709 -0.773 -0.747 -0.674 + -0.664 -0.709 -0.762 -0.748 -0.864 -0.876 -0.989 -0.949 -0.981 -0.954 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 46 amsua_n16 7 0.424979E-01 + -0.074 -0.195 -0.311 -0.464 -0.589 -0.685 -0.731 -0.795 -0.831 -0.901 + -0.934 -0.998 -1.015 -1.033 -1.017 -1.031 -1.043 -1.079 -1.078 -1.056 + -1.033 -1.030 -1.022 -0.997 -1.015 -1.076 -1.175 -1.194 -1.205 -1.161 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 47 amsua_n16 8 0.274527E-01 + 0.262 0.015 -0.175 -0.316 -0.436 -0.509 -0.537 -0.575 -0.603 -0.649 + -0.673 -0.698 -0.697 -0.671 -0.679 -0.687 -0.672 -0.695 -0.678 -0.655 + -0.643 -0.628 -0.606 -0.570 -0.566 -0.521 -0.567 -0.484 -0.401 -0.245 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 48 amsua_n16 9 -0.138201E-01 + 0.754 0.760 0.644 0.466 0.424 0.345 0.316 0.244 0.264 0.273 + 0.188 0.178 0.236 0.290 0.158 0.127 0.220 0.031 0.049 0.129 + 0.090 -0.030 -0.092 0.035 -0.011 0.109 -0.015 0.049 0.031 0.097 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 49 amsua_n16 10 -0.323633E-01 + 0.915 0.837 0.703 0.543 0.470 0.387 0.389 0.403 0.403 0.428 + 0.409 0.420 0.417 0.398 0.374 0.335 0.311 0.291 0.245 0.194 + 0.165 0.122 0.088 0.084 0.100 0.112 0.063 0.071 0.090 0.158 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 50 amsua_n16 11 -0.452835E-01 + 0.869 0.854 0.751 0.606 0.544 0.467 0.487 0.514 0.518 0.557 + 0.545 0.565 0.566 0.554 0.534 0.491 0.460 0.435 0.381 0.323 + 0.276 0.228 0.182 0.182 0.182 0.191 0.095 0.077 0.074 0.122 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 51 amsua_n16 12 -0.687608E-01 + 0.162 0.213 0.169 0.062 0.033 -0.013 0.037 0.084 0.119 0.175 + 0.178 0.220 0.227 0.222 0.202 0.158 0.122 0.087 0.020 -0.054 + -0.109 -0.181 -0.256 -0.283 -0.308 -0.321 -0.462 -0.535 -0.590 -0.609 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 52 amsua_n16 13 -0.904694E-01 + -1.354 -1.253 -1.267 -1.344 -1.352 -1.379 -1.304 -1.238 -1.178 -1.102 + -1.075 -1.019 -1.000 -0.996 -1.014 -1.057 -1.099 -1.147 -1.224 -1.310 + -1.393 -1.482 -1.576 -1.627 -1.672 -1.707 -1.873 -1.975 -2.061 -2.119 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 53 amsua_n16 14 -0.589565E-01 + -1.791 -1.936 -2.104 -2.281 -2.376 -2.500 -2.471 -2.426 -2.411 -2.368 + -2.358 -2.319 -2.313 -2.309 -2.323 -2.369 -2.412 -2.454 -2.527 -2.586 + -2.649 -2.698 -2.763 -2.753 -2.727 -2.669 -2.749 -2.718 -2.603 -2.400 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 54 amsua_n16 15 0.893417E-02 + 2.321 2.112 1.900 1.867 1.924 2.115 2.303 2.594 2.707 2.926 + 2.944 3.126 3.217 3.134 3.079 3.180 3.133 3.096 2.934 2.889 + 2.747 2.550 2.460 2.374 2.298 2.154 2.143 2.203 2.420 2.748 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 55 amsub_n16 1 0.802952E-02 + -2.416 -2.512 -2.375 -2.315 -2.144 -2.122 -1.934 -1.950 -1.751 -1.655 + -1.580 -1.463 -1.398 -1.364 -1.131 -1.088 -1.011 -0.879 -0.823 -0.767 + -0.553 -0.611 -0.509 -0.425 -0.234 -0.241 -0.165 -0.082 -0.019 -0.010 + 0.127 0.129 0.223 0.324 0.352 0.419 0.427 0.525 0.437 0.432 + 0.505 0.545 0.577 0.550 0.534 0.524 0.502 0.489 0.521 0.530 + 0.564 0.459 0.440 0.331 0.258 0.130 0.216 0.180 -0.003 -0.012 + -0.126 -0.261 -0.206 -0.428 -0.482 -0.563 -0.607 -0.759 -0.836 -0.976 + -1.090 -1.149 -1.215 -1.229 -1.495 -1.557 -1.591 -1.726 -1.832 -1.999 + -2.030 -2.106 -2.284 -2.297 -2.404 -2.544 -2.642 -2.745 -2.854 -2.601 + + 56 amsub_n16 2 0.150465E-01 + -0.700 -0.438 -0.331 -0.298 -0.175 -0.082 0.024 0.018 0.163 0.224 + 0.321 0.419 0.457 0.544 0.668 0.715 0.740 0.803 0.850 0.839 + 0.936 1.008 1.008 1.063 1.111 1.091 1.105 1.086 1.049 1.119 + 1.088 1.094 1.134 1.156 1.134 1.131 1.072 1.132 1.105 1.095 + 1.067 1.135 1.077 1.034 1.005 1.012 0.978 0.983 0.950 0.984 + 1.062 0.971 0.983 0.980 1.019 0.981 1.012 1.062 1.063 1.080 + 1.019 1.091 1.149 1.038 1.123 1.076 1.089 0.996 1.025 0.973 + 0.917 0.888 0.848 0.873 0.792 0.754 0.726 0.629 0.537 0.463 + 0.438 0.385 0.332 0.265 0.188 0.091 0.012 -0.112 -0.250 -0.429 + + 57 amsub_n16 3 0.752969E-01 + -1.407 -1.222 -1.150 -1.154 -1.227 -1.192 -1.017 -1.056 -1.191 -1.082 + -1.000 -0.814 -0.942 -0.723 -0.641 -0.515 -0.602 -0.533 -0.413 -0.177 + -0.221 -0.034 0.107 0.196 0.188 0.240 0.391 0.482 0.399 0.565 + 0.749 0.885 0.828 0.794 1.024 1.012 0.979 0.999 1.184 1.224 + 1.037 1.189 1.209 1.300 1.103 1.147 1.228 1.133 1.112 1.044 + 1.187 1.167 0.903 0.908 1.075 1.008 0.851 0.944 0.897 0.950 + 0.769 0.800 0.796 0.832 0.698 0.630 0.747 0.793 0.547 0.739 + 0.618 0.705 0.491 0.570 0.610 0.681 0.576 0.473 0.516 0.662 + 0.351 0.464 0.451 0.504 0.433 0.440 0.503 0.478 0.290 0.410 + + 58 amsub_n16 4 0.543790E-01 + 3.029 2.652 2.586 2.292 2.166 1.685 1.698 1.423 1.348 0.949 + 1.002 0.955 0.872 0.607 0.697 0.669 0.733 0.398 0.529 0.641 + 0.661 0.519 0.839 0.830 1.029 0.835 1.098 1.184 1.313 1.115 + 1.474 1.547 1.650 1.503 1.815 1.689 1.874 1.592 1.785 1.837 + 1.745 1.678 1.663 1.761 1.700 1.458 1.647 1.600 1.624 1.407 + 1.633 1.585 1.519 1.241 1.505 1.389 1.458 1.171 1.280 1.265 + 1.191 0.874 0.876 0.847 0.793 0.404 0.666 0.512 0.484 0.281 + 0.293 0.332 0.310 0.067 0.136 0.077 0.083 -0.259 -0.128 -0.084 + -0.090 -0.327 -0.151 -0.185 -0.184 -0.440 -0.241 -0.356 -0.316 -0.628 + + 59 amsub_n16 5 0.352211E-01 + 2.578 1.775 1.195 1.530 1.054 0.941 -0.246 -0.066 -0.467 -0.802 + -0.995 -0.826 -0.689 -1.081 -1.312 -1.240 -1.302 -1.350 -1.855 -1.655 + -1.979 -1.570 -2.292 -2.097 -2.588 -2.775 -3.082 -2.882 -2.770 -3.162 + -3.249 -2.715 -2.973 -2.613 -3.052 -2.340 -2.553 -2.447 -2.495 -2.497 + -1.805 -1.968 -2.248 -2.300 -2.307 -2.405 -2.886 -1.892 -2.269 -2.053 + -2.326 -1.595 -1.888 -1.983 -2.015 -2.065 -1.767 -2.115 -2.003 -1.954 + -2.063 -2.074 -3.143 -2.419 -2.859 -2.734 -2.969 -2.521 -2.172 -2.714 + -2.315 -2.264 -2.123 -2.289 -2.726 -2.041 -2.191 -1.993 -2.726 -2.443 + -2.537 -2.524 -2.623 -2.452 -2.217 -2.202 -2.128 -2.088 -1.594 -1.729 + + 60 hirs3_n17 1 -0.417544E-01 + -4.579 -6.336 -6.119 -4.481 -3.784 -3.164 -3.135 -2.775 -3.026 -3.016 + -3.186 -2.998 -3.176 -2.999 -2.993 -2.779 -3.195 -2.886 -3.268 -3.006 + -3.535 -3.412 -3.435 -3.071 -3.191 -3.039 -3.394 -3.195 -3.535 -3.221 + -3.276 -2.885 -3.396 -3.037 -3.458 -3.275 -3.749 -3.508 -3.618 -3.272 + -3.688 -3.274 -3.865 -3.718 -3.885 -3.453 -3.607 -3.203 -3.534 -3.137 + -3.559 -3.384 -3.804 -3.684 -3.817 -3.553 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 61 hirs3_n17 2 -0.322123E-01 + -2.229 -2.455 -2.419 -2.164 -2.060 -1.994 -2.049 -1.942 -2.004 -1.919 + -2.026 -2.010 -2.043 -1.992 -2.092 -2.007 -2.060 -1.990 -2.080 -2.007 + -2.037 -2.011 -2.124 -2.052 -2.125 -1.996 -2.068 -2.085 -2.099 -2.099 + -2.132 -2.071 -2.078 -2.036 -2.106 -2.015 -2.057 -2.067 -2.102 -2.016 + -2.041 -1.956 -2.077 -2.024 -2.040 -2.026 -2.085 -2.057 -2.077 -2.001 + -2.094 -2.022 -2.083 -2.135 -2.249 -2.320 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 62 hirs3_n17 3 -0.106348E-01 + -1.546 -1.623 -1.563 -1.412 -1.372 -1.291 -1.335 -1.271 -1.322 -1.248 + -1.314 -1.269 -1.315 -1.236 -1.286 -1.221 -1.289 -1.252 -1.251 -1.253 + -1.259 -1.230 -1.304 -1.221 -1.287 -1.196 -1.236 -1.243 -1.261 -1.235 + -1.211 -1.202 -1.200 -1.210 -1.212 -1.169 -1.186 -1.213 -1.194 -1.175 + -1.170 -1.154 -1.220 -1.172 -1.175 -1.191 -1.192 -1.183 -1.200 -1.174 + -1.218 -1.200 -1.247 -1.281 -1.345 -1.383 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 63 hirs3_n17 4 0.236902E-01 + -0.359 -0.450 -0.372 -0.319 -0.215 -0.233 -0.155 -0.195 -0.094 -0.129 + -0.081 -0.131 -0.047 -0.111 -0.064 -0.107 -0.058 -0.070 -0.113 -0.079 + -0.070 -0.107 -0.059 -0.142 -0.049 -0.075 -0.083 -0.089 -0.057 -0.080 + -0.095 -0.074 -0.089 -0.054 -0.073 -0.084 -0.060 -0.050 -0.087 -0.054 + -0.064 -0.047 -0.053 -0.105 -0.090 -0.085 -0.115 -0.139 -0.157 -0.157 + -0.208 -0.228 -0.253 -0.279 -0.340 -0.352 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 64 hirs3_n17 5 0.409627E-01 + 0.464 0.374 0.468 0.417 0.458 0.454 0.474 0.463 0.461 0.489 + 0.526 0.456 0.444 0.450 0.508 0.448 0.446 0.402 0.435 0.429 + 0.463 0.452 0.506 0.402 0.467 0.456 0.471 0.460 0.466 0.441 + 0.434 0.438 0.462 0.404 0.485 0.440 0.487 0.423 0.460 0.410 + 0.492 0.545 0.441 0.500 0.552 0.446 0.507 0.461 0.494 0.470 + 0.501 0.491 0.515 0.537 0.582 0.664 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 65 hirs3_n17 6 0.460337E-01 + 0.618 0.500 0.631 0.508 0.521 0.564 0.553 0.564 0.505 0.597 + 0.624 0.546 0.474 0.546 0.596 0.545 0.502 0.447 0.663 0.532 + 0.559 0.662 0.585 0.622 0.551 0.565 0.619 0.552 0.559 0.527 + 0.625 0.539 0.625 0.489 0.620 0.624 0.575 0.513 0.671 0.491 + 0.567 0.936 0.528 0.611 0.773 0.520 0.739 0.557 0.598 0.557 + 0.642 0.625 0.657 0.711 0.814 0.977 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 66 hirs3_n17 7 0.397977E-01 + 0.938 0.806 1.048 0.744 0.699 0.883 0.803 0.863 0.662 1.013 + 0.945 0.934 0.606 0.907 0.908 0.879 0.703 0.588 1.240 0.756 + 0.884 1.144 0.933 1.162 0.847 0.990 1.092 0.902 0.863 0.816 + 1.123 0.830 1.116 0.680 1.039 1.031 0.907 0.691 1.143 0.596 + 0.810 1.764 0.641 0.897 1.405 0.644 1.476 0.721 0.859 0.712 + 0.941 0.831 0.881 0.965 1.091 1.285 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 67 hirs3_n17 8 0.932057E-02 + -0.306 -0.339 0.954 -0.282 -0.409 0.553 0.027 0.704 -0.250 1.648 + 1.171 1.434 -0.212 1.473 1.038 1.368 0.248 -0.010 2.579 0.495 + 1.376 2.428 1.444 2.409 0.882 1.984 2.439 1.512 0.996 1.046 + 2.219 0.830 2.634 0.192 2.004 2.109 1.663 0.101 2.234 -0.169 + 1.151 4.047 -0.178 1.418 3.068 -0.331 3.200 -0.268 0.065 -0.443 + 0.057 -0.413 -0.379 -0.465 -0.288 -0.196 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 68 hirs3_n17 9 -0.113027E-01 + -0.603 -0.710 -0.189 -0.761 -0.840 -0.461 -0.657 -0.415 -0.829 -0.100 + -0.194 -0.059 -0.816 -0.095 -0.265 -0.162 -0.571 -0.717 0.546 -0.451 + -0.044 0.350 0.024 0.374 -0.192 0.177 0.469 -0.016 -0.184 -0.232 + 0.325 -0.308 0.509 -0.591 0.250 0.222 0.010 -0.635 0.229 -0.795 + -0.302 1.117 -0.781 -0.100 0.668 -0.863 0.651 -0.791 -0.609 -0.833 + -0.562 -0.731 -0.692 -0.638 -0.502 -0.357 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 69 hirs3_n17 10 0.201644E-01 + 0.263 0.194 0.996 0.218 0.090 0.805 0.415 0.878 0.174 1.453 + 1.148 1.286 0.162 1.256 1.052 1.235 0.494 0.269 2.048 0.675 + 1.213 1.923 1.290 1.912 0.938 1.560 1.813 1.291 1.046 1.027 + 1.816 0.937 1.884 0.472 1.629 1.701 1.401 0.426 1.871 0.199 + 1.042 3.109 0.226 1.177 2.357 0.136 2.487 0.222 0.525 0.097 + 0.555 0.174 0.219 0.175 0.352 0.480 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 70 hirs3_n17 11 0.610442E-01 + 0.414 0.321 0.538 0.330 0.321 0.470 0.408 0.513 0.314 0.441 + 0.556 0.454 0.281 0.376 0.450 0.486 0.331 0.249 0.330 0.404 + 0.482 0.282 0.513 0.327 0.510 0.354 0.432 0.513 0.523 0.471 + 0.346 0.478 0.244 0.358 0.358 0.342 0.443 0.341 0.313 0.265 + 0.350 0.195 0.301 0.378 0.304 0.276 0.313 0.326 0.415 0.303 + 0.453 0.391 0.424 0.454 0.499 0.621 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 71 hirs3_n17 12 0.681002E-01 + 0.026 -0.136 0.036 0.118 0.197 0.086 0.141 0.039 0.129 -0.008 + 0.053 -0.066 0.062 -0.111 0.014 -0.118 -0.023 -0.074 -0.224 -0.084 + -0.076 -0.250 -0.076 -0.254 -0.030 -0.173 -0.176 -0.123 -0.038 -0.112 + -0.171 -0.071 -0.155 -0.070 -0.158 -0.188 -0.075 -0.075 -0.090 -0.039 + -0.043 -0.255 0.028 -0.083 -0.105 0.016 -0.146 0.070 0.108 0.110 + 0.174 0.167 0.231 0.191 0.277 0.296 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 72 hirs3_n17 13 0.329364E-01 + -0.985 -1.003 0.236 -0.975 -1.053 -0.217 -0.676 -0.033 -0.867 0.766 + 0.451 0.611 -0.813 0.611 0.338 0.532 -0.365 -0.623 1.392 -0.238 + 0.444 1.190 0.385 1.358 -0.073 0.889 1.208 0.506 0.031 0.092 + 1.113 -0.160 1.403 -0.712 0.889 1.032 0.611 -0.818 1.035 -1.005 + 0.183 2.392 -1.051 0.393 1.644 -1.166 1.752 -1.122 -0.939 -1.240 + -0.976 -1.223 -1.230 -1.223 -1.133 -0.983 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 73 hirs3_n17 14 0.441588E-01 + 0.053 -0.031 0.392 -0.130 -0.199 0.138 -0.078 0.177 -0.209 0.471 + 0.346 0.411 -0.236 0.425 0.286 0.390 -0.059 -0.184 0.808 0.012 + 0.345 0.669 0.336 0.736 0.116 0.534 0.686 0.366 0.157 0.189 + 0.672 0.093 0.746 -0.178 0.560 0.631 0.426 -0.199 0.618 -0.284 + 0.255 1.187 -0.289 0.342 0.838 -0.316 0.865 -0.265 -0.170 -0.299 + -0.146 -0.221 -0.192 -0.109 0.037 0.277 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 74 hirs3_n17 15 0.426750E-01 + -0.079 -0.170 0.074 -0.313 -0.397 -0.153 -0.359 -0.171 -0.477 0.021 + -0.114 -0.053 -0.540 -0.034 -0.186 -0.067 -0.433 -0.510 0.152 -0.368 + -0.162 0.083 -0.190 0.113 -0.338 -0.025 0.029 -0.150 -0.311 -0.269 + 0.032 -0.336 0.061 -0.531 -0.035 0.045 -0.120 -0.540 0.021 -0.588 + -0.214 0.402 -0.599 -0.124 0.181 -0.582 0.196 -0.533 -0.485 -0.527 + -0.441 -0.446 -0.422 -0.312 -0.194 0.057 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 75 hirs3_n17 16 0.406371E-01 + 1.625 1.556 1.300 1.409 1.366 1.238 1.342 1.222 1.291 1.207 + 1.176 1.182 1.245 1.208 1.156 1.157 1.195 1.214 1.233 1.199 + 1.094 1.154 1.120 1.160 1.168 1.131 1.166 1.106 1.133 1.145 + 1.132 1.161 1.231 1.179 1.147 1.248 1.105 1.213 1.182 1.211 + 1.085 1.453 1.214 1.205 1.345 1.263 1.448 1.294 1.245 1.313 + 1.322 1.402 1.407 1.575 1.698 2.020 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 76 hirs3_n17 17 0.241361E-01 + -0.631 -0.742 0.647 -0.748 -0.839 0.147 -0.431 0.321 -0.699 1.118 + 0.930 1.090 -0.678 1.077 0.700 0.878 -0.118 -0.472 1.880 0.008 + 0.901 1.581 0.866 1.792 0.359 1.341 1.737 0.962 0.484 0.565 + 1.739 0.300 2.002 -0.421 1.416 1.605 1.189 -0.531 1.720 -0.761 + 0.800 3.059 -0.768 0.980 2.362 -0.925 2.551 -0.894 -0.562 -1.000 + -0.603 -0.978 -0.882 -0.964 -0.733 -0.619 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 77 hirs3_n17 18 0.540608E-02 + -0.346 -0.362 1.289 -0.320 -0.408 0.712 0.063 0.899 -0.235 2.096 + 1.626 1.814 -0.179 2.005 1.334 1.528 0.391 0.078 3.199 0.560 + 1.700 2.541 1.605 2.735 0.995 2.391 2.941 1.874 1.204 1.280 + 2.737 1.003 3.074 0.165 2.332 2.613 2.178 0.030 3.192 -0.233 + 1.542 4.951 -0.236 2.108 3.804 -0.421 4.249 -0.352 -0.007 -0.490 + 0.014 -0.514 -0.418 -0.547 -0.336 -0.262 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 78 hirs3_n17 19 0.490168E-02 + -0.130 -0.142 1.733 -0.049 -0.187 1.039 0.330 1.139 -0.022 1.992 + 1.828 1.840 0.001 1.867 1.339 1.591 0.569 0.226 3.102 0.657 + 1.557 2.747 1.534 2.870 1.039 2.260 2.851 1.730 1.210 1.251 + 2.787 1.003 3.095 0.270 2.202 2.652 1.948 0.153 3.147 -0.077 + 1.342 4.223 -0.080 2.009 3.714 -0.266 3.916 -0.198 0.106 -0.332 + 0.115 -0.385 -0.325 -0.434 -0.282 -0.253 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 79 amsua_n17 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 80 amsua_n17 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 81 amsua_n17 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 82 amsua_n17 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 83 amsua_n17 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 84 amsua_n17 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 85 amsua_n17 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 86 amsua_n17 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 87 amsua_n17 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 88 amsua_n17 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 89 amsua_n17 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 90 amsua_n17 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 91 amsua_n17 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 92 amsua_n17 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 93 amsua_n17 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 94 amsub_n17 1 0.802024E-02 + -2.884 -3.053 -2.869 -2.947 -2.748 -2.699 -2.445 -2.429 -2.277 -2.230 + -2.078 -1.944 -1.810 -1.722 -1.598 -1.471 -1.415 -1.322 -1.138 -1.117 + -1.017 -0.943 -0.819 -0.737 -0.696 -0.641 -0.570 -0.468 -0.414 -0.319 + -0.238 -0.047 -0.007 0.097 0.039 0.064 0.179 0.219 0.260 0.286 + 0.302 0.372 0.357 0.445 0.303 0.366 0.447 0.484 0.454 0.326 + 0.348 0.283 0.249 0.213 0.222 0.144 0.157 0.071 -0.059 -0.185 + -0.329 -0.333 -0.395 -0.510 -0.553 -0.764 -0.804 -0.891 -0.977 -1.076 + -1.233 -1.334 -1.458 -1.632 -1.739 -1.822 -1.987 -2.133 -2.225 -2.331 + -2.434 -2.636 -2.662 -2.792 -2.899 -2.968 -3.096 -3.087 -3.210 -2.971 + + 95 amsub_n17 2 0.151307E-01 + -1.296 -1.204 -1.099 -1.062 -0.999 -0.989 -0.869 -0.757 -0.729 -0.716 + -0.637 -0.541 -0.467 -0.449 -0.387 -0.288 -0.276 -0.250 -0.181 -0.136 + -0.092 -0.067 -0.028 0.007 0.004 0.032 0.056 0.167 0.138 0.175 + 0.160 0.297 0.275 0.280 0.291 0.247 0.301 0.278 0.302 0.312 + 0.389 0.376 0.346 0.380 0.306 0.340 0.402 0.402 0.363 0.322 + 0.302 0.318 0.309 0.321 0.338 0.332 0.387 0.266 0.281 0.234 + 0.185 0.202 0.228 0.208 0.186 0.025 0.038 0.041 0.077 0.017 + -0.028 -0.074 -0.100 -0.148 -0.183 -0.247 -0.296 -0.401 -0.394 -0.453 + -0.498 -0.592 -0.628 -0.692 -0.717 -0.819 -0.946 -0.981 -1.060 -1.217 + + 96 amsub_n17 3 0.749811E-01 + -0.018 0.057 0.048 0.056 0.077 0.056 0.055 0.081 0.103 0.105 + 0.155 0.159 0.126 0.129 0.122 0.155 0.157 0.162 0.166 0.167 + 0.255 0.275 0.173 0.217 0.278 0.232 0.155 0.146 0.192 0.229 + 0.187 0.268 0.208 0.224 0.212 0.234 0.249 0.202 0.218 0.266 + 0.277 0.252 0.180 0.214 0.264 0.280 0.285 0.262 0.296 0.227 + 0.245 0.124 0.164 0.190 0.157 0.223 0.151 0.176 0.137 0.179 + 0.180 0.148 0.159 0.148 0.185 0.072 0.175 0.097 0.097 0.104 + 0.088 0.099 0.045 0.052 0.043 -0.027 0.111 0.025 0.043 -0.032 + 0.030 -0.016 -0.031 -0.002 -0.043 0.004 -0.099 -0.105 -0.120 -0.112 + + 97 amsub_n17 4 0.551816E-01 + -0.236 -0.116 -0.154 -0.033 -0.043 -0.053 -0.035 -0.031 -0.024 -0.007 + -0.040 -0.006 -0.071 -0.108 -0.169 -0.204 -0.256 -0.286 -0.345 -0.432 + -0.399 -0.396 -0.496 -0.479 -0.500 -0.606 -0.583 -0.670 -0.634 -0.595 + -0.608 -0.605 -0.609 -0.529 -0.571 -0.553 -0.617 -0.648 -0.654 -0.708 + -0.735 -0.773 -0.925 -0.887 -0.932 -0.865 -0.874 -0.849 -0.822 -0.821 + -0.756 -0.816 -0.823 -0.787 -0.729 -0.634 -0.649 -0.560 -0.531 -0.400 + -0.379 -0.309 -0.292 -0.234 -0.156 -0.106 -0.010 -0.067 -0.013 0.016 + 0.026 0.030 -0.059 0.027 -0.019 -0.050 -0.014 -0.058 -0.083 -0.166 + -0.151 -0.179 -0.182 -0.187 -0.206 -0.166 -0.251 -0.291 -0.319 -0.265 + + 98 amsub_n17 5 0.352967E-01 + -0.571 -0.474 -0.523 -0.359 -0.471 -0.402 -0.391 -0.572 -0.679 -0.655 + -0.821 -0.626 -0.595 -0.672 -0.358 -0.606 -0.513 -0.281 -0.375 -0.377 + -0.203 -0.184 -0.166 -0.252 -0.234 -0.263 -0.206 -0.081 -0.089 0.162 + -0.246 -0.148 -0.357 -0.062 0.047 -0.130 -0.118 -0.282 -0.262 -0.326 + -0.085 0.003 -0.358 -0.621 -0.663 -0.193 -0.386 -0.448 -0.568 -0.441 + -0.483 -0.559 -0.433 -0.317 -0.275 -0.081 -0.137 -0.171 -0.164 0.168 + 0.094 0.134 0.011 0.138 0.252 0.279 0.413 0.075 0.397 0.261 + 0.195 0.121 0.132 0.042 0.068 0.180 -0.045 -0.010 -0.005 -0.183 + 0.352 -0.256 -0.195 -0.214 0.021 -0.042 -0.101 0.042 0.052 -0.252 + + 99 hirs4_n18 1 -0.428968E-01 + 0.785 -0.507 -1.260 -0.623 1.255 -0.064 -0.765 -1.412 -0.228 -0.557 + -2.165 0.161 -0.289 -0.082 -0.714 -0.417 0.595 -0.535 0.128 -0.476 + 0.403 -1.057 -0.232 -0.667 -0.709 -0.145 -0.567 0.495 -0.489 0.317 + 0.223 -0.035 0.402 -0.375 0.917 -0.677 0.483 -0.423 0.037 -0.537 + -0.387 0.223 -0.512 0.227 -0.304 0.269 -0.097 -0.185 0.422 -0.338 + 0.443 -0.719 0.468 -0.721 -0.454 -0.741 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 100 hirs4_n18 2 -0.343690E-01 + -0.093 -0.015 -1.035 -0.491 -0.110 -1.083 -0.812 -1.063 -0.597 -0.805 + -1.258 -0.625 -0.660 -1.020 -1.127 -0.683 -0.892 -1.002 -1.038 -1.046 + -0.786 -1.481 -0.820 -0.982 -1.027 -1.027 -0.926 -0.746 -1.147 -1.073 + -0.956 -0.892 -1.312 -1.138 -0.811 -1.302 -1.021 -1.338 -0.731 -1.211 + -1.058 -0.956 -0.899 -1.015 -1.248 -0.956 -1.042 -1.014 -1.272 -1.046 + -0.949 -1.417 -1.029 -1.427 -0.959 -1.377 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 101 hirs4_n18 3 -0.160549E-01 + -0.407 -0.426 -0.717 -0.729 -0.772 -1.001 -0.830 -0.843 -0.920 -0.633 + -0.808 -0.644 -0.598 -0.837 -0.724 -0.821 -0.759 -0.893 -0.932 -0.996 + -0.969 -1.090 -0.927 -0.882 -0.972 -0.835 -0.812 -0.699 -0.847 -0.928 + -0.775 -0.888 -0.924 -1.009 -0.859 -1.032 -1.061 -1.077 -0.871 -0.952 + -0.999 -0.804 -0.758 -0.771 -0.875 -0.858 -0.739 -0.926 -0.889 -0.915 + -0.850 -1.049 -1.077 -1.051 -0.934 -1.104 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 102 hirs4_n18 4 0.304369E-01 + -0.608 -0.468 -0.506 -0.977 -0.920 -0.947 -0.827 -0.847 -1.106 -0.650 + -0.767 -0.811 -0.843 -0.751 -0.838 -0.911 -0.887 -0.967 -0.956 -1.172 + -0.985 -1.062 -1.137 -1.008 -1.076 -0.982 -1.075 -0.918 -1.075 -1.012 + -1.068 -0.976 -1.021 -1.174 -1.022 -1.112 -1.092 -1.149 -1.076 -1.006 + -1.092 -0.990 -0.970 -0.877 -1.112 -0.969 -0.967 -0.986 -1.015 -1.114 + -0.962 -1.162 -1.178 -1.177 -1.112 -1.194 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 103 hirs4_n18 5 0.387300E-01 + 0.218 0.010 -0.150 -0.076 -0.354 -0.261 -0.363 -0.354 -0.312 -0.391 + -0.350 -0.331 -0.248 -0.416 -0.253 -0.376 -0.295 -0.351 -0.405 -0.361 + -0.529 -0.469 -0.515 -0.462 -0.488 -0.516 -0.422 -0.506 -0.421 -0.545 + -0.341 -0.508 -0.438 -0.419 -0.474 -0.397 -0.541 -0.422 -0.460 -0.478 + -0.432 -0.431 -0.316 -0.487 -0.338 -0.478 -0.286 -0.439 -0.349 -0.310 + -0.415 -0.324 -0.469 -0.354 -0.403 -0.420 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 104 hirs4_n18 6 0.450657E-01 + 0.669 0.456 0.306 0.461 0.288 0.282 0.132 0.197 0.276 0.090 + 0.212 0.229 0.271 0.147 0.234 0.210 0.194 0.183 0.142 0.179 + 0.054 0.084 0.091 0.112 0.099 0.080 0.202 0.120 0.197 0.070 + 0.198 0.120 0.112 0.159 0.078 0.183 0.075 0.169 0.179 0.154 + 0.228 0.199 0.287 0.212 0.321 0.167 0.261 0.275 0.251 0.310 + 0.192 0.354 0.263 0.344 0.396 0.465 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 105 hirs4_n18 7 0.386419E-01 + -0.582 -0.374 -0.395 -0.588 -0.504 -0.266 -0.411 -0.380 -0.527 -0.346 + -0.291 -0.541 -0.430 -0.359 -0.411 -0.556 -0.494 -0.430 -0.500 -0.551 + -0.503 -0.379 -0.570 -0.481 -0.474 -0.457 -0.477 -0.499 -0.410 -0.411 + -0.461 -0.503 -0.452 -0.494 -0.548 -0.440 -0.465 -0.433 -0.521 -0.362 + -0.394 -0.425 -0.398 -0.403 -0.316 -0.421 -0.376 -0.320 -0.363 -0.415 + -0.422 -0.278 -0.364 -0.303 -0.310 -0.211 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 106 hirs4_n18 8 0.104661E-01 + -1.130 -0.952 -0.880 -0.849 -0.788 -0.724 -0.745 -0.689 -0.701 -0.672 + -0.599 -0.658 -0.635 -0.594 -0.574 -0.620 -0.530 -0.515 -0.483 -0.514 + -0.540 -0.417 -0.537 -0.476 -0.508 -0.452 -0.477 -0.485 -0.450 -0.412 + -0.463 -0.516 -0.444 -0.429 -0.485 -0.443 -0.417 -0.453 -0.548 -0.468 + -0.488 -0.518 -0.554 -0.550 -0.485 -0.570 -0.579 -0.574 -0.620 -0.674 + -0.707 -0.656 -0.729 -0.788 -0.850 -0.887 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 107 hirs4_n18 9 -0.104415E-01 + -1.162 -0.733 -0.965 -1.108 -1.024 -0.928 -0.856 -1.022 -0.961 -0.779 + -0.842 -0.922 -0.846 -0.751 -0.885 -0.867 -0.877 -0.761 -0.898 -0.903 + -0.854 -0.825 -0.801 -0.777 -0.788 -0.784 -0.778 -0.699 -0.770 -0.721 + -0.794 -0.653 -0.818 -0.805 -0.899 -0.803 -0.812 -0.900 -0.802 -0.841 + -0.786 -0.837 -0.786 -0.858 -0.873 -0.830 -0.880 -0.799 -0.941 -0.864 + -0.943 -0.837 -0.911 -0.898 -0.782 -0.937 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 108 hirs4_n18 10 0.223011E-01 + -0.263 -0.234 -0.186 -0.130 -0.036 0.010 -0.163 -0.081 -0.094 -0.132 + -0.085 -0.118 -0.134 -0.063 -0.101 -0.149 -0.084 -0.069 -0.045 -0.068 + -0.074 -0.006 -0.092 -0.049 -0.067 -0.032 -0.051 -0.066 -0.039 0.032 + -0.036 -0.129 -0.030 -0.026 -0.078 -0.015 0.019 0.023 -0.077 0.017 + 0.028 0.012 -0.037 -0.023 0.040 -0.025 -0.054 -0.008 -0.017 -0.048 + -0.080 0.019 -0.024 -0.043 -0.092 -0.041 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 109 hirs4_n18 11 0.593565E-01 + -0.941 -0.399 -0.243 -0.961 -0.736 -0.412 -0.348 -0.440 -0.759 -0.293 + -0.188 -0.725 -0.544 -0.362 -0.547 -0.687 -0.660 -0.547 -0.590 -0.843 + -0.577 -0.488 -0.684 -0.503 -0.520 -0.524 -0.524 -0.657 -0.468 -0.532 + -0.663 -0.521 -0.609 -0.751 -0.704 -0.572 -0.547 -0.666 -0.629 -0.430 + -0.513 -0.624 -0.494 -0.515 -0.544 -0.577 -0.612 -0.506 -0.614 -0.657 + -0.553 -0.540 -0.526 -0.535 -0.416 -0.364 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 110 hirs4_n18 12 0.779349E-01 + -0.237 0.364 -0.204 -1.220 -1.263 -0.778 -0.396 -1.292 -0.925 -0.197 + -0.773 -0.780 -0.741 -0.547 -0.870 -1.121 -0.840 -0.886 -1.105 -1.219 + -1.031 -1.370 -1.054 -0.896 -0.925 -0.919 -0.926 -0.779 -1.023 -1.019 + -0.985 -1.059 -1.135 -1.149 -1.063 -1.166 -1.115 -1.432 -0.709 -1.036 + -0.899 -0.758 -0.697 -0.850 -1.158 -0.928 -0.887 -1.112 -0.949 -0.831 + -0.819 -0.985 -0.827 -0.997 -0.470 -0.982 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 111 hirs4_n18 13 0.378690E-01 + 0.855 0.814 0.720 0.668 0.639 0.591 0.602 0.582 0.597 0.573 + 0.600 0.541 0.550 0.552 0.539 0.518 0.544 0.514 0.534 0.520 + 0.509 0.516 0.545 0.521 0.530 0.488 0.524 0.460 0.485 0.487 + 0.461 0.474 0.465 0.466 0.483 0.469 0.509 0.484 0.499 0.497 + 0.528 0.520 0.523 0.531 0.585 0.539 0.608 0.591 0.623 0.626 + 0.657 0.687 0.748 0.765 0.878 0.929 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 112 hirs4_n18 14 0.453616E-01 + 0.468 0.344 0.241 0.106 0.046 0.005 0.010 -0.036 -0.010 -0.052 + 0.003 -0.057 -0.032 -0.064 -0.028 -0.081 -0.063 -0.071 -0.057 -0.095 + -0.108 -0.116 -0.094 -0.146 -0.123 -0.158 -0.136 -0.181 -0.161 -0.138 + -0.145 -0.177 -0.161 -0.160 -0.116 -0.148 -0.093 -0.134 -0.099 -0.101 + -0.083 -0.087 -0.064 -0.079 -0.022 -0.066 -0.023 -0.050 -0.010 -0.035 + 0.010 0.028 0.093 0.091 0.216 0.298 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 113 hirs4_n18 15 0.435649E-01 + 1.616 1.452 1.295 1.116 1.086 1.014 0.993 0.911 0.957 0.888 + 0.935 0.885 0.899 0.833 0.872 0.823 0.833 0.792 0.815 0.763 + 0.791 0.760 0.779 0.724 0.745 0.716 0.757 0.713 0.735 0.698 + 0.757 0.705 0.738 0.721 0.778 0.745 0.783 0.766 0.830 0.805 + 0.841 0.827 0.880 0.846 0.917 0.870 0.940 0.927 0.976 0.959 + 1.054 1.031 1.140 1.153 1.343 1.423 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 114 hirs4_n18 16 0.391762E-01 + 0.288 -0.006 -0.167 -0.364 -0.392 -0.545 -0.581 -0.644 -0.614 -0.708 + -0.661 -0.720 -0.707 -0.819 -0.725 -0.791 -0.745 -0.830 -0.778 -0.864 + -0.817 -0.853 -0.804 -0.881 -0.854 -0.908 -0.852 -0.915 -0.832 -0.905 + -0.815 -0.882 -0.834 -0.864 -0.828 -0.826 -0.796 -0.831 -0.764 -0.790 + -0.710 -0.772 -0.684 -0.774 -0.647 -0.685 -0.600 -0.645 -0.564 -0.552 + -0.421 -0.441 -0.312 -0.291 -0.092 -0.022 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 115 hirs4_n18 17 0.240549E-01 + -1.819 -1.663 -1.606 -1.701 -1.573 -1.603 -1.559 -1.536 -1.440 -1.452 + -1.355 -1.377 -1.320 -1.370 -1.281 -1.277 -1.296 -1.227 -1.156 -1.239 + -1.199 -1.112 -1.201 -1.139 -1.189 -1.078 -1.151 -1.086 -1.041 -1.205 + -1.050 -1.065 -1.190 -1.133 -1.216 -1.179 -1.080 -1.196 -1.130 -1.111 + -1.193 -1.120 -1.131 -1.253 -1.151 -1.334 -1.241 -1.269 -1.221 -1.371 + -1.383 -1.318 -1.275 -1.240 -1.279 -1.306 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 116 hirs4_n18 18 0.554640E-02 + -1.933 -1.671 -1.568 -1.618 -1.461 -1.453 -1.384 -1.333 -1.234 -1.255 + -1.149 -1.156 -1.053 -1.101 -1.021 -0.985 -1.015 -0.964 -0.858 -0.946 + -0.927 -0.886 -0.900 -0.810 -0.861 -0.783 -0.801 -0.774 -0.752 -0.849 + -0.799 -0.744 -0.840 -0.794 -0.905 -0.876 -0.760 -0.895 -0.815 -0.856 + -0.904 -0.901 -0.902 -1.031 -0.881 -1.056 -1.038 -1.033 -1.021 -1.214 + -1.151 -1.174 -1.191 -1.128 -1.217 -1.366 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 117 hirs4_n18 19 0.591738E-02 + -1.703 -1.446 -1.335 -1.361 -1.197 -1.153 -1.080 -1.053 -0.951 -0.935 + -0.851 -0.883 -0.815 -0.847 -0.716 -0.765 -0.747 -0.713 -0.606 -0.697 + -0.657 -0.637 -0.647 -0.571 -0.690 -0.574 -0.577 -0.570 -0.555 -0.664 + -0.613 -0.534 -0.626 -0.563 -0.695 -0.672 -0.537 -0.711 -0.699 -0.627 + -0.678 -0.718 -0.711 -0.809 -0.746 -0.841 -0.826 -0.806 -0.869 -1.019 + -0.973 -0.993 -0.954 -0.967 -1.033 -1.139 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 118 amsua_n18 1 0.538378E-02 + -3.297 -3.155 -3.005 -2.899 -2.837 -2.710 -2.652 -2.560 -2.477 -2.416 + -2.337 -2.354 -2.311 -2.246 -2.236 -2.235 -2.230 -2.241 -2.202 -2.213 + -2.239 -2.323 -2.485 -2.615 -2.620 -2.616 -2.600 -2.527 -2.479 -2.467 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 119 amsua_n18 2 0.292679E-02 + -1.128 -1.316 -1.448 -1.632 -1.751 -1.775 -1.778 -1.757 -1.713 -1.648 + -1.610 -1.565 -1.532 -1.518 -1.489 -1.505 -1.490 -1.536 -1.568 -1.564 + -1.572 -1.647 -1.716 -1.725 -1.681 -1.575 -1.412 -1.192 -0.926 -0.569 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 120 amsua_n18 3 0.175421E-01 + -0.635 0.224 0.295 0.610 1.063 1.235 1.540 1.576 1.732 1.967 + 1.942 2.263 2.353 2.458 2.411 2.465 2.372 2.214 1.912 1.891 + 1.666 1.386 1.040 0.651 0.254 -0.360 -0.958 -1.581 -2.133 -3.084 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 121 amsua_n18 4 0.391857E-01 + -2.331 -2.249 -2.048 -1.781 -1.370 -0.989 -0.699 -0.523 -0.346 -0.167 + -0.037 0.097 0.187 0.253 0.279 0.284 0.244 0.169 0.063 -0.050 + -0.199 -0.360 -0.542 -0.736 -1.021 -1.488 -2.016 -2.419 -2.705 -2.901 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 122 amsua_n18 5 0.495958E-01 + -1.581 -1.713 -1.596 -1.469 -1.225 -0.992 -0.849 -0.754 -0.680 -0.592 + -0.530 -0.486 -0.457 -0.436 -0.412 -0.423 -0.438 -0.477 -0.517 -0.567 + -0.633 -0.735 -0.830 -0.963 -1.148 -1.477 -1.833 -2.034 -2.150 -2.193 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 123 amsua_n18 6 0.498400E-01 + -1.806 -1.815 -1.719 -1.691 -1.608 -1.506 -1.389 -1.329 -1.301 -1.269 + -1.264 -1.242 -1.234 -1.216 -1.219 -1.220 -1.227 -1.226 -1.234 -1.243 + -1.273 -1.287 -1.322 -1.350 -1.449 -1.644 -1.986 -2.016 -2.118 -2.204 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 124 amsua_n18 7 0.397731E-01 + -1.905 -1.911 -1.900 -1.907 -1.836 -1.763 -1.691 -1.706 -1.707 -1.694 + -1.708 -1.697 -1.698 -1.709 -1.718 -1.706 -1.747 -1.738 -1.755 -1.748 + -1.743 -1.752 -1.785 -1.795 -1.876 -2.036 -2.308 -2.362 -2.437 -2.525 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 125 amsua_n18 8 0.247122E-01 + -1.527 -1.607 -1.573 -1.496 -1.254 -1.105 -1.038 -1.001 -0.990 -0.972 + -0.956 -0.942 -0.941 -0.934 -0.937 -0.934 -0.945 -0.950 -0.964 -0.974 + -0.982 -1.022 -1.050 -1.103 -1.211 -1.462 -1.809 -1.976 -2.103 -2.198 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 126 amsua_n18 9 -0.129263E-01 + -1.222 -1.200 -1.204 -1.250 -1.214 -1.160 -1.093 -1.084 -1.062 -1.041 + -1.055 -1.038 -1.038 -1.025 -1.039 -1.062 -1.083 -1.113 -1.137 -1.167 + -1.199 -1.238 -1.303 -1.331 -1.406 -1.545 -1.741 -1.854 -1.964 -2.060 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 127 amsua_n18 10 -0.309217E-01 + -0.918 -0.856 -0.892 -0.935 -0.928 -0.860 -0.818 -0.803 -0.782 -0.772 + -0.772 -0.764 -0.758 -0.756 -0.767 -0.789 -0.807 -0.841 -0.877 -0.916 + -0.962 -1.004 -1.062 -1.106 -1.174 -1.307 -1.487 -1.618 -1.709 -1.805 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 128 amsua_n18 11 -0.447586E-01 + -1.195 -1.104 -1.107 -1.131 -1.098 -1.015 -0.961 -0.929 -0.894 -0.863 + -0.851 -0.834 -0.820 -0.822 -0.826 -0.843 -0.873 -0.905 -0.961 -0.999 + -1.052 -1.113 -1.190 -1.251 -1.341 -1.489 -1.689 -1.869 -2.006 -2.138 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 129 amsua_n18 12 -0.701949E-01 + -1.756 -1.586 -1.536 -1.518 -1.441 -1.331 -1.247 -1.194 -1.138 -1.099 + -1.066 -1.039 -1.013 -1.001 -1.006 -1.030 -1.058 -1.107 -1.172 -1.223 + -1.294 -1.372 -1.468 -1.556 -1.676 -1.854 -2.099 -2.339 -2.540 -2.759 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 130 amsua_n18 13 -0.903327E-01 + -3.262 -3.048 -2.980 -2.924 -2.832 -2.680 -2.580 -2.514 -2.434 -2.383 + -2.328 -2.280 -2.249 -2.227 -2.240 -2.259 -2.287 -2.343 -2.426 -2.503 + -2.590 -2.695 -2.805 -2.914 -3.063 -3.270 -3.556 -3.819 -4.064 -4.329 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 131 amsua_n18 14 -0.579322E-01 + -3.337 -3.379 -3.464 -3.525 -3.523 -3.466 -3.422 -3.424 -3.381 -3.379 + -3.339 -3.327 -3.322 -3.290 -3.308 -3.332 -3.349 -3.400 -3.487 -3.518 + -3.595 -3.658 -3.725 -3.792 -3.861 -3.990 -4.189 -4.306 -4.371 -4.358 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 132 amsua_n18 15 0.897746E-02 + 1.923 1.717 1.499 1.440 1.488 1.650 1.774 1.886 1.984 2.035 + 2.096 2.087 2.059 2.077 2.024 1.962 1.907 1.819 1.752 1.724 + 1.608 1.542 1.419 1.397 1.342 1.276 1.292 1.217 1.417 1.648 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 133 mhs_n18 1 0.878217E-02 + -1.035 -1.275 -1.264 -1.193 -1.184 -1.151 -1.073 -1.018 -0.859 -0.805 + -0.691 -0.472 -0.357 -0.287 -0.184 -0.082 0.023 0.113 0.150 0.171 + 0.247 0.397 0.365 0.476 0.491 0.539 0.634 0.674 0.778 0.853 + 0.829 0.962 1.007 1.052 1.108 1.124 1.208 1.270 1.241 1.407 + 1.377 1.419 1.458 1.445 1.508 1.411 1.501 1.324 1.363 1.349 + 1.300 1.238 1.168 1.099 1.032 1.013 0.943 0.904 0.861 0.826 + 0.781 0.676 0.587 0.531 0.507 0.382 0.341 0.352 0.180 0.203 + 0.109 0.063 -0.062 -0.083 -0.173 -0.279 -0.377 -0.404 -0.578 -0.739 + -0.895 -0.930 -1.131 -1.181 -1.298 -1.374 -1.511 -1.555 -1.608 -1.320 + + 134 mhs_n18 2 0.183324E-01 + -0.629 -0.580 -0.540 -0.430 -0.392 -0.367 -0.298 -0.266 -0.192 -0.172 + -0.121 -0.096 -0.061 -0.004 0.000 0.030 0.066 0.126 0.144 0.126 + 0.190 0.245 0.250 0.326 0.340 0.289 0.320 0.400 0.388 0.441 + 0.455 0.482 0.459 0.582 0.514 0.582 0.578 0.647 0.650 0.709 + 0.669 0.773 0.752 0.770 0.807 0.759 0.779 0.702 0.727 0.738 + 0.703 0.676 0.669 0.586 0.606 0.581 0.511 0.560 0.521 0.476 + 0.496 0.475 0.459 0.441 0.401 0.405 0.385 0.334 0.338 0.294 + 0.296 0.287 0.233 0.214 0.168 0.143 0.125 0.127 0.050 -0.008 + -0.016 -0.067 -0.115 -0.157 -0.183 -0.265 -0.357 -0.441 -0.452 -0.505 + + 135 mhs_n18 3 0.752610E-01 + 0.228 0.229 0.249 0.258 0.266 0.217 0.340 0.280 0.296 0.351 + 0.314 0.315 0.346 0.333 0.327 0.351 0.337 0.413 0.353 0.407 + 0.379 0.401 0.393 0.436 0.383 0.376 0.347 0.391 0.376 0.350 + 0.397 0.391 0.369 0.405 0.404 0.401 0.418 0.406 0.407 0.389 + 0.384 0.343 0.399 0.355 0.343 0.380 0.337 0.370 0.347 0.347 + 0.344 0.363 0.354 0.304 0.341 0.381 0.287 0.351 0.351 0.309 + 0.279 0.349 0.346 0.337 0.298 0.355 0.313 0.354 0.297 0.269 + 0.297 0.306 0.252 0.299 0.280 0.231 0.266 0.211 0.193 0.154 + 0.169 0.111 0.107 0.064 0.056 -0.010 -0.019 -0.004 -0.070 -0.060 + + 136 mhs_n18 4 0.555729E-01 + -0.471 -0.472 -0.445 -0.409 -0.403 -0.412 -0.331 -0.378 -0.358 -0.314 + -0.315 -0.339 -0.306 -0.282 -0.297 -0.271 -0.273 -0.217 -0.289 -0.236 + -0.266 -0.266 -0.243 -0.221 -0.229 -0.243 -0.249 -0.227 -0.264 -0.281 + -0.232 -0.235 -0.257 -0.195 -0.254 -0.244 -0.243 -0.239 -0.205 -0.243 + -0.225 -0.232 -0.234 -0.284 -0.298 -0.238 -0.276 -0.261 -0.280 -0.256 + -0.301 -0.276 -0.271 -0.313 -0.257 -0.217 -0.321 -0.291 -0.282 -0.298 + -0.338 -0.268 -0.257 -0.288 -0.309 -0.258 -0.313 -0.283 -0.307 -0.344 + -0.338 -0.308 -0.360 -0.323 -0.347 -0.372 -0.361 -0.394 -0.417 -0.478 + -0.469 -0.505 -0.534 -0.570 -0.611 -0.647 -0.674 -0.689 -0.766 -0.793 + + 137 mhs_n18 5 0.380587E-01 + -0.671 -0.626 -0.590 -0.528 -0.505 -0.509 -0.443 -0.469 -0.432 -0.409 + -0.370 -0.405 -0.401 -0.348 -0.379 -0.335 -0.351 -0.300 -0.340 -0.324 + -0.342 -0.350 -0.342 -0.296 -0.297 -0.328 -0.373 -0.318 -0.352 -0.384 + -0.366 -0.352 -0.406 -0.308 -0.410 -0.354 -0.389 -0.398 -0.377 -0.372 + -0.390 -0.330 -0.390 -0.405 -0.417 -0.363 -0.431 -0.380 -0.399 -0.393 + -0.395 -0.391 -0.379 -0.427 -0.378 -0.344 -0.414 -0.388 -0.392 -0.380 + -0.386 -0.343 -0.291 -0.306 -0.328 -0.283 -0.302 -0.309 -0.294 -0.328 + -0.321 -0.307 -0.309 -0.333 -0.326 -0.341 -0.339 -0.351 -0.378 -0.435 + -0.419 -0.457 -0.490 -0.513 -0.545 -0.579 -0.637 -0.660 -0.712 -0.784 + + 138 hirs4_metop-a 1 -0.428165E-01 + -3.448 -3.364 -3.483 -3.248 -3.281 -3.359 -3.317 -3.239 -3.304 -3.129 + -3.247 -3.058 -3.206 -3.257 -3.342 -3.162 -3.257 -3.124 -3.284 -3.102 + -3.129 -3.156 -3.152 -3.092 -3.169 -2.976 -3.123 -2.956 -3.087 -3.182 + -3.287 -3.129 -3.165 -3.067 -3.274 -3.090 -3.099 -3.207 -3.257 -3.174 + -3.200 -3.062 -3.240 -3.063 -3.128 -3.280 -3.440 -3.274 -3.229 -3.218 + -3.446 -3.246 -3.203 -3.408 -3.502 -3.491 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 139 hirs4_metop-a 2 -0.335040E-01 + -0.929 -0.955 -0.905 -0.835 -0.852 -0.894 -0.820 -0.879 -0.890 -0.843 + -0.886 -0.896 -0.862 -0.855 -0.856 -0.863 -0.883 -0.901 -0.870 -0.843 + -0.868 -0.900 -0.828 -0.920 -0.942 -0.861 -0.905 -0.954 -0.927 -0.865 + -0.876 -0.895 -0.945 -0.897 -0.873 -0.868 -0.920 -0.872 -0.827 -0.931 + -0.981 -0.823 -0.907 -0.955 -0.946 -0.824 -0.874 -0.914 -0.961 -0.875 + -0.908 -0.904 -0.954 -0.925 -0.968 -1.139 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 140 hirs4_metop-a 3 -0.153444E-01 + -0.800 -0.815 -0.782 -0.817 -0.793 -0.785 -0.811 -0.808 -0.753 -0.811 + -0.808 -0.796 -0.789 -0.819 -0.768 -0.801 -0.783 -0.781 -0.767 -0.827 + -0.793 -0.787 -0.827 -0.836 -0.774 -0.831 -0.829 -0.825 -0.820 -0.846 + -0.799 -0.828 -0.809 -0.828 -0.783 -0.840 -0.815 -0.819 -0.832 -0.842 + -0.793 -0.854 -0.828 -0.833 -0.845 -0.873 -0.810 -0.852 -0.850 -0.861 + -0.812 -0.896 -0.899 -0.901 -0.944 -1.038 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 141 hirs4_metop-a 4 0.211717E-01 + -0.312 -0.362 -0.337 -0.330 -0.324 -0.348 -0.305 -0.296 -0.314 -0.287 + -0.261 -0.308 -0.287 -0.291 -0.305 -0.300 -0.295 -0.325 -0.305 -0.318 + -0.343 -0.371 -0.337 -0.350 -0.384 -0.358 -0.334 -0.390 -0.375 -0.364 + -0.377 -0.370 -0.352 -0.372 -0.354 -0.355 -0.358 -0.387 -0.344 -0.343 + -0.374 -0.346 -0.332 -0.373 -0.356 -0.360 -0.395 -0.382 -0.375 -0.414 + -0.420 -0.430 -0.458 -0.513 -0.519 -0.534 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 142 hirs4_metop-a 5 0.400027E-01 + 0.757 0.662 0.648 0.588 0.631 0.568 0.584 0.546 0.563 0.543 + 0.555 0.521 0.538 0.513 0.533 0.491 0.506 0.476 0.481 0.459 + 0.492 0.435 0.457 0.435 0.432 0.414 0.434 0.406 0.408 0.425 + 0.438 0.422 0.441 0.420 0.443 0.450 0.481 0.451 0.476 0.481 + 0.485 0.480 0.507 0.498 0.505 0.516 0.543 0.520 0.545 0.516 + 0.553 0.558 0.597 0.559 0.609 0.659 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 143 hirs4_metop-a 6 0.459337E-01 + 0.794 0.682 0.609 0.520 0.503 0.483 0.472 0.419 0.437 0.424 + 0.403 0.413 0.414 0.375 0.396 0.377 0.371 0.373 0.356 0.340 + 0.347 0.341 0.337 0.308 0.332 0.321 0.291 0.323 0.311 0.301 + 0.303 0.302 0.325 0.309 0.307 0.324 0.333 0.331 0.341 0.338 + 0.370 0.343 0.332 0.374 0.378 0.337 0.368 0.375 0.392 0.368 + 0.383 0.428 0.460 0.464 0.532 0.642 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 144 hirs4_metop-a 7 0.390220E-01 + 0.937 0.839 0.774 0.704 0.693 0.621 0.625 0.579 0.599 0.553 + 0.589 0.538 0.559 0.521 0.561 0.529 0.550 0.524 0.536 0.517 + 0.531 0.500 0.530 0.509 0.540 0.530 0.528 0.512 0.522 0.533 + 0.544 0.493 0.545 0.514 0.520 0.534 0.544 0.528 0.548 0.529 + 0.548 0.547 0.575 0.547 0.564 0.567 0.607 0.567 0.610 0.597 + 0.637 0.661 0.702 0.719 0.811 0.880 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 145 hirs4_metop-a 8 0.910199E-02 + -0.320 -0.245 -0.235 -0.232 -0.190 -0.189 -0.156 -0.144 -0.081 -0.120 + -0.032 -0.021 -0.018 0.009 0.065 0.080 0.100 0.129 0.155 0.125 + 0.152 0.157 0.162 0.200 0.232 0.203 0.201 0.215 0.186 0.256 + 0.215 0.142 0.215 0.160 0.143 0.179 0.157 0.132 0.079 0.062 + 0.066 0.020 0.033 -0.018 -0.045 -0.093 -0.083 -0.157 -0.155 -0.215 + -0.237 -0.297 -0.324 -0.364 -0.366 -0.425 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 146 hirs4_metop-a 9 -0.106425E-01 + -0.192 -0.233 -0.311 -0.360 -0.368 -0.408 -0.410 -0.444 -0.457 -0.466 + -0.434 -0.441 -0.450 -0.414 -0.400 -0.391 -0.395 -0.349 -0.377 -0.375 + -0.356 -0.339 -0.338 -0.352 -0.348 -0.328 -0.295 -0.321 -0.328 -0.308 + -0.321 -0.362 -0.317 -0.341 -0.358 -0.321 -0.345 -0.368 -0.386 -0.376 + -0.399 -0.405 -0.413 -0.415 -0.426 -0.457 -0.450 -0.467 -0.483 -0.453 + -0.436 -0.447 -0.410 -0.382 -0.355 -0.268 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 147 hirs4_metop-a 10 0.200746E-01 + 0.289 0.320 0.319 0.301 0.322 0.303 0.330 0.319 0.361 0.313 + 0.403 0.381 0.383 0.379 0.430 0.423 0.453 0.452 0.484 0.455 + 0.473 0.454 0.504 0.497 0.536 0.522 0.515 0.516 0.493 0.564 + 0.529 0.451 0.536 0.490 0.473 0.505 0.497 0.486 0.479 0.447 + 0.436 0.427 0.466 0.415 0.395 0.377 0.398 0.319 0.345 0.306 + 0.295 0.275 0.272 0.218 0.281 0.238 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 148 hirs4_metop-a 11 0.592654E-01 + 0.465 0.458 0.399 0.315 0.313 0.325 0.277 0.247 0.223 0.228 + 0.223 0.230 0.225 0.182 0.216 0.207 0.220 0.219 0.204 0.168 + 0.180 0.205 0.189 0.194 0.222 0.184 0.164 0.239 0.230 0.197 + 0.174 0.187 0.248 0.212 0.180 0.195 0.215 0.209 0.174 0.209 + 0.223 0.181 0.161 0.185 0.224 0.150 0.202 0.203 0.249 0.227 + 0.238 0.258 0.324 0.293 0.317 0.399 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 149 hirs4_metop-a 12 0.681334E-01 + 0.490 0.417 0.350 0.206 0.161 0.141 0.091 0.031 0.034 0.004 + -0.112 -0.063 -0.051 -0.112 -0.156 -0.152 -0.179 -0.163 -0.147 -0.224 + -0.246 -0.241 -0.237 -0.303 -0.233 -0.264 -0.363 -0.304 -0.253 -0.322 + -0.283 -0.241 -0.293 -0.241 -0.225 -0.271 -0.271 -0.275 -0.232 -0.222 + -0.207 -0.205 -0.245 -0.161 -0.127 -0.177 -0.104 -0.053 -0.093 -0.005 + 0.063 0.040 0.020 0.083 0.133 0.150 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 150 hirs4_metop-a 13 0.361863E-01 + 0.666 0.595 0.544 0.436 0.471 0.451 0.479 0.451 0.477 0.450 + 0.540 0.469 0.510 0.508 0.532 0.485 0.495 0.471 0.486 0.410 + 0.433 0.406 0.392 0.397 0.410 0.360 0.399 0.366 0.371 0.399 + 0.387 0.319 0.385 0.358 0.346 0.362 0.349 0.329 0.342 0.322 + 0.318 0.301 0.327 0.282 0.299 0.254 0.286 0.244 0.276 0.231 + 0.247 0.252 0.267 0.247 0.328 0.402 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 151 hirs4_metop-a 14 0.436112E-01 + 0.403 0.228 0.148 -0.011 -0.024 -0.081 -0.061 -0.126 -0.082 -0.142 + -0.073 -0.131 -0.092 -0.129 -0.085 -0.131 -0.113 -0.139 -0.106 -0.171 + -0.143 -0.164 -0.158 -0.188 -0.143 -0.207 -0.174 -0.199 -0.180 -0.189 + -0.177 -0.228 -0.166 -0.215 -0.196 -0.210 -0.195 -0.219 -0.193 -0.233 + -0.194 -0.238 -0.215 -0.246 -0.208 -0.276 -0.239 -0.275 -0.227 -0.299 + -0.259 -0.264 -0.217 -0.238 -0.132 -0.053 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 152 hirs4_metop-a 15 0.420040E-01 + 0.386 0.115 0.007 -0.215 -0.262 -0.348 -0.345 -0.447 -0.408 -0.475 + -0.411 -0.517 -0.464 -0.511 -0.479 -0.542 -0.522 -0.582 -0.528 -0.614 + -0.585 -0.619 -0.592 -0.655 -0.607 -0.669 -0.625 -0.688 -0.638 -0.659 + -0.638 -0.684 -0.622 -0.688 -0.636 -0.664 -0.641 -0.669 -0.612 -0.660 + -0.617 -0.647 -0.609 -0.647 -0.594 -0.647 -0.595 -0.628 -0.571 -0.651 + -0.569 -0.565 -0.514 -0.520 -0.368 -0.292 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 153 hirs4_metop-a 16 0.369580E-01 + 0.516 0.183 0.033 -0.227 -0.294 -0.469 -0.478 -0.639 -0.638 -0.749 + -0.679 -0.819 -0.747 -0.813 -0.782 -0.881 -0.848 -0.938 -0.882 -0.992 + -0.940 -1.018 -0.959 -1.049 -1.006 -1.090 -0.992 -1.103 -1.041 -1.048 + -1.022 -1.093 -1.005 -1.083 -1.022 -1.070 -1.012 -1.067 -0.969 -1.043 + -0.994 -1.013 -0.927 -0.983 -0.930 -0.958 -0.868 -0.905 -0.806 -0.853 + -0.739 -0.738 -0.631 -0.634 -0.443 -0.404 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 154 hirs4_metop-a 17 0.231714E-01 + 0.194 0.080 0.010 -0.116 -0.089 -0.143 -0.102 -0.111 -0.124 -0.171 + 0.001 -0.081 -0.052 -0.027 -0.002 -0.024 -0.005 -0.016 0.017 -0.031 + -0.013 -0.030 -0.053 -0.007 0.021 -0.047 0.011 -0.022 -0.004 0.004 + -0.003 -0.101 0.015 -0.065 -0.077 -0.025 -0.056 -0.102 -0.101 -0.116 + -0.137 -0.133 -0.122 -0.215 -0.166 -0.255 -0.205 -0.291 -0.249 -0.315 + -0.291 -0.321 -0.314 -0.349 -0.258 -0.215 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 155 hirs4_metop-a 18 0.523781E-02 + -0.095 -0.086 -0.107 -0.150 -0.070 -0.096 -0.038 -0.011 -0.017 -0.065 + 0.098 0.080 0.082 0.130 0.172 0.162 0.187 0.204 0.202 0.193 + 0.196 0.178 0.168 0.252 0.300 0.191 0.285 0.217 0.240 0.272 + 0.273 0.148 0.267 0.224 0.171 0.220 0.235 0.164 0.116 0.152 + 0.049 0.083 0.104 -0.026 0.039 -0.079 -0.037 -0.150 -0.089 -0.189 + -0.153 -0.283 -0.261 -0.339 -0.306 -0.396 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 156 hirs4_metop-a 19 0.503907E-02 + -0.029 0.054 0.067 0.040 0.112 0.103 0.150 0.186 0.200 0.123 + 0.304 0.276 0.251 0.317 0.326 0.351 0.350 0.340 0.359 0.351 + 0.351 0.310 0.328 0.364 0.391 0.336 0.405 0.366 0.341 0.364 + 0.391 0.257 0.401 0.336 0.298 0.305 0.318 0.260 0.236 0.241 + 0.172 0.188 0.191 0.098 0.158 0.039 0.087 -0.007 0.001 -0.061 + -0.029 -0.157 -0.158 -0.251 -0.247 -0.349 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 157 amsua_metop-a 1 0.544763E-02 + -3.599 -3.687 -3.579 -3.404 -3.215 -3.072 -2.892 -2.761 -2.652 -2.550 + -2.498 -2.433 -2.417 -2.372 -2.346 -2.355 -2.354 -2.336 -2.352 -2.410 + -2.477 -2.530 -2.737 -2.901 -2.918 -2.858 -2.822 -2.682 -2.577 -2.500 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 158 amsua_metop-a 2 0.294058E-02 + -1.996 -2.220 -2.237 -2.276 -2.252 -2.188 -2.080 -1.993 -1.903 -1.802 + -1.717 -1.616 -1.595 -1.540 -1.527 -1.533 -1.544 -1.578 -1.637 -1.694 + -1.776 -1.850 -1.959 -1.984 -1.969 -1.862 -1.684 -1.426 -1.130 -0.756 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 159 amsua_metop-a 3 0.175980E-01 + -1.742 -1.173 -0.789 -0.482 0.044 0.491 0.821 1.057 1.290 1.480 + 1.714 1.874 2.021 2.156 2.199 2.215 2.138 2.004 1.823 1.626 + 1.455 1.224 1.000 0.762 0.379 -0.142 -0.701 -1.221 -1.701 -2.458 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 160 amsua_metop-a 4 0.392856E-01 + -2.266 -2.175 -1.978 -1.725 -1.309 -0.952 -0.723 -0.553 -0.380 -0.234 + -0.075 0.046 0.132 0.205 0.244 0.253 0.202 0.119 0.030 -0.112 + -0.256 -0.436 -0.618 -0.804 -1.058 -1.474 -1.938 -2.328 -2.637 -2.873 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 161 amsua_metop-a 5 0.496861E-01 + -1.571 -1.648 -1.611 -1.498 -1.240 -1.035 -0.900 -0.822 -0.739 -0.665 + -0.605 -0.556 -0.522 -0.496 -0.484 -0.487 -0.500 -0.537 -0.575 -0.631 + -0.708 -0.795 -0.910 -1.019 -1.196 -1.476 -1.843 -2.054 -2.232 -2.355 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 162 amsua_metop-a 6 0.496222E-01 + -1.542 -1.503 -1.504 -1.521 -1.364 -1.233 -1.169 -1.141 -1.135 -1.124 + -1.084 -1.062 -1.046 -1.034 -1.045 -1.050 -1.052 -1.067 -1.086 -1.111 + -1.135 -1.186 -1.227 -1.290 -1.414 -1.643 -1.976 -2.198 -2.357 -2.471 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 163 amsua_metop-a 7 0.396478E-01 + -1.644 -1.657 -1.643 -1.625 -1.568 -1.457 -1.426 -1.412 -1.414 -1.433 + -1.419 -1.402 -1.403 -1.398 -1.395 -1.396 -1.400 -1.418 -1.433 -1.453 + -1.493 -1.521 -1.558 -1.634 -1.756 -1.974 -2.264 -2.487 -2.643 -2.719 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 164 amsua_metop-a 8 0.248453E-01 + -1.242 -1.309 -1.275 -1.241 -0.978 -0.843 -0.798 -0.796 -0.776 -0.782 + -0.742 -0.732 -0.730 -0.712 -0.716 -0.724 -0.727 -0.739 -0.748 -0.777 + -0.796 -0.835 -0.903 -0.920 -1.050 -1.257 -1.594 -1.817 -1.963 -2.078 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 165 amsua_metop-a 9 -0.128114E-01 + -0.954 -0.897 -0.918 -0.947 -0.849 -0.789 -0.771 -0.781 -0.762 -0.747 + -0.710 -0.690 -0.678 -0.664 -0.659 -0.663 -0.685 -0.703 -0.728 -0.764 + -0.808 -0.868 -0.955 -1.013 -1.101 -1.250 -1.457 -1.626 -1.750 -1.888 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 166 amsua_metop-a 10 -0.303968E-01 + -0.575 -0.529 -0.588 -0.617 -0.539 -0.491 -0.472 -0.475 -0.466 -0.433 + -0.409 -0.385 -0.359 -0.334 -0.330 -0.338 -0.355 -0.387 -0.432 -0.477 + -0.537 -0.596 -0.653 -0.707 -0.781 -0.920 -1.134 -1.285 -1.391 -1.517 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 167 amsua_metop-a 11 -0.444821E-01 + -0.852 -0.778 -0.780 -0.802 -0.705 -0.632 -0.594 -0.583 -0.565 -0.520 + -0.487 -0.445 -0.415 -0.387 -0.378 -0.384 -0.404 -0.438 -0.482 -0.546 + -0.608 -0.677 -0.756 -0.819 -0.909 -1.069 -1.317 -1.482 -1.626 -1.801 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 168 amsua_metop-a 12 -0.688216E-01 + -1.614 -1.446 -1.391 -1.359 -1.227 -1.116 -1.045 -1.005 -0.953 -0.894 + -0.858 -0.798 -0.749 -0.719 -0.705 -0.714 -0.734 -0.772 -0.830 -0.912 + -0.986 -1.072 -1.186 -1.278 -1.394 -1.600 -1.887 -2.111 -2.322 -2.579 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 169 amsua_metop-a 13 -0.897015E-01 + -3.611 -3.400 -3.317 -3.256 -3.096 -2.956 -2.861 -2.796 -2.718 -2.633 + -2.586 -2.502 -2.450 -2.413 -2.386 -2.399 -2.420 -2.469 -2.546 -2.641 + -2.728 -2.850 -2.980 -3.105 -3.252 -3.485 -3.799 -4.067 -4.317 -4.607 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 170 amsua_metop-a 14 -0.594650E-01 + -3.502 -3.525 -3.609 -3.676 -3.596 -3.554 -3.499 -3.496 -3.462 -3.426 + -3.389 -3.318 -3.294 -3.254 -3.225 -3.250 -3.255 -3.291 -3.369 -3.437 + -3.503 -3.601 -3.659 -3.751 -3.813 -3.979 -4.188 -4.341 -4.420 -4.458 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 171 amsua_metop-a 15 0.906193E-02 + 1.101 0.830 0.783 0.843 1.031 1.274 1.500 1.681 1.837 1.987 + 2.064 2.151 2.180 2.220 2.237 2.218 2.233 2.165 2.165 2.095 + 2.055 2.018 1.995 1.958 1.931 1.904 1.842 1.929 2.126 2.349 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 172 mhs_metop-a 1 0.879687E-02 + -0.853 -1.130 -1.030 -1.098 -1.048 -0.958 -0.898 -0.834 -0.781 -0.630 + -0.544 -0.427 -0.221 -0.135 -0.101 -0.040 0.109 0.114 0.256 0.262 + 0.303 0.387 0.461 0.571 0.592 0.769 0.830 0.894 0.870 0.960 + 1.018 1.100 1.112 1.221 1.221 1.277 1.301 1.368 1.424 1.566 + 1.515 1.528 1.574 1.632 1.632 1.680 1.576 1.637 1.662 1.582 + 1.500 1.481 1.378 1.291 1.398 1.304 1.238 1.129 1.133 0.949 + 0.873 0.789 0.748 0.679 0.621 0.567 0.460 0.391 0.299 0.238 + 0.279 0.168 0.051 -0.029 -0.082 -0.196 -0.235 -0.398 -0.563 -0.647 + -0.816 -0.898 -1.052 -1.119 -1.225 -1.373 -1.522 -1.571 -1.626 -1.435 + + 173 mhs_metop-a 2 0.183793E-01 + -0.469 -0.446 -0.337 -0.314 -0.317 -0.223 -0.175 -0.222 -0.165 -0.101 + -0.094 -0.043 0.027 0.002 0.031 0.086 0.099 0.131 0.196 0.189 + 0.207 0.253 0.359 0.329 0.356 0.431 0.436 0.479 0.499 0.547 + 0.500 0.512 0.532 0.580 0.566 0.597 0.576 0.641 0.674 0.691 + 0.736 0.718 0.779 0.800 0.797 0.816 0.755 0.805 0.782 0.792 + 0.759 0.739 0.699 0.700 0.717 0.703 0.706 0.637 0.577 0.534 + 0.502 0.507 0.441 0.400 0.411 0.356 0.346 0.366 0.277 0.245 + 0.273 0.216 0.182 0.149 0.117 0.070 0.069 0.040 0.002 0.033 + -0.010 -0.091 -0.123 -0.191 -0.232 -0.381 -0.412 -0.502 -0.588 -0.661 + + 174 mhs_metop-a 3 0.754637E-01 + 0.238 0.224 0.268 0.247 0.247 0.267 0.306 0.186 0.228 0.285 + 0.241 0.256 0.369 0.281 0.281 0.302 0.308 0.300 0.299 0.330 + 0.297 0.353 0.369 0.367 0.338 0.383 0.376 0.408 0.379 0.366 + 0.344 0.364 0.344 0.326 0.303 0.257 0.274 0.306 0.274 0.263 + 0.292 0.298 0.270 0.330 0.319 0.292 0.308 0.318 0.302 0.261 + 0.365 0.369 0.393 0.302 0.412 0.392 0.340 0.375 0.315 0.269 + 0.316 0.299 0.288 0.249 0.278 0.245 0.253 0.241 0.255 0.199 + 0.252 0.216 0.166 0.218 0.218 0.152 0.196 0.185 0.170 0.190 + 0.199 0.124 0.132 0.149 0.094 -0.020 -0.010 -0.071 -0.154 -0.156 + + 175 mhs_metop-a 4 0.559885E-01 + -0.251 -0.240 -0.193 -0.191 -0.200 -0.177 -0.127 -0.246 -0.199 -0.156 + -0.189 -0.166 -0.069 -0.139 -0.131 -0.115 -0.112 -0.108 -0.125 -0.097 + -0.128 -0.074 -0.018 -0.023 -0.045 -0.005 -0.016 -0.012 -0.013 -0.026 + -0.054 -0.064 -0.090 -0.098 -0.127 -0.168 -0.149 -0.125 -0.140 -0.157 + -0.118 -0.151 -0.118 -0.087 -0.115 -0.143 -0.113 -0.107 -0.137 -0.156 + -0.065 -0.065 -0.005 -0.098 -0.042 -0.017 -0.085 -0.048 -0.115 -0.160 + -0.083 -0.132 -0.125 -0.160 -0.135 -0.169 -0.161 -0.136 -0.141 -0.229 + -0.160 -0.170 -0.227 -0.187 -0.163 -0.227 -0.205 -0.198 -0.225 -0.209 + -0.212 -0.259 -0.269 -0.272 -0.346 -0.437 -0.451 -0.499 -0.581 -0.620 + + 176 mhs_metop-a 5 0.380180E-01 + -0.511 -0.443 -0.408 -0.365 -0.363 -0.348 -0.302 -0.358 -0.300 -0.272 + -0.310 -0.258 -0.225 -0.247 -0.218 -0.170 -0.228 -0.192 -0.223 -0.194 + -0.217 -0.195 -0.140 -0.169 -0.161 -0.134 -0.169 -0.176 -0.147 -0.154 + -0.209 -0.256 -0.261 -0.285 -0.307 -0.300 -0.324 -0.274 -0.322 -0.361 + -0.267 -0.339 -0.277 -0.279 -0.290 -0.336 -0.279 -0.296 -0.347 -0.338 + -0.292 -0.277 -0.214 -0.275 -0.250 -0.214 -0.250 -0.232 -0.298 -0.272 + -0.208 -0.223 -0.231 -0.254 -0.220 -0.254 -0.213 -0.200 -0.199 -0.274 + -0.233 -0.223 -0.255 -0.232 -0.208 -0.280 -0.267 -0.202 -0.243 -0.247 + -0.258 -0.273 -0.284 -0.332 -0.388 -0.472 -0.492 -0.537 -0.616 -0.696 + + 177 iasi616_metop-a 16 -0.531173E-01 + -2.728 -2.651 -2.653 -2.713 -2.681 -2.705 -2.563 -2.628 -2.558 -2.580 + -2.613 -2.612 -2.536 -2.507 -2.468 -2.417 -2.539 -2.523 -2.547 -2.518 + -2.459 -2.495 -2.458 -2.423 -2.522 -2.433 -2.343 -2.524 -2.400 -2.354 + -2.406 -2.366 -2.381 -2.356 -2.374 -2.376 -2.481 -2.358 -2.357 -2.476 + -2.365 -2.465 -2.343 -2.384 -2.356 -2.287 -2.311 -2.274 -2.418 -2.287 + -2.328 -2.342 -2.316 -2.194 -2.338 -2.312 -2.293 -2.407 -2.244 -2.376 + -2.273 -2.240 -2.308 -2.254 -2.277 -2.293 -2.259 -2.333 -2.333 -2.312 + -2.280 -2.329 -2.243 -2.328 -2.160 -2.243 -2.210 -2.199 -2.272 -2.379 + -2.279 -2.350 -2.247 -2.194 -2.269 -2.344 -2.274 -2.331 -2.421 -2.308 + + 178 iasi616_metop-a 29 -0.454867E-01 + -1.668 -1.629 -1.541 -1.650 -1.593 -1.571 -1.570 -1.672 -1.696 -1.557 + -1.601 -1.750 -1.662 -1.522 -1.630 -1.711 -1.728 -1.641 -1.685 -1.693 + -1.755 -1.697 -1.674 -1.802 -1.804 -1.736 -1.984 -2.148 -1.915 -1.848 + -1.228 -1.309 -1.240 -1.152 -1.169 -1.288 -1.298 -1.226 -1.259 -1.274 + -1.191 -1.218 -1.178 -1.245 -1.285 -1.197 -1.112 -1.207 -1.226 -1.100 + -1.225 -1.346 -1.152 -1.144 -1.178 -1.265 -1.113 -1.106 -1.172 -1.188 + -1.183 -1.100 -1.154 -1.258 -1.149 -1.089 -1.155 -1.336 -1.243 -1.208 + -1.071 -1.215 -1.163 -1.148 -1.096 -1.165 -1.144 -1.122 -1.150 -1.164 + -1.132 -1.165 -1.177 -1.234 -1.237 -1.189 -1.161 -1.253 -1.222 -1.102 + + 179 iasi616_metop-a 32 -0.173928E-01 + -0.856 -0.912 -0.842 -0.853 -0.858 -0.837 -0.857 -0.896 -0.858 -0.892 + -0.925 -0.949 -0.972 -0.977 -0.957 -0.928 -0.971 -0.989 -0.977 -0.962 + -1.058 -1.062 -0.954 -0.998 -1.058 -1.059 -1.181 -1.193 -1.077 -1.154 + -0.606 -0.624 -0.598 -0.643 -0.606 -0.608 -0.649 -0.637 -0.565 -0.675 + -0.667 -0.707 -0.679 -0.683 -0.578 -0.590 -0.577 -0.682 -0.583 -0.688 + -0.640 -0.699 -0.619 -0.533 -0.747 -0.635 -0.607 -0.671 -0.610 -0.620 + -0.567 -0.553 -0.667 -0.669 -0.693 -0.513 -0.570 -0.725 -0.716 -0.582 + -0.710 -0.575 -0.589 -0.620 -0.511 -0.589 -0.593 -0.632 -0.571 -0.607 + -0.593 -0.599 -0.572 -0.615 -0.561 -0.540 -0.518 -0.556 -0.581 -0.598 + + 180 iasi616_metop-a 35 -0.459734E-01 + -0.847 -0.784 -0.880 -0.789 -0.775 -0.793 -0.855 -0.808 -0.680 -0.838 + -0.750 -0.709 -0.683 -0.789 -0.742 -0.670 -0.624 -0.708 -0.673 -0.613 + -0.703 -0.691 -0.725 -0.713 -0.640 -0.646 -0.675 -0.671 -0.601 -0.664 + -1.236 -1.371 -1.212 -1.142 -1.199 -1.320 -1.333 -1.240 -1.234 -1.221 + -1.207 -1.204 -1.223 -1.241 -1.141 -1.138 -1.155 -1.213 -1.206 -1.189 + -1.182 -1.176 -1.114 -1.055 -1.126 -1.199 -1.289 -1.168 -1.118 -1.316 + -1.220 -1.148 -1.168 -1.270 -1.222 -1.152 -1.092 -1.268 -1.156 -1.138 + -1.065 -1.221 -1.119 -1.134 -1.148 -1.120 -1.266 -1.243 -1.196 -1.089 + -1.217 -1.079 -1.170 -1.175 -1.143 -1.169 -1.140 -1.239 -1.320 -1.239 + + 181 iasi616_metop-a 38 -0.216160E-01 + -0.510 -0.586 -0.483 -0.477 -0.603 -0.534 -0.520 -0.547 -0.671 -0.646 + -0.682 -0.695 -0.777 -0.709 -0.711 -0.774 -0.833 -0.807 -0.772 -0.792 + -0.862 -0.805 -0.807 -0.815 -0.917 -0.919 -1.087 -1.124 -0.956 -0.991 + -0.324 -0.315 -0.314 -0.304 -0.256 -0.379 -0.398 -0.403 -0.366 -0.280 + -0.302 -0.315 -0.319 -0.380 -0.287 -0.374 -0.190 -0.360 -0.218 -0.318 + -0.284 -0.447 -0.388 -0.364 -0.250 -0.401 -0.354 -0.370 -0.291 -0.302 + -0.332 -0.250 -0.248 -0.398 -0.417 -0.358 -0.289 -0.378 -0.316 -0.393 + -0.442 -0.414 -0.268 -0.316 -0.303 -0.324 -0.426 -0.365 -0.260 -0.320 + -0.388 -0.300 -0.292 -0.386 -0.261 -0.276 -0.309 -0.315 -0.318 -0.251 + + 182 iasi616_metop-a 41 -0.461350E-01 + -0.529 -0.565 -0.625 -0.657 -0.514 -0.574 -0.578 -0.490 -0.513 -0.519 + -0.448 -0.468 -0.391 -0.520 -0.361 -0.393 -0.343 -0.440 -0.448 -0.400 + -0.395 -0.414 -0.378 -0.400 -0.325 -0.344 -0.356 -0.349 -0.329 -0.372 + -1.166 -1.276 -1.266 -1.161 -1.124 -1.217 -1.233 -1.184 -1.154 -1.118 + -1.142 -1.154 -1.125 -1.167 -1.197 -1.128 -1.082 -1.077 -1.212 -1.105 + -1.129 -1.186 -1.055 -1.078 -1.139 -1.136 -1.160 -1.119 -1.081 -1.144 + -1.215 -1.017 -1.081 -1.121 -1.158 -1.098 -1.171 -1.153 -1.188 -1.123 + -1.046 -1.206 -1.152 -1.148 -1.126 -1.135 -1.140 -1.051 -1.199 -1.199 + -1.170 -1.123 -1.143 -1.184 -1.180 -1.097 -1.142 -1.125 -1.202 -1.142 + + 183 iasi616_metop-a 44 -0.252579E-01 + -0.571 -0.602 -0.505 -0.580 -0.569 -0.558 -0.508 -0.659 -0.647 -0.616 + -0.651 -0.695 -0.704 -0.662 -0.676 -0.751 -0.790 -0.769 -0.752 -0.780 + -0.845 -0.754 -0.801 -0.821 -0.936 -0.887 -1.064 -1.096 -0.973 -0.950 + -0.284 -0.366 -0.383 -0.341 -0.292 -0.266 -0.372 -0.387 -0.261 -0.292 + -0.363 -0.378 -0.319 -0.338 -0.365 -0.317 -0.260 -0.324 -0.288 -0.361 + -0.412 -0.353 -0.338 -0.295 -0.386 -0.437 -0.308 -0.288 -0.271 -0.343 + -0.347 -0.396 -0.317 -0.443 -0.315 -0.226 -0.369 -0.395 -0.294 -0.332 + -0.426 -0.359 -0.379 -0.256 -0.332 -0.340 -0.316 -0.315 -0.311 -0.404 + -0.309 -0.252 -0.304 -0.438 -0.293 -0.336 -0.342 -0.283 -0.315 -0.234 + + 184 iasi616_metop-a 47 -0.463927E-01 + -0.569 -0.576 -0.617 -0.650 -0.515 -0.596 -0.574 -0.482 -0.417 -0.508 + -0.459 -0.444 -0.435 -0.454 -0.447 -0.435 -0.397 -0.454 -0.451 -0.392 + -0.395 -0.430 -0.414 -0.390 -0.351 -0.413 -0.381 -0.392 -0.374 -0.402 + -1.082 -1.054 -1.056 -1.031 -1.056 -1.040 -1.063 -1.056 -1.097 -1.046 + -1.009 -1.050 -1.094 -1.054 -1.090 -0.992 -1.116 -0.925 -1.006 -0.935 + -1.113 -1.025 -0.941 -0.980 -0.979 -1.009 -1.035 -1.014 -0.953 -0.951 + -1.000 -1.030 -0.964 -0.989 -1.041 -0.989 -0.984 -1.086 -0.931 -1.010 + -0.990 -1.072 -1.041 -1.017 -0.968 -1.058 -1.010 -0.992 -1.076 -1.076 + -0.996 -0.944 -1.012 -1.007 -1.066 -1.115 -0.992 -1.041 -1.098 -1.047 + + 185 iasi616_metop-a 49 -0.352385E-01 + -0.777 -0.813 -0.785 -0.773 -0.708 -0.795 -0.750 -0.808 -0.758 -0.772 + -0.806 -0.860 -0.826 -0.759 -0.793 -0.809 -0.797 -0.813 -0.803 -0.842 + -0.854 -0.800 -0.836 -0.831 -0.916 -0.871 -1.018 -1.067 -0.926 -0.865 + -0.423 -0.491 -0.385 -0.419 -0.409 -0.415 -0.450 -0.413 -0.378 -0.430 + -0.354 -0.458 -0.342 -0.392 -0.492 -0.348 -0.380 -0.388 -0.293 -0.291 + -0.433 -0.366 -0.271 -0.311 -0.341 -0.452 -0.367 -0.325 -0.422 -0.355 + -0.419 -0.406 -0.295 -0.420 -0.403 -0.430 -0.316 -0.408 -0.375 -0.386 + -0.408 -0.436 -0.311 -0.395 -0.379 -0.428 -0.331 -0.432 -0.396 -0.375 + -0.409 -0.406 -0.372 -0.430 -0.417 -0.381 -0.374 -0.492 -0.401 -0.435 + + 186 iasi616_metop-a 50 -0.265880E-01 + -0.412 -0.478 -0.422 -0.433 -0.372 -0.426 -0.437 -0.433 -0.423 -0.469 + -0.438 -0.429 -0.409 -0.429 -0.441 -0.433 -0.471 -0.424 -0.474 -0.452 + -0.482 -0.457 -0.533 -0.522 -0.490 -0.541 -0.583 -0.673 -0.535 -0.576 + -0.370 -0.473 -0.402 -0.432 -0.429 -0.431 -0.493 -0.379 -0.380 -0.370 + -0.358 -0.371 -0.356 -0.388 -0.475 -0.449 -0.383 -0.391 -0.363 -0.322 + -0.474 -0.425 -0.329 -0.367 -0.401 -0.477 -0.381 -0.326 -0.536 -0.397 + -0.419 -0.469 -0.402 -0.459 -0.448 -0.398 -0.374 -0.440 -0.440 -0.422 + -0.425 -0.473 -0.371 -0.422 -0.423 -0.372 -0.355 -0.384 -0.441 -0.390 + -0.432 -0.393 -0.361 -0.392 -0.447 -0.395 -0.354 -0.453 -0.368 -0.416 + + 187 iasi616_metop-a 51 -0.237071E-01 + -0.391 -0.442 -0.381 -0.361 -0.336 -0.367 -0.382 -0.375 -0.375 -0.427 + -0.374 -0.338 -0.333 -0.365 -0.315 -0.373 -0.370 -0.334 -0.367 -0.325 + -0.359 -0.366 -0.389 -0.365 -0.333 -0.415 -0.409 -0.456 -0.365 -0.411 + -0.266 -0.348 -0.321 -0.319 -0.284 -0.332 -0.359 -0.291 -0.277 -0.236 + -0.235 -0.220 -0.253 -0.266 -0.384 -0.362 -0.248 -0.238 -0.324 -0.226 + -0.395 -0.236 -0.303 -0.290 -0.353 -0.300 -0.286 -0.250 -0.422 -0.279 + -0.314 -0.383 -0.323 -0.362 -0.353 -0.311 -0.300 -0.347 -0.336 -0.327 + -0.288 -0.373 -0.300 -0.334 -0.307 -0.256 -0.251 -0.265 -0.318 -0.270 + -0.334 -0.364 -0.284 -0.311 -0.324 -0.296 -0.225 -0.320 -0.266 -0.279 + + 188 iasi616_metop-a 53 -0.460757E-01 + -0.545 -0.538 -0.577 -0.552 -0.463 -0.556 -0.571 -0.464 -0.418 -0.530 + -0.454 -0.470 -0.478 -0.429 -0.423 -0.480 -0.442 -0.445 -0.430 -0.459 + -0.416 -0.436 -0.492 -0.472 -0.412 -0.456 -0.482 -0.509 -0.436 -0.454 + -0.993 -0.973 -0.966 -0.931 -0.902 -0.982 -1.042 -0.871 -0.943 -0.990 + -0.939 -0.970 -1.013 -0.926 -0.923 -0.961 -1.019 -0.915 -0.941 -0.928 + -0.960 -0.961 -0.852 -0.931 -0.944 -0.909 -0.906 -0.964 -0.907 -0.962 + -0.934 -0.962 -0.979 -1.004 -0.956 -0.934 -0.919 -0.921 -0.983 -1.027 + -0.851 -0.992 -0.892 -0.946 -0.909 -0.831 -0.935 -1.015 -0.862 -0.948 + -0.938 -1.017 -0.952 -0.927 -0.888 -1.001 -0.979 -0.921 -1.037 -0.930 + + 189 iasi616_metop-a 55 -0.342279E-01 + -0.883 -0.902 -0.935 -0.935 -0.860 -0.849 -0.888 -0.974 -0.867 -0.841 + -0.867 -0.907 -0.852 -0.826 -0.845 -0.927 -0.859 -0.834 -0.902 -0.874 + -0.893 -0.837 -0.864 -0.955 -0.909 -0.930 -1.022 -1.073 -0.991 -0.940 + -0.579 -0.619 -0.532 -0.472 -0.518 -0.609 -0.581 -0.629 -0.458 -0.563 + -0.509 -0.493 -0.587 -0.563 -0.542 -0.522 -0.476 -0.578 -0.441 -0.502 + -0.541 -0.509 -0.462 -0.389 -0.502 -0.561 -0.523 -0.523 -0.512 -0.558 + -0.527 -0.544 -0.470 -0.630 -0.546 -0.532 -0.466 -0.551 -0.596 -0.556 + -0.476 -0.564 -0.480 -0.522 -0.517 -0.530 -0.593 -0.587 -0.521 -0.551 + -0.499 -0.479 -0.543 -0.561 -0.554 -0.497 -0.547 -0.586 -0.559 -0.494 + + 190 iasi616_metop-a 56 -0.256606E-01 + -0.477 -0.505 -0.503 -0.504 -0.475 -0.477 -0.521 -0.551 -0.520 -0.535 + -0.491 -0.502 -0.511 -0.539 -0.548 -0.559 -0.565 -0.579 -0.600 -0.583 + -0.609 -0.608 -0.635 -0.647 -0.590 -0.646 -0.774 -0.787 -0.726 -0.747 + -0.375 -0.422 -0.413 -0.386 -0.341 -0.446 -0.496 -0.522 -0.372 -0.475 + -0.411 -0.340 -0.486 -0.478 -0.452 -0.438 -0.351 -0.441 -0.408 -0.459 + -0.449 -0.414 -0.427 -0.324 -0.462 -0.446 -0.461 -0.474 -0.361 -0.455 + -0.472 -0.503 -0.382 -0.519 -0.443 -0.442 -0.317 -0.446 -0.495 -0.465 + -0.479 -0.462 -0.375 -0.529 -0.439 -0.421 -0.467 -0.507 -0.442 -0.474 + -0.372 -0.397 -0.419 -0.503 -0.400 -0.333 -0.430 -0.451 -0.379 -0.370 + + 191 iasi616_metop-a 57 -0.220208E-01 + -0.325 -0.400 -0.347 -0.342 -0.295 -0.319 -0.337 -0.366 -0.337 -0.348 + -0.330 -0.309 -0.331 -0.338 -0.353 -0.323 -0.364 -0.364 -0.371 -0.344 + -0.379 -0.385 -0.351 -0.361 -0.314 -0.389 -0.440 -0.468 -0.390 -0.465 + -0.240 -0.253 -0.289 -0.292 -0.223 -0.251 -0.382 -0.397 -0.234 -0.309 + -0.286 -0.252 -0.317 -0.291 -0.312 -0.368 -0.215 -0.200 -0.280 -0.361 + -0.289 -0.279 -0.339 -0.245 -0.319 -0.259 -0.296 -0.390 -0.213 -0.245 + -0.344 -0.377 -0.261 -0.362 -0.265 -0.363 -0.182 -0.265 -0.315 -0.360 + -0.342 -0.300 -0.246 -0.424 -0.273 -0.288 -0.319 -0.401 -0.319 -0.286 + -0.265 -0.321 -0.295 -0.369 -0.288 -0.266 -0.321 -0.242 -0.240 -0.278 + + 192 iasi616_metop-a 59 -0.437066E-01 + -0.449 -0.456 -0.506 -0.514 -0.456 -0.453 -0.458 -0.431 -0.389 -0.435 + -0.412 -0.399 -0.412 -0.423 -0.421 -0.381 -0.385 -0.353 -0.412 -0.401 + -0.376 -0.391 -0.399 -0.404 -0.288 -0.363 -0.414 -0.455 -0.365 -0.383 + -0.839 -0.969 -0.923 -0.952 -0.866 -0.834 -0.875 -0.846 -0.876 -0.812 + -0.951 -0.859 -0.803 -0.843 -0.896 -0.830 -0.828 -0.793 -0.822 -0.801 + -0.798 -0.840 -0.886 -0.759 -0.904 -0.890 -0.777 -0.828 -0.738 -0.846 + -0.857 -0.801 -0.776 -0.852 -0.862 -0.888 -0.830 -0.883 -0.875 -0.828 + -0.693 -0.867 -0.826 -0.886 -0.805 -0.845 -0.914 -0.884 -0.830 -0.880 + -0.912 -0.837 -0.838 -0.970 -0.815 -0.890 -0.913 -0.837 -0.875 -0.873 + + 193 iasi616_metop-a 61 -0.360940E-01 + -0.734 -0.718 -0.720 -0.782 -0.682 -0.646 -0.696 -0.748 -0.706 -0.683 + -0.706 -0.688 -0.698 -0.647 -0.707 -0.778 -0.730 -0.664 -0.757 -0.718 + -0.748 -0.684 -0.753 -0.762 -0.743 -0.710 -0.848 -0.934 -0.767 -0.805 + -0.393 -0.482 -0.353 -0.346 -0.360 -0.441 -0.361 -0.403 -0.341 -0.393 + -0.300 -0.324 -0.332 -0.387 -0.344 -0.276 -0.332 -0.356 -0.293 -0.306 + -0.310 -0.396 -0.371 -0.357 -0.355 -0.412 -0.387 -0.361 -0.358 -0.387 + -0.361 -0.392 -0.333 -0.319 -0.369 -0.329 -0.303 -0.413 -0.364 -0.334 + -0.310 -0.472 -0.356 -0.323 -0.286 -0.380 -0.411 -0.322 -0.383 -0.414 + -0.364 -0.383 -0.345 -0.397 -0.331 -0.374 -0.353 -0.380 -0.406 -0.314 + + 194 iasi616_metop-a 62 -0.278717E-01 + -0.461 -0.448 -0.471 -0.482 -0.409 -0.423 -0.448 -0.460 -0.422 -0.457 + -0.419 -0.438 -0.444 -0.467 -0.456 -0.458 -0.449 -0.478 -0.496 -0.465 + -0.465 -0.499 -0.544 -0.547 -0.488 -0.529 -0.595 -0.627 -0.562 -0.584 + -0.472 -0.524 -0.459 -0.455 -0.387 -0.497 -0.453 -0.489 -0.391 -0.472 + -0.368 -0.473 -0.394 -0.484 -0.461 -0.466 -0.422 -0.496 -0.438 -0.403 + -0.466 -0.482 -0.395 -0.530 -0.434 -0.474 -0.500 -0.430 -0.424 -0.469 + -0.437 -0.521 -0.448 -0.450 -0.493 -0.431 -0.402 -0.487 -0.446 -0.439 + -0.400 -0.521 -0.455 -0.399 -0.371 -0.469 -0.501 -0.486 -0.424 -0.484 + -0.424 -0.467 -0.467 -0.466 -0.460 -0.458 -0.394 -0.408 -0.468 -0.386 + + 195 iasi616_metop-a 63 -0.217266E-01 + -0.384 -0.412 -0.371 -0.392 -0.351 -0.402 -0.355 -0.417 -0.380 -0.392 + -0.356 -0.378 -0.376 -0.384 -0.380 -0.393 -0.400 -0.419 -0.417 -0.391 + -0.409 -0.406 -0.458 -0.437 -0.401 -0.453 -0.484 -0.502 -0.440 -0.486 + -0.365 -0.376 -0.388 -0.389 -0.297 -0.411 -0.378 -0.390 -0.371 -0.364 + -0.309 -0.379 -0.321 -0.352 -0.374 -0.509 -0.403 -0.435 -0.407 -0.415 + -0.388 -0.421 -0.313 -0.417 -0.386 -0.376 -0.441 -0.435 -0.357 -0.413 + -0.358 -0.439 -0.409 -0.395 -0.421 -0.391 -0.305 -0.464 -0.367 -0.341 + -0.358 -0.442 -0.375 -0.369 -0.342 -0.391 -0.444 -0.468 -0.361 -0.434 + -0.345 -0.413 -0.425 -0.402 -0.409 -0.445 -0.345 -0.322 -0.343 -0.388 + + 196 iasi616_metop-a 66 -0.411871E-01 + -0.526 -0.595 -0.584 -0.575 -0.528 -0.578 -0.514 -0.513 -0.460 -0.550 + -0.435 -0.455 -0.472 -0.442 -0.431 -0.423 -0.419 -0.444 -0.439 -0.389 + -0.401 -0.413 -0.470 -0.429 -0.334 -0.388 -0.437 -0.425 -0.352 -0.420 + -1.484 -1.521 -1.516 -1.570 -1.451 -1.624 -1.744 -1.526 -1.603 -1.630 + -1.636 -1.573 -1.577 -1.588 -1.749 -1.504 -1.611 -1.668 -1.762 -1.598 + -1.755 -1.679 -1.683 -1.705 -1.628 -1.769 -1.719 -1.735 -1.624 -1.693 + -1.682 -1.564 -1.693 -1.758 -1.703 -1.592 -1.635 -1.693 -1.735 -1.785 + -1.638 -1.689 -1.623 -1.634 -1.515 -1.656 -1.688 -1.517 -1.520 -1.554 + -1.579 -1.504 -1.564 -1.600 -1.459 -1.511 -1.528 -1.602 -1.537 -1.411 + + 197 iasi616_metop-a 68 -0.270868E-01 + -0.703 -0.685 -0.602 -0.713 -0.702 -0.643 -0.624 -0.744 -0.722 -0.745 + -0.800 -0.783 -0.764 -0.768 -0.760 -0.841 -0.838 -0.854 -0.795 -0.802 + -0.910 -0.867 -0.832 -0.805 -0.916 -0.903 -0.955 -0.993 -0.912 -0.936 + -0.395 -0.485 -0.441 -0.464 -0.454 -0.539 -0.600 -0.502 -0.425 -0.468 + -0.487 -0.511 -0.461 -0.470 -0.456 -0.442 -0.442 -0.477 -0.492 -0.512 + -0.460 -0.541 -0.436 -0.510 -0.531 -0.464 -0.474 -0.423 -0.515 -0.525 + -0.415 -0.431 -0.360 -0.491 -0.442 -0.478 -0.455 -0.528 -0.508 -0.514 + -0.344 -0.527 -0.477 -0.464 -0.431 -0.406 -0.441 -0.460 -0.369 -0.493 + -0.484 -0.502 -0.463 -0.516 -0.506 -0.428 -0.456 -0.471 -0.482 -0.454 + + 198 iasi616_metop-a 70 -0.325050E-01 + -0.760 -0.700 -0.828 -0.797 -0.654 -0.763 -0.718 -0.668 -0.609 -0.704 + -0.619 -0.590 -0.596 -0.623 -0.679 -0.584 -0.567 -0.604 -0.615 -0.524 + -0.560 -0.572 -0.623 -0.580 -0.532 -0.606 -0.584 -0.570 -0.527 -0.593 + -1.004 -1.004 -0.999 -1.034 -0.926 -1.024 -1.065 -1.035 -0.905 -0.964 + -0.935 -1.090 -0.960 -0.959 -1.014 -0.999 -0.861 -0.941 -0.999 -0.993 + -0.979 -0.978 -0.948 -0.941 -0.942 -0.945 -0.987 -1.024 -0.949 -0.964 + -0.975 -0.893 -0.926 -0.907 -0.977 -0.977 -0.952 -0.913 -1.009 -1.031 + -0.898 -0.884 -0.906 -1.038 -0.857 -0.842 -0.857 -0.911 -0.824 -0.910 + -1.011 -0.931 -0.919 -0.924 -1.012 -0.945 -0.906 -0.943 -1.009 -0.962 + + 199 iasi616_metop-a 72 -0.528418E-01 + -1.231 -1.220 -1.369 -1.377 -1.158 -1.286 -1.279 -1.258 -1.109 -1.250 + -1.169 -1.278 -1.130 -1.182 -1.250 -1.235 -1.154 -1.165 -1.235 -1.166 + -1.152 -1.158 -1.248 -1.242 -1.179 -1.193 -1.270 -1.279 -1.173 -1.154 + -2.009 -2.007 -1.924 -1.891 -1.914 -2.030 -1.938 -1.869 -1.926 -1.950 + -1.938 -1.923 -1.870 -1.880 -1.910 -1.831 -1.843 -1.889 -1.917 -1.728 + -1.962 -1.965 -1.795 -1.759 -1.870 -1.933 -1.853 -1.861 -1.750 -1.894 + -1.852 -1.753 -1.849 -1.794 -1.849 -1.730 -1.914 -1.856 -1.784 -1.814 + -1.866 -1.926 -1.807 -1.841 -1.774 -1.868 -1.749 -1.830 -1.832 -1.844 + -1.872 -1.859 -1.932 -1.864 -1.829 -1.933 -1.851 -1.958 -1.944 -1.835 + + 200 iasi616_metop-a 74 -0.393777E-01 + -1.489 -1.544 -1.487 -1.503 -1.514 -1.440 -1.453 -1.598 -1.547 -1.496 + -1.497 -1.584 -1.528 -1.415 -1.543 -1.610 -1.601 -1.536 -1.554 -1.631 + -1.647 -1.549 -1.569 -1.662 -1.729 -1.611 -1.924 -2.025 -1.691 -1.732 + -0.939 -0.980 -0.929 -0.880 -0.906 -1.016 -0.919 -0.840 -0.891 -0.894 + -0.852 -0.918 -0.863 -0.947 -0.835 -0.801 -0.873 -0.865 -0.880 -0.814 + -0.931 -0.904 -0.899 -0.790 -0.857 -0.901 -0.882 -0.871 -0.775 -0.877 + -0.878 -0.790 -0.846 -0.901 -0.874 -0.788 -0.854 -0.955 -0.819 -0.831 + -0.884 -0.913 -0.816 -0.746 -0.753 -0.793 -0.872 -0.815 -0.866 -0.851 + -0.874 -0.820 -0.845 -0.887 -0.868 -0.877 -0.901 -0.953 -0.992 -0.848 + + 201 iasi616_metop-a 76 -0.303677E-01 + -0.832 -0.850 -0.843 -0.839 -0.813 -0.854 -0.807 -0.829 -0.839 -0.844 + -0.783 -0.821 -0.864 -0.854 -0.872 -0.853 -0.909 -0.862 -0.871 -0.843 + -0.890 -0.884 -0.899 -0.901 -0.948 -0.943 -1.031 -1.030 -0.957 -0.957 + -0.569 -0.593 -0.591 -0.661 -0.588 -0.646 -0.652 -0.648 -0.578 -0.620 + -0.622 -0.616 -0.566 -0.622 -0.617 -0.590 -0.633 -0.552 -0.660 -0.554 + -0.575 -0.614 -0.584 -0.576 -0.650 -0.650 -0.553 -0.621 -0.551 -0.623 + -0.633 -0.596 -0.631 -0.704 -0.638 -0.611 -0.557 -0.688 -0.619 -0.627 + -0.606 -0.681 -0.601 -0.557 -0.522 -0.576 -0.605 -0.626 -0.652 -0.594 + -0.645 -0.631 -0.616 -0.615 -0.633 -0.708 -0.571 -0.656 -0.678 -0.578 + + 202 iasi616_metop-a 78 -0.424775E-01 + -0.765 -0.752 -0.838 -0.804 -0.775 -0.751 -0.792 -0.771 -0.713 -0.765 + -0.729 -0.755 -0.729 -0.703 -0.791 -0.737 -0.728 -0.707 -0.767 -0.731 + -0.741 -0.734 -0.790 -0.765 -0.746 -0.756 -0.814 -0.867 -0.763 -0.789 + -0.879 -0.904 -0.844 -0.902 -0.840 -0.913 -0.923 -0.890 -0.854 -0.826 + -0.891 -0.821 -0.892 -0.835 -0.900 -0.843 -0.838 -0.771 -0.873 -0.837 + -0.870 -0.906 -0.822 -0.723 -0.829 -0.859 -0.824 -0.859 -0.804 -0.827 + -0.875 -0.745 -0.846 -0.825 -0.843 -0.802 -0.874 -0.861 -0.835 -0.857 + -0.807 -0.824 -0.810 -0.808 -0.832 -0.772 -0.828 -0.807 -0.850 -0.847 + -0.851 -0.850 -0.832 -0.837 -0.845 -0.879 -0.840 -0.887 -0.923 -0.870 + + 203 iasi616_metop-a 79 -0.391146E-01 + -0.876 -0.834 -0.862 -0.878 -0.834 -0.799 -0.787 -0.851 -0.813 -0.775 + -0.814 -0.893 -0.845 -0.751 -0.859 -0.859 -0.835 -0.790 -0.843 -0.837 + -0.858 -0.796 -0.842 -0.873 -0.871 -0.847 -0.979 -1.027 -0.891 -0.904 + -0.610 -0.616 -0.506 -0.583 -0.553 -0.644 -0.684 -0.620 -0.591 -0.576 + -0.589 -0.561 -0.628 -0.565 -0.577 -0.545 -0.612 -0.518 -0.668 -0.560 + -0.648 -0.638 -0.565 -0.514 -0.568 -0.603 -0.525 -0.600 -0.568 -0.588 + -0.604 -0.561 -0.588 -0.596 -0.559 -0.554 -0.610 -0.601 -0.578 -0.617 + -0.564 -0.594 -0.581 -0.587 -0.546 -0.587 -0.580 -0.577 -0.638 -0.623 + -0.599 -0.603 -0.557 -0.671 -0.580 -0.654 -0.625 -0.656 -0.631 -0.598 + + 204 iasi616_metop-a 81 -0.386903E-01 + -0.766 -0.760 -0.791 -0.772 -0.726 -0.719 -0.748 -0.739 -0.734 -0.704 + -0.728 -0.745 -0.724 -0.701 -0.719 -0.742 -0.728 -0.696 -0.700 -0.702 + -0.698 -0.706 -0.785 -0.758 -0.716 -0.725 -0.830 -0.830 -0.770 -0.804 + -0.742 -0.730 -0.709 -0.708 -0.682 -0.699 -0.775 -0.733 -0.629 -0.744 + -0.799 -0.766 -0.685 -0.685 -0.675 -0.646 -0.710 -0.600 -0.710 -0.609 + -0.765 -0.639 -0.679 -0.687 -0.699 -0.765 -0.656 -0.718 -0.679 -0.654 + -0.696 -0.606 -0.671 -0.667 -0.659 -0.686 -0.639 -0.710 -0.660 -0.668 + -0.600 -0.698 -0.672 -0.676 -0.605 -0.677 -0.673 -0.679 -0.732 -0.718 + -0.681 -0.730 -0.664 -0.713 -0.695 -0.724 -0.655 -0.750 -0.755 -0.676 + + 205 iasi616_metop-a 82 -0.358180E-01 + -0.764 -0.785 -0.779 -0.802 -0.704 -0.733 -0.761 -0.791 -0.711 -0.752 + -0.750 -0.808 -0.739 -0.735 -0.771 -0.782 -0.787 -0.752 -0.772 -0.800 + -0.798 -0.807 -0.863 -0.844 -0.839 -0.849 -0.925 -0.904 -0.865 -0.893 + -0.662 -0.711 -0.573 -0.637 -0.618 -0.694 -0.657 -0.665 -0.589 -0.676 + -0.654 -0.596 -0.650 -0.659 -0.620 -0.623 -0.643 -0.565 -0.625 -0.507 + -0.654 -0.603 -0.620 -0.646 -0.674 -0.703 -0.595 -0.617 -0.590 -0.649 + -0.653 -0.594 -0.650 -0.667 -0.635 -0.643 -0.629 -0.666 -0.651 -0.628 + -0.574 -0.721 -0.636 -0.602 -0.584 -0.654 -0.574 -0.596 -0.616 -0.650 + -0.555 -0.657 -0.584 -0.637 -0.633 -0.637 -0.608 -0.687 -0.659 -0.599 + + 206 iasi616_metop-a 83 -0.340356E-01 + -0.677 -0.657 -0.649 -0.637 -0.586 -0.616 -0.620 -0.647 -0.587 -0.642 + -0.615 -0.671 -0.596 -0.600 -0.629 -0.658 -0.632 -0.654 -0.646 -0.661 + -0.684 -0.644 -0.713 -0.708 -0.700 -0.709 -0.806 -0.818 -0.745 -0.772 + -0.513 -0.548 -0.435 -0.449 -0.411 -0.508 -0.518 -0.559 -0.435 -0.500 + -0.443 -0.436 -0.554 -0.477 -0.498 -0.476 -0.459 -0.416 -0.484 -0.363 + -0.414 -0.396 -0.463 -0.442 -0.519 -0.538 -0.435 -0.416 -0.472 -0.494 + -0.465 -0.485 -0.479 -0.474 -0.466 -0.508 -0.476 -0.473 -0.446 -0.475 + -0.418 -0.582 -0.451 -0.486 -0.418 -0.443 -0.446 -0.522 -0.455 -0.474 + -0.376 -0.516 -0.488 -0.452 -0.463 -0.484 -0.472 -0.486 -0.484 -0.463 + + 207 iasi616_metop-a 84 -0.390012E-01 + -0.647 -0.647 -0.679 -0.670 -0.579 -0.605 -0.599 -0.611 -0.543 -0.619 + -0.581 -0.596 -0.553 -0.557 -0.593 -0.588 -0.529 -0.605 -0.571 -0.580 + -0.592 -0.551 -0.628 -0.637 -0.589 -0.624 -0.700 -0.714 -0.650 -0.652 + -0.595 -0.647 -0.540 -0.610 -0.504 -0.607 -0.593 -0.644 -0.525 -0.606 + -0.579 -0.556 -0.627 -0.573 -0.617 -0.610 -0.546 -0.505 -0.590 -0.518 + -0.503 -0.537 -0.581 -0.536 -0.609 -0.614 -0.510 -0.506 -0.547 -0.544 + -0.543 -0.609 -0.559 -0.550 -0.521 -0.646 -0.576 -0.538 -0.540 -0.523 + -0.503 -0.604 -0.588 -0.570 -0.563 -0.526 -0.592 -0.621 -0.590 -0.555 + -0.501 -0.571 -0.568 -0.547 -0.573 -0.611 -0.560 -0.608 -0.606 -0.594 + + 208 iasi616_metop-a 85 -0.363047E-01 + -0.569 -0.607 -0.588 -0.605 -0.540 -0.528 -0.556 -0.596 -0.546 -0.545 + -0.553 -0.584 -0.549 -0.510 -0.602 -0.609 -0.561 -0.594 -0.612 -0.610 + -0.625 -0.581 -0.653 -0.695 -0.638 -0.646 -0.810 -0.835 -0.727 -0.724 + -0.416 -0.488 -0.357 -0.392 -0.378 -0.423 -0.398 -0.397 -0.333 -0.431 + -0.372 -0.332 -0.468 -0.448 -0.448 -0.445 -0.384 -0.359 -0.412 -0.371 + -0.363 -0.390 -0.395 -0.328 -0.453 -0.466 -0.345 -0.306 -0.368 -0.416 + -0.358 -0.473 -0.400 -0.374 -0.387 -0.433 -0.404 -0.358 -0.374 -0.375 + -0.387 -0.422 -0.424 -0.421 -0.438 -0.415 -0.453 -0.420 -0.465 -0.465 + -0.329 -0.382 -0.450 -0.464 -0.416 -0.451 -0.415 -0.459 -0.456 -0.365 + + 209 iasi616_metop-a 86 -0.317946E-01 + -0.344 -0.403 -0.345 -0.360 -0.307 -0.349 -0.308 -0.359 -0.329 -0.353 + -0.349 -0.325 -0.368 -0.332 -0.378 -0.352 -0.375 -0.384 -0.412 -0.349 + -0.403 -0.395 -0.422 -0.443 -0.443 -0.456 -0.563 -0.589 -0.515 -0.515 + -0.148 -0.192 -0.135 -0.185 -0.128 -0.150 -0.216 -0.191 -0.092 -0.138 + -0.153 -0.111 -0.192 -0.190 -0.244 -0.232 -0.136 -0.110 -0.150 -0.193 + -0.168 -0.134 -0.237 -0.144 -0.171 -0.248 -0.110 -0.153 -0.165 -0.228 + -0.147 -0.307 -0.154 -0.169 -0.159 -0.238 -0.147 -0.167 -0.194 -0.187 + -0.206 -0.181 -0.207 -0.199 -0.168 -0.200 -0.252 -0.222 -0.235 -0.235 + -0.123 -0.163 -0.235 -0.240 -0.197 -0.231 -0.250 -0.163 -0.182 -0.163 + + 210 iasi616_metop-a 87 -0.346245E-01 + -0.383 -0.396 -0.435 -0.410 -0.277 -0.359 -0.335 -0.288 -0.245 -0.326 + -0.268 -0.231 -0.239 -0.253 -0.251 -0.255 -0.246 -0.249 -0.297 -0.202 + -0.245 -0.232 -0.281 -0.288 -0.257 -0.276 -0.353 -0.383 -0.281 -0.290 + -0.288 -0.259 -0.286 -0.324 -0.262 -0.211 -0.383 -0.327 -0.295 -0.263 + -0.293 -0.265 -0.362 -0.263 -0.350 -0.308 -0.301 -0.212 -0.263 -0.317 + -0.279 -0.203 -0.353 -0.211 -0.276 -0.316 -0.255 -0.329 -0.316 -0.293 + -0.319 -0.393 -0.279 -0.279 -0.231 -0.370 -0.290 -0.299 -0.318 -0.328 + -0.273 -0.294 -0.294 -0.338 -0.266 -0.286 -0.357 -0.342 -0.321 -0.334 + -0.303 -0.301 -0.340 -0.310 -0.322 -0.351 -0.365 -0.279 -0.303 -0.309 + + 211 iasi616_metop-a 89 -0.436421E-01 + -0.762 -0.696 -0.939 -0.910 -0.620 -0.755 -0.747 -0.664 -0.567 -0.670 + -0.624 -0.595 -0.542 -0.651 -0.615 -0.593 -0.594 -0.596 -0.626 -0.583 + -0.545 -0.554 -0.642 -0.628 -0.582 -0.545 -0.666 -0.709 -0.591 -0.593 + -1.417 -1.364 -1.305 -1.399 -1.353 -1.342 -1.359 -1.382 -1.291 -1.257 + -1.329 -1.371 -1.363 -1.261 -1.300 -1.293 -1.263 -1.240 -1.244 -1.266 + -1.306 -1.200 -1.219 -1.293 -1.265 -1.272 -1.234 -1.342 -1.263 -1.263 + -1.255 -1.293 -1.281 -1.257 -1.246 -1.339 -1.298 -1.285 -1.254 -1.334 + -1.243 -1.251 -1.279 -1.350 -1.324 -1.246 -1.332 -1.337 -1.310 -1.301 + -1.329 -1.373 -1.343 -1.263 -1.377 -1.412 -1.324 -1.329 -1.324 -1.376 + + 212 iasi616_metop-a 92 -0.148899E-01 + -1.413 -1.408 -1.528 -1.507 -1.442 -1.424 -1.594 -1.489 -1.458 -1.509 + -1.550 -1.551 -1.518 -1.528 -1.602 -1.597 -1.527 -1.542 -1.647 -1.677 + -1.673 -1.570 -1.779 -1.744 -1.703 -1.673 -1.889 -1.909 -1.817 -1.795 + -3.820 -3.870 -3.743 -4.142 -3.841 -4.036 -4.339 -3.976 -4.122 -4.002 + -3.913 -4.331 -4.277 -3.933 -4.069 -4.281 -3.990 -3.926 -4.215 -3.992 + -4.324 -4.386 -4.006 -4.064 -4.314 -4.340 -4.416 -3.780 -4.323 -4.366 + -4.076 -4.053 -4.314 -4.487 -4.212 -3.930 -3.824 -4.586 -4.276 -4.163 + -4.218 -4.356 -3.982 -4.064 -4.078 -3.987 -4.168 -4.002 -4.265 -4.510 + -4.132 -4.027 -3.936 -4.174 -3.665 -3.924 -3.791 -3.883 -3.972 -3.522 + + 213 iasi616_metop-a 93 -0.650288E-02 + -2.973 -3.147 -2.157 -2.427 -2.258 -2.572 -2.157 -2.612 -2.811 -2.681 + -2.278 -2.345 -1.625 -2.221 -2.265 -2.012 -2.274 -2.167 -1.146 -1.882 + -1.987 -1.695 -1.475 -1.536 -1.466 -2.018 -1.360 -1.693 -1.530 -1.451 + -0.023 0.176 0.116 -0.020 0.303 -0.053 0.130 0.077 0.096 -1.381 + 0.518 -0.042 -0.521 -0.216 -0.185 0.003 -0.216 -0.702 0.082 -0.298 + -0.179 -0.181 -0.204 -0.606 -0.059 -0.039 -0.676 -0.329 0.055 0.060 + -0.174 -0.397 -0.281 -0.628 -0.989 -0.094 0.135 -0.464 -0.004 -0.561 + -0.453 -0.566 0.078 -0.302 -0.274 -0.286 0.423 0.224 -0.158 -0.273 + -0.220 -0.170 -0.467 -0.354 -0.562 -0.148 -0.312 -0.017 -0.074 -0.161 + + 214 iasi616_metop-a 95 -0.405472E-01 + -1.905 -1.523 -1.933 -1.653 -2.321 -2.316 -1.995 -2.196 -2.255 -2.284 + -2.001 -2.227 -2.312 -2.150 -2.104 -2.128 -2.217 -2.513 -2.007 -1.953 + -2.145 -2.071 -2.191 -2.120 -2.024 -1.992 -1.850 -1.463 -1.854 -1.832 + -3.930 -3.911 -3.800 -3.956 -3.668 -4.031 -4.153 -3.947 -4.061 -4.057 + -3.787 -4.096 -3.866 -3.760 -3.776 -3.950 -3.740 -3.755 -4.050 -3.763 + -4.263 -4.067 -3.683 -3.806 -4.032 -4.103 -4.027 -3.767 -4.030 -4.024 + -3.859 -3.765 -4.030 -4.139 -3.987 -3.750 -3.846 -4.157 -3.983 -3.774 + -3.799 -4.077 -3.827 -3.761 -3.839 -3.701 -3.923 -3.948 -3.974 -3.989 + -3.897 -3.891 -3.866 -4.018 -3.613 -4.036 -3.859 -3.881 -3.926 -3.755 + + 215 iasi616_metop-a 97 -0.473214E-01 + -3.846 -3.837 -3.669 -3.640 -3.731 -3.773 -3.681 -3.707 -3.819 -3.666 + -3.649 -3.756 -3.598 -3.690 -3.636 -3.680 -3.652 -3.665 -3.455 -3.488 + -3.691 -3.462 -3.358 -3.368 -3.489 -3.461 -3.275 -3.187 -3.296 -3.266 + -3.456 -3.519 -3.396 -3.356 -3.351 -3.497 -3.464 -3.321 -3.423 -3.411 + -3.303 -3.341 -3.310 -3.250 -3.428 -3.310 -3.306 -3.127 -3.354 -3.215 + -3.488 -3.434 -3.205 -3.183 -3.364 -3.379 -3.349 -3.238 -3.384 -3.264 + -3.220 -3.108 -3.308 -3.417 -3.358 -3.164 -3.231 -3.407 -3.222 -3.179 + -3.115 -3.384 -3.322 -3.204 -3.214 -3.185 -3.317 -3.228 -3.369 -3.272 + -3.325 -3.346 -3.285 -3.355 -3.232 -3.389 -3.339 -3.425 -3.354 -3.397 + + 216 iasi616_metop-a 99 -0.492694E-01 + -3.460 -3.411 -3.388 -3.365 -3.441 -3.469 -3.441 -3.480 -3.365 -3.413 + -3.376 -3.469 -3.324 -3.397 -3.422 -3.371 -3.321 -3.386 -3.307 -3.291 + -3.364 -3.220 -3.270 -3.258 -3.282 -3.307 -3.351 -3.355 -3.245 -3.208 + -2.966 -2.992 -2.865 -2.898 -2.838 -2.915 -2.824 -2.787 -2.755 -2.860 + -2.741 -2.759 -2.722 -2.728 -2.815 -2.757 -2.709 -2.619 -2.694 -2.624 + -2.772 -2.701 -2.640 -2.566 -2.720 -2.723 -2.684 -2.688 -2.620 -2.588 + -2.680 -2.606 -2.636 -2.756 -2.619 -2.639 -2.594 -2.743 -2.627 -2.673 + -2.567 -2.749 -2.714 -2.756 -2.579 -2.596 -2.717 -2.763 -2.726 -2.699 + -2.811 -2.784 -2.721 -2.805 -2.798 -2.860 -2.830 -2.870 -2.911 -2.837 + + 217 iasi616_metop-a 101 -0.389827E-01 + -3.150 -3.170 -3.375 -3.267 -3.251 -3.204 -3.381 -3.265 -3.212 -3.279 + -3.331 -3.370 -3.322 -3.303 -3.405 -3.407 -3.267 -3.409 -3.451 -3.503 + -3.406 -3.395 -3.615 -3.562 -3.486 -3.490 -3.583 -3.561 -3.579 -3.527 + -4.254 -4.274 -4.203 -4.240 -4.105 -4.217 -4.360 -4.219 -4.182 -4.275 + -4.138 -4.170 -4.073 -4.104 -4.191 -4.161 -4.153 -4.056 -4.096 -4.012 + -4.335 -4.207 -3.993 -4.049 -4.254 -4.219 -4.165 -4.136 -4.258 -4.052 + -4.158 -4.022 -4.010 -4.292 -4.097 -4.065 -3.922 -4.181 -4.177 -4.102 + -3.871 -4.202 -4.138 -4.065 -3.939 -4.084 -4.188 -4.113 -4.047 -4.118 + -4.065 -4.051 -4.017 -4.150 -3.920 -4.055 -4.150 -4.249 -3.995 -4.110 + + 218 iasi616_metop-a 103 -0.300717E-01 + -3.342 -3.332 -3.263 -3.351 -2.980 -2.974 -2.989 -3.190 -2.815 -2.733 + -2.906 -2.971 -2.609 -2.615 -2.713 -2.686 -2.610 -2.529 -2.631 -2.620 + -2.623 -2.470 -2.500 -2.547 -2.579 -2.644 -3.039 -3.177 -2.645 -2.599 + -1.722 -1.749 -1.675 -1.640 -1.686 -1.748 -1.624 -1.549 -1.576 -1.632 + -1.489 -1.561 -1.622 -1.557 -1.559 -1.540 -1.443 -1.434 -1.495 -1.403 + -1.557 -1.518 -1.490 -1.402 -1.517 -1.545 -1.422 -1.429 -1.483 -1.470 + -1.483 -1.391 -1.408 -1.462 -1.396 -1.429 -1.417 -1.479 -1.520 -1.452 + -1.328 -1.539 -1.498 -1.458 -1.416 -1.470 -1.553 -1.534 -1.524 -1.539 + -1.583 -1.580 -1.565 -1.512 -1.565 -1.591 -1.538 -1.642 -1.644 -1.661 + + 219 iasi616_metop-a 104 -0.333354E-01 + -2.120 -2.065 -2.288 -2.276 -1.934 -1.950 -2.038 -2.039 -1.843 -1.852 + -1.995 -2.035 -1.861 -1.841 -1.967 -2.020 -1.923 -1.944 -2.063 -2.080 + -2.065 -1.984 -2.211 -2.203 -2.174 -2.153 -2.571 -2.600 -2.365 -2.334 + -1.202 -1.223 -1.235 -1.163 -1.161 -1.240 -1.108 -1.080 -1.068 -1.068 + -0.981 -1.039 -1.097 -1.031 -1.069 -1.063 -0.974 -0.958 -0.969 -0.943 + -1.042 -0.989 -1.002 -0.920 -0.981 -1.020 -0.933 -1.031 -0.992 -0.973 + -0.965 -0.939 -0.954 -0.966 -0.940 -0.978 -0.975 -1.005 -0.999 -0.961 + -0.906 -1.043 -0.958 -0.984 -0.928 -1.025 -1.051 -1.099 -1.052 -1.026 + -1.074 -1.097 -1.055 -1.090 -1.090 -1.092 -1.092 -1.146 -1.163 -1.178 + + 220 iasi616_metop-a 106 -0.445753E-01 + -1.212 -1.220 -1.286 -1.332 -1.285 -1.253 -1.365 -1.427 -1.331 -1.360 + -1.451 -1.505 -1.459 -1.393 -1.592 -1.600 -1.534 -1.531 -1.748 -1.753 + -1.735 -1.677 -1.989 -1.998 -1.936 -1.854 -2.424 -2.462 -2.229 -2.177 + -1.277 -1.197 -1.253 -1.192 -1.231 -1.178 -1.315 -1.262 -1.185 -1.164 + -1.230 -1.196 -1.173 -1.134 -1.180 -1.089 -1.223 -1.096 -1.238 -1.061 + -1.144 -1.245 -1.159 -1.062 -1.128 -1.131 -1.208 -1.090 -1.168 -1.167 + -1.217 -1.093 -1.151 -1.244 -1.189 -1.127 -1.158 -1.265 -1.153 -1.164 + -1.099 -1.237 -1.152 -1.172 -1.143 -1.188 -1.218 -1.185 -1.123 -1.233 + -1.190 -1.142 -1.194 -1.177 -1.169 -1.147 -1.108 -1.264 -1.196 -1.192 + + 221 iasi616_metop-a 109 -0.237413E-01 + -0.613 -0.649 -0.560 -0.626 -0.571 -0.514 -0.501 -0.660 -0.577 -0.572 + -0.566 -0.679 -0.621 -0.503 -0.563 -0.672 -0.681 -0.512 -0.602 -0.677 + -0.670 -0.601 -0.622 -0.699 -0.697 -0.642 -0.821 -0.910 -0.740 -0.616 + -0.333 -0.345 -0.322 -0.403 -0.301 -0.321 -0.421 -0.358 -0.247 -0.309 + -0.320 -0.358 -0.305 -0.396 -0.402 -0.350 -0.353 -0.288 -0.344 -0.290 + -0.379 -0.353 -0.342 -0.334 -0.288 -0.447 -0.354 -0.316 -0.296 -0.338 + -0.399 -0.330 -0.295 -0.453 -0.355 -0.289 -0.305 -0.379 -0.393 -0.399 + -0.295 -0.431 -0.357 -0.334 -0.304 -0.407 -0.335 -0.383 -0.283 -0.353 + -0.289 -0.342 -0.369 -0.380 -0.318 -0.317 -0.362 -0.360 -0.363 -0.321 + + 222 iasi616_metop-a 110 -0.262741E-01 + -0.256 -0.280 -0.249 -0.241 -0.247 -0.210 -0.205 -0.214 -0.227 -0.258 + -0.228 -0.271 -0.237 -0.221 -0.241 -0.277 -0.240 -0.241 -0.264 -0.269 + -0.294 -0.306 -0.367 -0.349 -0.303 -0.333 -0.467 -0.489 -0.385 -0.395 + -0.128 -0.132 -0.085 -0.218 -0.112 -0.103 -0.237 -0.196 -0.090 -0.099 + -0.088 -0.189 -0.133 -0.173 -0.194 -0.165 -0.156 -0.053 -0.188 -0.168 + -0.222 -0.174 -0.204 -0.204 -0.100 -0.213 -0.151 -0.200 -0.148 -0.142 + -0.211 -0.225 -0.159 -0.197 -0.191 -0.174 -0.163 -0.229 -0.230 -0.235 + -0.165 -0.273 -0.136 -0.157 -0.165 -0.222 -0.153 -0.225 -0.162 -0.175 + -0.120 -0.180 -0.221 -0.233 -0.195 -0.147 -0.206 -0.131 -0.140 -0.115 + + 223 iasi616_metop-a 111 -0.346959E-01 + -0.340 -0.385 -0.426 -0.406 -0.302 -0.339 -0.341 -0.226 -0.284 -0.318 + -0.238 -0.290 -0.249 -0.300 -0.259 -0.250 -0.231 -0.226 -0.231 -0.275 + -0.232 -0.242 -0.297 -0.277 -0.215 -0.250 -0.300 -0.327 -0.254 -0.261 + -0.703 -0.631 -0.597 -0.682 -0.591 -0.655 -0.660 -0.669 -0.528 -0.540 + -0.503 -0.651 -0.575 -0.571 -0.592 -0.572 -0.566 -0.501 -0.618 -0.577 + -0.658 -0.563 -0.556 -0.618 -0.547 -0.588 -0.569 -0.569 -0.592 -0.561 + -0.609 -0.638 -0.627 -0.514 -0.628 -0.615 -0.519 -0.617 -0.682 -0.629 + -0.556 -0.618 -0.576 -0.572 -0.527 -0.586 -0.548 -0.633 -0.615 -0.612 + -0.628 -0.618 -0.597 -0.657 -0.690 -0.686 -0.640 -0.585 -0.669 -0.642 + + 224 iasi616_metop-a 113 -0.457801E-01 + -0.708 -0.773 -0.871 -0.805 -0.797 -0.804 -0.878 -0.794 -0.775 -0.795 + -0.808 -0.816 -0.796 -0.806 -0.839 -0.875 -0.846 -0.798 -0.882 -0.875 + -0.854 -0.827 -0.923 -0.959 -0.870 -0.894 -1.011 -1.012 -0.923 -0.925 + -1.228 -1.279 -1.292 -1.162 -1.141 -1.264 -1.263 -1.123 -1.179 -1.191 + -1.122 -1.197 -1.231 -1.210 -1.146 -1.106 -1.173 -1.084 -1.157 -1.049 + -1.144 -1.199 -1.088 -1.108 -1.164 -1.190 -1.151 -1.086 -1.127 -1.188 + -1.208 -1.060 -1.202 -1.159 -1.137 -1.116 -1.072 -1.244 -1.185 -1.073 + -1.102 -1.257 -1.162 -1.170 -1.060 -1.175 -1.196 -1.099 -1.098 -1.220 + -1.135 -1.081 -1.197 -1.164 -1.152 -1.196 -1.203 -1.247 -1.195 -1.177 + + 225 iasi616_metop-a 116 -0.251236E-01 + -0.267 -0.336 -0.180 -0.239 -0.222 -0.264 -0.213 -0.349 -0.324 -0.305 + -0.319 -0.374 -0.365 -0.423 -0.324 -0.404 -0.487 -0.444 -0.498 -0.471 + -0.520 -0.484 -0.416 -0.473 -0.650 -0.571 -0.721 -0.772 -0.603 -0.634 + 0.038 -0.001 0.011 -0.051 -0.055 0.001 -0.079 -0.067 0.064 0.007 + -0.030 -0.070 -0.026 -0.022 -0.041 -0.131 -0.027 -0.091 -0.041 -0.001 + -0.069 -0.060 -0.080 -0.011 -0.098 -0.036 -0.058 -0.037 -0.001 -0.107 + -0.068 -0.104 -0.057 -0.099 -0.125 -0.131 -0.087 -0.162 -0.051 -0.106 + -0.060 -0.164 -0.048 -0.091 -0.111 -0.042 -0.112 -0.056 -0.071 -0.067 + 0.032 -0.019 -0.055 -0.101 -0.099 -0.070 -0.058 -0.009 -0.000 -0.003 + + 226 iasi616_metop-a 119 -0.473405E-01 + -0.213 -0.249 -0.302 -0.219 -0.151 -0.260 -0.231 -0.153 -0.139 -0.216 + -0.141 -0.094 -0.147 -0.152 -0.112 -0.141 -0.107 -0.167 -0.136 -0.119 + -0.138 -0.089 -0.170 -0.164 -0.083 -0.073 -0.174 -0.195 -0.114 -0.174 + -1.264 -1.327 -1.263 -1.218 -1.260 -1.328 -1.274 -1.166 -1.239 -1.190 + -1.194 -1.190 -1.218 -1.269 -1.292 -1.245 -1.138 -1.147 -1.207 -1.106 + -1.207 -1.291 -1.186 -1.162 -1.197 -1.300 -1.262 -1.180 -1.182 -1.267 + -1.276 -1.130 -1.227 -1.306 -1.218 -1.190 -1.239 -1.205 -1.201 -1.224 + -1.109 -1.268 -1.199 -1.234 -1.155 -1.197 -1.201 -1.230 -1.162 -1.270 + -1.205 -1.186 -1.219 -1.225 -1.212 -1.217 -1.199 -1.276 -1.262 -1.172 + + 227 iasi616_metop-a 122 -0.242789E-01 + -0.357 -0.382 -0.319 -0.344 -0.351 -0.373 -0.271 -0.497 -0.498 -0.422 + -0.451 -0.523 -0.491 -0.455 -0.450 -0.547 -0.590 -0.576 -0.594 -0.608 + -0.692 -0.578 -0.538 -0.634 -0.720 -0.727 -0.790 -0.882 -0.728 -0.714 + -0.035 -0.090 -0.056 -0.121 -0.114 -0.016 -0.155 -0.217 -0.056 -0.152 + -0.071 -0.097 -0.136 -0.113 -0.217 -0.137 -0.127 -0.098 -0.136 -0.195 + -0.160 -0.136 -0.135 -0.157 -0.119 -0.156 -0.145 -0.163 -0.108 -0.138 + -0.115 -0.198 -0.162 -0.220 -0.161 -0.233 -0.139 -0.188 -0.191 -0.158 + -0.104 -0.197 -0.154 -0.200 -0.089 -0.173 -0.192 -0.164 -0.128 -0.121 + -0.090 -0.159 -0.184 -0.197 -0.124 -0.126 -0.163 -0.125 -0.141 -0.124 + + 228 iasi616_metop-a 125 -0.480151E-01 + -0.267 -0.285 -0.271 -0.213 -0.168 -0.258 -0.268 -0.184 -0.138 -0.266 + -0.178 -0.147 -0.210 -0.213 -0.158 -0.141 -0.136 -0.179 -0.206 -0.103 + -0.151 -0.177 -0.225 -0.195 -0.130 -0.159 -0.210 -0.214 -0.169 -0.235 + -1.081 -1.088 -1.075 -1.107 -0.994 -1.123 -1.214 -1.024 -1.000 -1.093 + -1.205 -1.115 -1.159 -1.071 -1.235 -1.015 -1.065 -0.985 -1.006 -0.921 + -1.068 -1.088 -0.969 -0.979 -1.076 -1.166 -1.124 -0.943 -1.071 -1.013 + -1.092 -0.966 -1.059 -1.094 -1.058 -0.970 -1.043 -1.086 -1.125 -1.090 + -1.014 -1.106 -1.092 -1.099 -0.986 -1.039 -1.090 -1.047 -1.138 -1.128 + -1.048 -1.038 -1.037 -1.079 -1.081 -1.052 -1.038 -1.088 -1.070 -1.059 + + 229 iasi616_metop-a 128 -0.240870E-01 + -0.295 -0.310 -0.248 -0.307 -0.288 -0.306 -0.227 -0.424 -0.355 -0.280 + -0.344 -0.407 -0.385 -0.310 -0.335 -0.429 -0.475 -0.422 -0.403 -0.385 + -0.496 -0.392 -0.306 -0.462 -0.503 -0.525 -0.589 -0.631 -0.553 -0.482 + -0.027 -0.125 -0.089 -0.077 -0.041 -0.099 -0.131 -0.086 -0.078 -0.126 + -0.132 -0.067 -0.107 -0.127 -0.137 -0.083 -0.081 -0.125 -0.059 -0.094 + -0.171 -0.099 -0.067 -0.013 -0.121 -0.160 -0.137 -0.093 -0.076 -0.179 + -0.139 -0.130 -0.096 -0.134 -0.103 -0.135 -0.124 -0.162 -0.125 -0.109 + -0.092 -0.202 -0.102 -0.058 -0.099 -0.154 -0.170 -0.137 -0.099 -0.100 + -0.075 -0.075 -0.170 -0.162 -0.134 -0.052 -0.112 -0.124 -0.106 -0.090 + + 230 iasi616_metop-a 131 -0.415458E-01 + -0.168 -0.223 -0.123 -0.143 -0.107 -0.222 -0.176 -0.123 -0.138 -0.124 + -0.118 -0.119 -0.120 -0.159 -0.114 -0.085 -0.109 -0.127 -0.096 -0.084 + -0.127 -0.145 -0.180 -0.148 -0.096 -0.127 -0.196 -0.194 -0.119 -0.181 + -1.268 -1.061 -0.905 -1.362 -1.347 -0.819 -1.447 -1.378 -1.105 -1.195 + -1.239 -1.274 -1.037 -1.315 -0.710 -1.113 -1.399 -1.442 -0.961 -1.357 + -0.985 -1.012 -1.231 -1.327 -0.867 -1.231 -1.337 -1.268 -0.737 -1.410 + -1.203 -1.483 -1.434 -1.172 -1.248 -1.389 -1.306 -1.256 -1.047 -1.354 + -1.336 -1.169 -1.359 -1.433 -1.436 -1.343 -1.438 -1.305 -1.482 -1.425 + -1.435 -1.317 -1.395 -1.405 -1.166 -1.373 -1.314 -1.320 -1.353 -1.276 + + 231 iasi616_metop-a 133 -0.339847E-01 + -1.094 -1.071 -1.101 -1.100 -1.072 -1.103 -1.049 -1.147 -1.116 -1.134 + -1.090 -1.197 -1.209 -1.129 -1.174 -1.133 -1.191 -1.133 -1.178 -1.169 + -1.223 -1.146 -1.141 -1.115 -1.210 -1.151 -1.149 -1.139 -1.164 -1.127 + -1.357 -1.394 -1.376 -1.363 -1.339 -1.388 -1.489 -1.399 -1.363 -1.496 + -1.456 -1.387 -1.473 -1.484 -1.548 -1.438 -1.457 -1.461 -1.586 -1.431 + -1.582 -1.517 -1.517 -1.444 -1.613 -1.598 -1.551 -1.451 -1.590 -1.476 + -1.545 -1.453 -1.531 -1.581 -1.546 -1.446 -1.428 -1.609 -1.583 -1.483 + -1.417 -1.571 -1.514 -1.469 -1.429 -1.538 -1.493 -1.441 -1.472 -1.478 + -1.438 -1.331 -1.371 -1.440 -1.338 -1.276 -1.403 -1.405 -1.311 -1.259 + + 232 iasi616_metop-a 135 -0.240168E-01 + -0.346 -0.384 -0.283 -0.281 -0.364 -0.439 -0.363 -0.454 -0.484 -0.520 + -0.521 -0.606 -0.622 -0.545 -0.560 -0.603 -0.676 -0.689 -0.663 -0.635 + -0.729 -0.703 -0.673 -0.701 -0.765 -0.770 -0.882 -0.892 -0.803 -0.837 + -0.165 -0.121 -0.177 -0.146 -0.103 -0.119 -0.294 -0.229 -0.144 -0.129 + -0.253 -0.144 -0.168 -0.216 -0.192 -0.302 -0.173 -0.189 -0.208 -0.229 + -0.225 -0.185 -0.235 -0.184 -0.199 -0.241 -0.183 -0.198 -0.226 -0.220 + -0.234 -0.256 -0.202 -0.254 -0.250 -0.241 -0.227 -0.224 -0.244 -0.203 + -0.193 -0.242 -0.194 -0.225 -0.169 -0.129 -0.258 -0.225 -0.217 -0.199 + -0.216 -0.230 -0.194 -0.211 -0.160 -0.172 -0.254 -0.180 -0.147 -0.181 + + 233 iasi616_metop-a 138 -0.473136E-01 + -0.219 -0.351 -0.273 -0.202 -0.239 -0.262 -0.236 -0.224 -0.210 -0.236 + -0.198 -0.206 -0.176 -0.227 -0.201 -0.229 -0.164 -0.175 -0.228 -0.142 + -0.182 -0.196 -0.205 -0.230 -0.119 -0.112 -0.179 -0.198 -0.132 -0.166 + -1.143 -1.140 -1.110 -1.084 -1.110 -1.156 -1.154 -1.135 -1.106 -1.031 + -1.069 -1.099 -1.108 -1.023 -1.092 -1.105 -1.073 -1.015 -1.130 -0.936 + -1.083 -1.058 -1.087 -1.020 -1.143 -1.099 -1.096 -1.084 -1.139 -1.021 + -1.069 -1.037 -1.054 -1.130 -1.071 -1.007 -1.013 -1.066 -1.129 -0.972 + -1.041 -1.097 -1.057 -1.033 -1.000 -1.001 -1.078 -1.146 -1.025 -1.106 + -1.051 -1.066 -1.024 -1.068 -1.048 -1.124 -1.104 -1.089 -1.044 -1.017 + + 234 iasi616_metop-a 141 -0.212569E-01 + -0.379 -0.470 -0.298 -0.352 -0.349 -0.434 -0.300 -0.385 -0.500 -0.472 + -0.413 -0.551 -0.530 -0.490 -0.434 -0.515 -0.631 -0.541 -0.527 -0.529 + -0.589 -0.577 -0.478 -0.520 -0.685 -0.666 -0.616 -0.711 -0.635 -0.650 + -0.293 -0.315 -0.267 -0.332 -0.290 -0.345 -0.429 -0.398 -0.308 -0.292 + -0.348 -0.327 -0.387 -0.362 -0.389 -0.424 -0.332 -0.331 -0.345 -0.377 + -0.366 -0.321 -0.422 -0.401 -0.425 -0.409 -0.437 -0.356 -0.341 -0.385 + -0.425 -0.410 -0.373 -0.499 -0.399 -0.406 -0.349 -0.447 -0.466 -0.435 + -0.329 -0.404 -0.409 -0.345 -0.372 -0.371 -0.390 -0.419 -0.378 -0.313 + -0.376 -0.335 -0.360 -0.389 -0.354 -0.335 -0.355 -0.342 -0.296 -0.279 + + 235 iasi616_metop-a 144 -0.448907E-01 + -0.419 -0.444 -0.413 -0.376 -0.378 -0.356 -0.427 -0.299 -0.304 -0.397 + -0.329 -0.288 -0.299 -0.289 -0.272 -0.306 -0.250 -0.290 -0.260 -0.239 + -0.266 -0.259 -0.265 -0.299 -0.256 -0.249 -0.291 -0.284 -0.224 -0.276 + -1.140 -1.177 -1.192 -1.127 -1.167 -0.535 -1.271 -1.160 -1.103 -0.965 + -1.153 -1.150 -1.149 -0.943 -1.067 -1.242 -1.116 -1.013 -0.921 -1.121 + -1.123 -1.133 -1.148 -1.092 -1.184 -1.115 -1.073 -1.175 -1.080 -1.118 + -1.073 -1.096 -1.035 -1.086 -1.054 -1.049 -1.122 -1.155 -1.064 -1.146 + -1.092 -1.191 -1.104 -1.126 -1.109 -1.039 -1.089 -1.154 -1.172 -1.079 + -1.160 -1.083 -1.170 -1.091 -1.057 -1.084 -1.074 -1.240 -1.121 -1.141 + + 236 iasi616_metop-a 146 -0.286318E-01 + -0.857 -0.861 -0.853 -0.904 -0.793 -0.800 -0.767 -0.881 -0.800 -0.788 + -0.785 -0.912 -0.793 -0.733 -0.784 -0.804 -0.784 -0.757 -0.719 -0.791 + -0.828 -0.696 -0.725 -0.737 -0.750 -0.739 -0.811 -0.866 -0.711 -0.718 + -0.553 -0.620 -0.526 -0.516 -0.529 -0.567 -0.526 -0.500 -0.507 -0.530 + -0.537 -0.500 -0.487 -0.528 -0.553 -0.522 -0.507 -0.460 -0.494 -0.434 + -0.463 -0.502 -0.501 -0.422 -0.497 -0.504 -0.491 -0.512 -0.513 -0.561 + -0.501 -0.531 -0.499 -0.541 -0.501 -0.526 -0.440 -0.508 -0.470 -0.484 + -0.465 -0.577 -0.489 -0.468 -0.495 -0.471 -0.505 -0.511 -0.493 -0.517 + -0.499 -0.455 -0.507 -0.549 -0.465 -0.488 -0.567 -0.519 -0.515 -0.512 + + 237 iasi616_metop-a 148 -0.233622E-01 + -0.413 -0.408 -0.376 -0.359 -0.374 -0.403 -0.380 -0.386 -0.370 -0.434 + -0.403 -0.429 -0.421 -0.437 -0.412 -0.452 -0.450 -0.493 -0.490 -0.479 + -0.541 -0.488 -0.543 -0.546 -0.525 -0.564 -0.716 -0.707 -0.649 -0.679 + -0.146 -0.122 -0.161 -0.185 -0.171 -0.140 -0.201 -0.148 -0.116 -0.120 + -0.132 -0.169 -0.137 -0.184 -0.205 -0.281 -0.185 -0.153 -0.193 -0.126 + -0.184 -0.143 -0.159 -0.169 -0.204 -0.175 -0.189 -0.296 -0.151 -0.205 + -0.190 -0.244 -0.171 -0.193 -0.181 -0.279 -0.137 -0.174 -0.189 -0.175 + -0.184 -0.220 -0.148 -0.165 -0.166 -0.138 -0.174 -0.217 -0.120 -0.175 + -0.087 -0.149 -0.116 -0.199 -0.184 -0.198 -0.217 -0.152 -0.161 -0.190 + + 238 iasi616_metop-a 150 -0.447775E-01 + -0.181 -0.273 -0.296 -0.267 -0.244 -0.278 -0.305 -0.220 -0.204 -0.332 + -0.204 -0.258 -0.252 -0.244 -0.237 -0.237 -0.233 -0.253 -0.229 -0.260 + -0.253 -0.256 -0.274 -0.303 -0.249 -0.241 -0.306 -0.316 -0.292 -0.290 + -1.002 -1.027 -1.004 -1.040 -1.054 -0.977 -1.041 -1.061 -1.034 -1.001 + -1.021 -1.026 -1.010 -0.921 -1.113 -1.036 -0.948 -0.957 -0.994 -0.933 + -0.938 -0.935 -0.975 -0.922 -1.051 -0.987 -1.090 -1.060 -0.963 -0.940 + -0.966 -0.953 -0.930 -0.995 -0.914 -0.961 -0.961 -0.967 -0.951 -0.975 + -0.923 -1.019 -0.968 -1.009 -0.981 -0.953 -1.010 -1.055 -0.939 -0.973 + -0.952 -1.017 -0.993 -0.977 -0.971 -1.010 -0.995 -1.010 -1.028 -1.050 + + 239 iasi616_metop-a 151 -0.369470E-01 + -1.088 -1.070 -1.111 -1.129 -1.129 -1.082 -1.071 -1.040 -1.113 -1.169 + -1.061 -1.075 -1.182 -1.105 -1.110 -1.176 -1.128 -1.168 -1.102 -1.134 + -1.159 -1.158 -1.128 -1.154 -1.118 -1.142 -1.091 -1.134 -1.149 -1.110 + -1.951 -1.743 -1.356 -2.040 -1.854 -1.459 -1.206 -1.900 -1.469 -1.277 + -2.072 -1.837 -1.786 -1.878 -1.146 -1.492 -1.897 -2.256 -1.293 -2.117 + -1.081 -1.569 -1.629 -2.062 -1.356 -1.705 -1.525 -1.416 -1.340 -2.138 + -2.276 -2.269 -1.865 -1.669 -1.605 -2.325 -2.351 -1.895 -1.055 -2.280 + -2.113 -2.390 -2.137 -2.304 -2.268 -2.268 -1.736 -2.229 -2.245 -2.175 + -2.068 -2.062 -2.061 -2.207 -1.915 -1.976 -2.150 -2.281 -1.900 -2.017 + + 240 iasi616_metop-a 154 -0.177585E-01 + -0.295 -0.244 -0.225 -0.265 -0.238 -0.247 -0.237 -0.325 -0.277 -0.281 + -0.288 -0.325 -0.254 -0.263 -0.384 -0.365 -0.437 -0.306 -0.467 -0.382 + -0.440 -0.482 -0.429 -0.397 -0.563 -0.564 -0.528 -0.646 -0.527 -0.516 + -0.136 -0.202 -0.185 -0.204 -0.230 -0.140 -0.255 -0.222 -0.135 -0.217 + -0.170 -0.223 -0.153 -0.196 -0.191 -0.242 -0.156 -0.194 -0.188 -0.200 + -0.250 -0.204 -0.232 -0.251 -0.171 -0.253 -0.182 -0.273 -0.205 -0.242 + -0.235 -0.201 -0.138 -0.273 -0.268 -0.214 -0.233 -0.246 -0.248 -0.236 + -0.186 -0.228 -0.245 -0.230 -0.203 -0.195 -0.241 -0.236 -0.205 -0.204 + -0.227 -0.147 -0.161 -0.199 -0.178 -0.206 -0.198 -0.193 -0.129 -0.101 + + 241 iasi616_metop-a 157 -0.433331E-01 + -0.186 -0.271 -0.206 -0.269 -0.205 -0.232 -0.271 -0.211 -0.184 -0.253 + -0.197 -0.198 -0.202 -0.262 -0.168 -0.210 -0.169 -0.202 -0.211 -0.190 + -0.194 -0.150 -0.279 -0.267 -0.203 -0.196 -0.278 -0.283 -0.228 -0.242 + -1.186 -1.224 -1.096 -1.200 -1.051 -1.095 -1.226 -1.219 -1.137 -1.190 + -1.162 -1.201 -1.189 -1.011 -1.117 -1.113 -1.140 -1.115 -1.174 -1.149 + -1.147 -1.085 -1.182 -1.095 -1.062 -1.223 -1.161 -1.140 -1.190 -1.185 + -1.146 -1.135 -1.168 -1.169 -1.056 -1.025 -1.147 -1.108 -1.176 -1.039 + -1.107 -1.148 -1.179 -1.070 -1.061 -1.065 -1.178 -1.134 -1.178 -1.197 + -1.093 -1.105 -1.131 -1.073 -1.111 -1.175 -1.072 -1.212 -1.157 -1.096 + + 242 iasi616_metop-a 159 -0.204520E-01 + -1.262 -1.262 -1.256 -1.292 -1.154 -1.147 -1.181 -1.287 -1.147 -1.142 + -1.132 -1.196 -1.113 -1.069 -1.091 -1.122 -1.074 -1.004 -1.082 -1.070 + -1.067 -0.999 -0.962 -0.990 -0.974 -0.983 -0.974 -1.042 -0.962 -0.929 + -0.792 -0.839 -0.729 -0.732 -0.722 -0.826 -0.726 -0.770 -0.708 -0.701 + -0.692 -0.770 -0.677 -0.701 -0.751 -0.686 -0.673 -0.729 -0.721 -0.698 + -0.763 -0.792 -0.691 -0.630 -0.712 -0.743 -0.705 -0.730 -0.699 -0.750 + -0.670 -0.660 -0.621 -0.793 -0.731 -0.677 -0.656 -0.795 -0.690 -0.719 + -0.628 -0.763 -0.764 -0.739 -0.643 -0.695 -0.716 -0.706 -0.714 -0.750 + -0.693 -0.738 -0.768 -0.711 -0.704 -0.732 -0.680 -0.750 -0.758 -0.756 + + 243 iasi616_metop-a 160 -0.139290E-01 + -0.478 -0.497 -0.401 -0.419 -0.471 -0.463 -0.458 -0.518 -0.528 -0.571 + -0.572 -0.562 -0.605 -0.555 -0.584 -0.617 -0.619 -0.640 -0.652 -0.681 + -0.731 -0.689 -0.740 -0.763 -0.823 -0.829 -1.004 -1.020 -0.902 -0.880 + -0.293 -0.247 -0.270 -0.268 -0.228 -0.327 -0.285 -0.365 -0.264 -0.267 + -0.256 -0.319 -0.256 -0.274 -0.312 -0.320 -0.221 -0.308 -0.360 -0.348 + -0.350 -0.403 -0.330 -0.241 -0.293 -0.352 -0.340 -0.351 -0.320 -0.348 + -0.306 -0.342 -0.266 -0.427 -0.338 -0.321 -0.264 -0.351 -0.329 -0.336 + -0.232 -0.369 -0.371 -0.328 -0.254 -0.262 -0.306 -0.302 -0.303 -0.373 + -0.308 -0.288 -0.314 -0.314 -0.251 -0.287 -0.269 -0.245 -0.267 -0.258 + + 244 iasi616_metop-a 161 -0.172021E-01 + -0.288 -0.299 -0.273 -0.259 -0.246 -0.282 -0.260 -0.219 -0.215 -0.299 + -0.272 -0.242 -0.258 -0.242 -0.219 -0.250 -0.235 -0.236 -0.271 -0.197 + -0.241 -0.245 -0.274 -0.259 -0.234 -0.265 -0.297 -0.283 -0.254 -0.261 + -0.295 -0.249 -0.327 -0.295 -0.307 -0.277 -0.334 -0.367 -0.319 -0.271 + -0.300 -0.290 -0.278 -0.284 -0.305 -0.361 -0.277 -0.251 -0.362 -0.314 + -0.334 -0.356 -0.329 -0.259 -0.295 -0.367 -0.355 -0.384 -0.342 -0.298 + -0.275 -0.368 -0.343 -0.362 -0.338 -0.390 -0.289 -0.309 -0.299 -0.359 + -0.232 -0.362 -0.326 -0.337 -0.276 -0.240 -0.298 -0.328 -0.320 -0.331 + -0.306 -0.316 -0.302 -0.344 -0.294 -0.289 -0.296 -0.247 -0.267 -0.292 + + 245 iasi616_metop-a 163 -0.400169E-01 + -0.351 -0.414 -0.466 -0.441 -0.392 -0.338 -0.446 -0.327 -0.320 -0.405 + -0.348 -0.370 -0.345 -0.302 -0.306 -0.353 -0.318 -0.287 -0.357 -0.303 + -0.297 -0.257 -0.394 -0.373 -0.289 -0.305 -0.353 -0.348 -0.299 -0.291 + -1.729 -1.808 -1.884 -1.850 -1.777 -1.785 -2.027 -1.877 -1.876 -1.827 + -2.004 -1.906 -1.886 -1.800 -2.052 -1.987 -1.908 -1.885 -1.993 -1.845 + -2.040 -1.844 -1.964 -1.887 -2.046 -1.993 -2.015 -1.987 -1.859 -1.930 + -1.931 -1.939 -1.906 -1.977 -2.057 -1.899 -1.901 -1.981 -1.890 -1.898 + -1.839 -1.898 -1.891 -1.992 -1.854 -1.923 -1.856 -1.848 -1.863 -1.835 + -1.803 -1.842 -1.827 -1.758 -1.775 -1.820 -1.795 -1.824 -1.783 -1.742 + + 246 iasi616_metop-a 167 -0.867281E-02 + -0.467 -0.469 -0.423 -0.442 -0.446 -0.476 -0.387 -0.491 -0.623 -0.520 + -0.592 -0.701 -0.627 -0.682 -0.646 -0.663 -0.792 -0.701 -0.699 -0.766 + -0.839 -0.798 -0.669 -0.841 -0.869 -0.891 -0.974 -1.084 -0.928 -0.969 + -0.421 -0.432 -0.414 -0.457 -0.407 -0.391 -0.451 -0.370 -0.402 -0.339 + -0.479 -0.406 -0.402 -0.462 -0.488 -0.439 -0.407 -0.433 -0.405 -0.460 + -0.453 -0.483 -0.469 -0.428 -0.418 -0.443 -0.465 -0.503 -0.485 -0.368 + -0.440 -0.466 -0.434 -0.530 -0.486 -0.426 -0.403 -0.481 -0.470 -0.450 + -0.410 -0.450 -0.484 -0.417 -0.405 -0.384 -0.444 -0.373 -0.356 -0.417 + -0.414 -0.384 -0.398 -0.379 -0.450 -0.423 -0.410 -0.372 -0.373 -0.386 + + 247 iasi616_metop-a 170 -0.372961E-01 + -0.399 -0.488 -0.465 -0.433 -0.425 -0.498 -0.445 -0.403 -0.395 -0.455 + -0.382 -0.401 -0.406 -0.430 -0.397 -0.398 -0.409 -0.443 -0.369 -0.357 + -0.341 -0.384 -0.371 -0.388 -0.340 -0.381 -0.394 -0.400 -0.346 -0.368 + -1.180 -1.208 -1.100 -1.186 -1.095 -1.244 -1.204 -1.060 -1.112 -1.099 + -1.251 -1.122 -1.127 -1.075 -1.125 -1.096 -1.077 -1.087 -1.130 -1.024 + -1.104 -1.174 -1.086 -1.110 -1.138 -1.236 -1.144 -1.104 -1.076 -1.136 + -1.079 -1.074 -1.164 -1.194 -1.069 -1.091 -1.077 -1.170 -1.098 -1.135 + -1.082 -1.187 -1.159 -1.122 -1.027 -1.117 -1.071 -1.125 -1.109 -1.138 + -1.114 -1.010 -1.178 -1.114 -1.148 -1.091 -1.132 -1.169 -1.122 -1.106 + + 248 iasi616_metop-a 173 -0.120682E-02 + -0.629 -0.659 -0.569 -0.600 -0.700 -0.652 -0.638 -0.692 -0.743 -0.700 + -0.673 -0.742 -0.672 -0.744 -0.710 -0.719 -0.818 -0.790 -0.711 -0.813 + -0.865 -0.809 -0.732 -0.778 -0.828 -0.819 -0.821 -0.864 -0.804 -0.847 + -0.504 -0.530 -0.532 -0.539 -0.521 -0.555 -0.569 -0.602 -0.591 -0.580 + -0.571 -0.559 -0.550 -0.572 -0.602 -0.606 -0.539 -0.558 -0.613 -0.614 + -0.574 -0.545 -0.656 -0.596 -0.584 -0.585 -0.594 -0.610 -0.609 -0.550 + -0.587 -0.595 -0.521 -0.658 -0.623 -0.490 -0.524 -0.598 -0.581 -0.554 + -0.516 -0.560 -0.557 -0.458 -0.534 -0.576 -0.574 -0.541 -0.470 -0.558 + -0.511 -0.570 -0.470 -0.509 -0.505 -0.473 -0.533 -0.536 -0.538 -0.546 + + 249 iasi616_metop-a 176 -0.346708E-01 + -0.524 -0.582 -0.561 -0.499 -0.531 -0.565 -0.550 -0.528 -0.450 -0.596 + -0.521 -0.499 -0.508 -0.562 -0.453 -0.474 -0.454 -0.500 -0.492 -0.496 + -0.461 -0.503 -0.510 -0.473 -0.450 -0.488 -0.474 -0.482 -0.447 -0.466 + -1.327 -1.402 -1.404 -1.395 -1.299 -1.336 -1.482 -1.345 -1.311 -1.332 + -1.335 -1.382 -1.358 -1.281 -1.334 -1.324 -1.331 -1.285 -1.293 -1.280 + -1.328 -1.421 -1.279 -1.228 -1.395 -1.383 -1.406 -1.383 -1.356 -1.357 + -1.273 -1.210 -1.314 -1.348 -1.348 -1.256 -1.240 -1.340 -1.310 -1.313 + -1.220 -1.318 -1.297 -1.287 -1.232 -1.282 -1.309 -1.296 -1.336 -1.325 + -1.272 -1.220 -1.323 -1.315 -1.301 -1.344 -1.339 -1.389 -1.336 -1.297 + + 250 iasi616_metop-a 179 -0.749147E-03 + -0.985 -0.918 -0.913 -0.959 -0.956 -0.908 -0.837 -0.950 -0.985 -0.915 + -0.911 -1.027 -0.973 -0.926 -0.929 -0.973 -1.013 -0.925 -0.897 -0.937 + -1.014 -0.927 -0.872 -0.915 -0.968 -0.982 -0.945 -1.024 -0.902 -0.925 + -0.614 -0.712 -0.722 -0.680 -0.639 -0.691 -0.690 -0.690 -0.666 -0.707 + -0.740 -0.659 -0.675 -0.655 -0.721 -0.686 -0.613 -0.646 -0.715 -0.629 + -0.693 -0.727 -0.721 -0.685 -0.635 -0.703 -0.669 -0.679 -0.676 -0.625 + -0.668 -0.686 -0.691 -0.770 -0.701 -0.583 -0.602 -0.716 -0.648 -0.654 + -0.628 -0.683 -0.637 -0.610 -0.556 -0.634 -0.645 -0.635 -0.650 -0.658 + -0.691 -0.621 -0.634 -0.617 -0.621 -0.628 -0.603 -0.633 -0.597 -0.607 + + 251 iasi616_metop-a 180 0.153316E-02 + -0.567 -0.591 -0.585 -0.575 -0.581 -0.595 -0.573 -0.594 -0.622 -0.633 + -0.602 -0.604 -0.625 -0.645 -0.656 -0.624 -0.634 -0.651 -0.622 -0.618 + -0.656 -0.675 -0.722 -0.670 -0.657 -0.724 -0.734 -0.717 -0.691 -0.712 + -0.673 -0.707 -0.772 -0.716 -0.705 -0.709 -0.752 -0.717 -0.725 -0.777 + -0.765 -0.722 -0.761 -0.737 -0.788 -0.746 -0.641 -0.742 -0.786 -0.671 + -0.764 -0.805 -0.767 -0.740 -0.736 -0.743 -0.739 -0.809 -0.745 -0.662 + -0.762 -0.808 -0.744 -0.885 -0.810 -0.607 -0.664 -0.758 -0.737 -0.709 + -0.663 -0.716 -0.740 -0.705 -0.644 -0.702 -0.687 -0.644 -0.644 -0.695 + -0.774 -0.666 -0.660 -0.667 -0.657 -0.634 -0.643 -0.677 -0.622 -0.630 + + 252 iasi616_metop-a 185 0.444932E-02 + -0.904 -0.875 -0.943 -0.952 -0.816 -0.850 -0.800 -0.796 -0.754 -0.799 + -0.728 -0.721 -0.698 -0.738 -0.728 -0.698 -0.682 -0.697 -0.638 -0.638 + -0.648 -0.663 -0.645 -0.586 -0.572 -0.636 -0.529 -0.558 -0.567 -0.567 + -0.934 -0.947 -0.991 -0.830 -0.873 -0.987 -0.909 -0.872 -0.936 -0.935 + -0.897 -0.946 -0.858 -0.835 -0.852 -0.875 -0.824 -0.952 -0.891 -0.891 + -0.933 -0.926 -0.934 -0.897 -0.819 -0.887 -0.836 -0.888 -0.903 -0.789 + -0.900 -0.827 -0.812 -0.963 -0.916 -0.824 -0.801 -0.822 -0.863 -0.807 + -0.865 -0.810 -0.857 -0.793 -0.799 -0.818 -0.797 -0.781 -0.845 -0.859 + -0.797 -0.814 -0.781 -0.835 -0.818 -0.791 -0.762 -0.862 -0.891 -0.838 + + 253 iasi616_metop-a 187 0.302890E-02 + -0.655 -0.714 -0.642 -0.620 -0.713 -0.688 -0.692 -0.675 -0.705 -0.760 + -0.774 -0.741 -0.740 -0.772 -0.774 -0.766 -0.809 -0.851 -0.809 -0.810 + -0.841 -0.850 -0.896 -0.883 -0.879 -0.927 -1.012 -1.025 -0.937 -0.981 + -0.654 -0.607 -0.697 -0.637 -0.724 -0.665 -0.627 -0.686 -0.684 -0.691 + -0.739 -0.692 -0.627 -0.656 -0.711 -0.693 -0.708 -0.676 -0.681 -0.657 + -0.754 -0.774 -0.715 -0.699 -0.707 -0.716 -0.738 -0.787 -0.765 -0.649 + -0.700 -0.737 -0.636 -0.674 -0.718 -0.642 -0.626 -0.681 -0.699 -0.659 + -0.584 -0.648 -0.678 -0.635 -0.647 -0.596 -0.620 -0.636 -0.595 -0.647 + -0.637 -0.642 -0.602 -0.574 -0.606 -0.606 -0.614 -0.632 -0.659 -0.617 + + 254 iasi616_metop-a 191 -0.159199E-02 + -0.957 -0.962 -1.082 -1.045 -0.879 -0.927 -0.876 -0.813 -0.791 -0.838 + -0.772 -0.779 -0.724 -0.767 -0.729 -0.683 -0.688 -0.669 -0.672 -0.663 + -0.664 -0.667 -0.598 -0.632 -0.580 -0.589 -0.547 -0.563 -0.548 -0.537 + -1.025 -1.010 -1.032 -0.897 -0.953 -1.023 -0.978 -0.957 -0.916 -0.965 + -0.933 -0.933 -0.889 -0.942 -0.946 -0.938 -0.930 -0.871 -0.951 -0.863 + -0.946 -0.877 -0.937 -0.918 -0.885 -0.911 -0.884 -0.927 -0.911 -0.865 + -0.929 -0.943 -0.837 -0.917 -0.917 -0.803 -0.858 -0.970 -0.937 -0.872 + -0.824 -0.907 -0.930 -0.833 -0.870 -0.875 -0.904 -0.943 -0.866 -0.873 + -0.889 -0.921 -0.859 -0.868 -0.849 -0.893 -0.911 -0.935 -0.968 -0.935 + + 255 iasi616_metop-a 193 0.169943E-01 + -0.732 -0.766 -0.729 -0.716 -0.835 -0.803 -0.806 -0.820 -0.837 -0.852 + -0.911 -0.925 -0.911 -0.885 -0.953 -0.988 -0.956 -0.996 -1.038 -1.049 + -1.074 -1.066 -1.181 -1.169 -1.174 -1.199 -1.435 -1.443 -1.320 -1.330 + -0.702 -0.720 -0.738 -0.671 -0.669 -0.744 -0.723 -0.744 -0.765 -0.723 + -0.744 -0.693 -0.693 -0.711 -0.726 -0.753 -0.742 -0.777 -0.759 -0.737 + -0.749 -0.784 -0.805 -0.777 -0.693 -0.739 -0.708 -0.705 -0.786 -0.635 + -0.722 -0.696 -0.639 -0.744 -0.762 -0.619 -0.706 -0.717 -0.753 -0.712 + -0.628 -0.681 -0.704 -0.640 -0.697 -0.636 -0.598 -0.618 -0.615 -0.757 + -0.646 -0.608 -0.613 -0.607 -0.598 -0.611 -0.627 -0.644 -0.612 -0.604 + + 256 iasi616_metop-a 197 -0.839248E-02 + -0.701 -0.813 -1.126 -0.992 -0.633 -0.630 -0.623 -0.578 -0.574 -0.583 + -0.573 -0.564 -0.564 -0.588 -0.541 -0.568 -0.523 -0.563 -0.499 -0.501 + -0.491 -0.514 -0.480 -0.483 -0.501 -0.526 -0.481 -0.473 -0.459 -0.471 + -1.641 -1.730 -0.177 -1.084 -1.395 -0.592 -0.510 -0.812 -0.618 -0.633 + -0.666 -0.935 -0.565 -0.493 -0.333 -0.391 -0.183 -1.204 0.000 -0.636 + 0.000 -0.433 -0.272 -0.312 -0.149 -0.373 -0.263 -0.486 -0.136 -0.707 + -0.731 -1.356 -0.980 -0.527 -0.684 -1.018 -0.912 -0.263 -0.168 -0.620 + -1.355 -1.004 -0.281 -1.228 -1.470 -1.365 -0.835 -1.628 -0.776 -1.547 + -1.127 -1.922 -2.161 -1.720 -2.412 -3.333 -3.814 -1.263 -3.982 -3.918 + + 257 iasi616_metop-a 199 0.295848E-01 + -0.571 -0.550 -0.552 -0.572 -0.638 -0.566 -0.582 -0.490 -0.681 -0.631 + -0.627 -0.655 -0.621 -0.595 -0.723 -0.696 -0.666 -0.715 -0.721 -0.710 + -0.845 -0.737 -0.933 -1.125 -1.154 -1.203 -3.093 -3.157 -2.153 -2.185 + -0.672 -0.684 -0.616 -0.619 -0.617 -0.742 -0.662 -0.675 -0.762 -0.748 + -0.683 -0.679 -0.605 -0.626 -0.692 -0.565 -0.692 -0.657 -0.764 -0.679 + -0.622 -0.726 -0.765 -0.692 -0.623 -0.719 -0.670 -0.705 -0.699 -0.603 + -0.671 -0.588 -0.647 -0.711 -0.651 -0.546 -0.616 -0.681 -0.669 -0.618 + -0.610 -0.631 -0.680 -0.551 -0.609 -0.606 -0.572 -0.569 -0.559 -0.620 + -0.587 -0.580 -0.538 -0.576 -0.518 -0.529 -0.501 -0.622 -0.549 -0.565 + + 258 iasi616_metop-a 200 0.140102E-01 + -0.596 -0.596 -0.618 -0.585 -0.586 -0.612 -0.551 -0.501 -0.598 -0.593 + -0.568 -0.589 -0.581 -0.582 -0.546 -0.518 -0.584 -0.588 -0.524 -0.547 + -0.525 -0.507 -0.542 -0.531 -0.507 -0.565 -0.501 -0.470 -0.500 -0.502 + -0.636 -0.704 -0.630 -0.646 -0.648 -0.714 -0.706 -0.696 -0.699 -0.706 + -0.723 -0.706 -0.643 -0.684 -0.681 -0.642 -0.672 -0.663 -0.742 -0.629 + -0.668 -0.745 -0.761 -0.703 -0.622 -0.729 -0.693 -0.721 -0.712 -0.612 + -0.704 -0.633 -0.643 -0.754 -0.645 -0.590 -0.640 -0.694 -0.641 -0.618 + -0.619 -0.649 -0.724 -0.590 -0.623 -0.604 -0.618 -0.587 -0.600 -0.595 + -0.638 -0.590 -0.543 -0.598 -0.560 -0.550 -0.565 -0.641 -0.567 -0.579 + + 259 iasi616_metop-a 202 -0.242702E-01 + -0.772 -0.810 -0.823 -0.796 -0.772 -0.783 -0.733 -0.652 -0.696 -0.760 + -0.680 -0.721 -0.693 -0.746 -0.701 -0.629 -0.678 -0.690 -0.632 -0.647 + -0.606 -0.646 -0.639 -0.624 -0.610 -0.657 -0.607 -0.584 -0.592 -0.580 + -1.223 -1.221 -1.242 -1.185 -1.197 -1.273 -1.253 -1.178 -1.161 -1.138 + -1.198 -1.191 -1.121 -1.124 -1.130 -1.138 -1.101 -1.108 -1.132 -0.996 + -1.165 -1.149 -1.099 -1.110 -1.146 -1.143 -1.104 -1.156 -1.140 -1.129 + -1.154 -1.025 -1.097 -1.126 -1.130 -1.066 -1.010 -1.174 -1.126 -1.100 + -1.063 -1.161 -1.144 -1.105 -1.091 -1.080 -1.149 -1.099 -1.131 -1.136 + -1.105 -1.117 -1.139 -1.116 -1.132 -1.180 -1.081 -1.195 -1.144 -1.173 + + 260 iasi616_metop-a 203 -0.108542E-01 + -1.435 -1.428 -1.574 -1.497 -1.427 -1.449 -1.484 -1.407 -1.318 -1.406 + -1.372 -1.370 -1.309 -1.361 -1.349 -1.365 -1.307 -1.328 -1.313 -1.351 + -1.305 -1.313 -1.302 -1.318 -1.273 -1.247 -1.370 -1.384 -1.318 -1.300 + -1.256 -1.213 -1.167 -1.090 -1.128 -1.242 -1.155 -1.160 -1.103 -1.162 + -1.093 -1.151 -1.116 -1.081 -1.035 -1.073 -1.003 -1.033 -1.112 -0.993 + -1.064 -1.146 -1.072 -1.021 -1.056 -1.105 -1.072 -1.075 -1.014 -1.051 + -1.015 -0.993 -1.035 -1.047 -1.023 -0.969 -1.020 -1.049 -1.046 -1.011 + -0.981 -1.081 -1.095 -1.025 -0.949 -0.991 -1.082 -1.057 -1.031 -1.012 + -1.125 -1.074 -1.011 -1.098 -1.071 -1.132 -1.070 -1.101 -1.172 -1.097 + + 261 iasi616_metop-a 205 0.350008E-01 + -0.877 -0.930 -0.853 -0.848 -1.001 -0.906 -0.962 -0.994 -0.996 -0.954 + -1.094 -1.124 -1.108 -1.062 -1.106 -1.204 -1.134 -1.178 -1.170 -1.300 + -1.293 -1.227 -1.342 -1.370 -1.380 -1.405 -1.701 -1.699 -1.530 -1.516 + -0.497 -0.452 -0.485 -0.464 -0.376 -0.585 -0.454 -0.520 -0.504 -0.461 + -0.556 -0.518 -0.404 -0.465 -0.432 -0.392 -0.446 -0.513 -0.566 -0.417 + -0.529 -0.471 -0.610 -0.563 -0.445 -0.558 -0.538 -0.501 -0.451 -0.507 + -0.486 -0.478 -0.489 -0.492 -0.460 -0.418 -0.487 -0.537 -0.458 -0.437 + -0.428 -0.483 -0.501 -0.395 -0.424 -0.453 -0.400 -0.392 -0.416 -0.512 + -0.451 -0.449 -0.357 -0.443 -0.376 -0.390 -0.384 -0.444 -0.476 -0.368 + + 262 iasi616_metop-a 207 0.866431E-02 + -0.707 -0.677 -0.738 -0.701 -0.628 -0.684 -0.598 -0.563 -0.626 -0.636 + -0.624 -0.622 -0.637 -0.594 -0.555 -0.579 -0.554 -0.573 -0.552 -0.576 + -0.557 -0.556 -0.553 -0.536 -0.505 -0.529 -0.516 -0.475 -0.492 -0.526 + -0.732 -0.705 -0.753 -0.681 -0.656 -0.796 -0.676 -0.711 -0.766 -0.814 + -0.719 -0.713 -0.713 -0.724 -0.680 -0.656 -0.647 -0.728 -0.798 -0.686 + -0.731 -0.721 -0.787 -0.746 -0.651 -0.749 -0.736 -0.717 -0.720 -0.679 + -0.711 -0.697 -0.689 -0.649 -0.672 -0.696 -0.684 -0.675 -0.676 -0.666 + -0.666 -0.699 -0.736 -0.613 -0.638 -0.676 -0.704 -0.664 -0.625 -0.676 + -0.705 -0.697 -0.585 -0.680 -0.612 -0.637 -0.652 -0.672 -0.703 -0.621 + + 263 iasi616_metop-a 210 0.127717E-01 + -0.902 -0.911 -0.982 -0.991 -0.805 -0.842 -0.801 -0.776 -0.711 -0.776 + -0.753 -0.756 -0.689 -0.720 -0.717 -0.719 -0.658 -0.704 -0.698 -0.708 + -0.676 -0.694 -0.704 -0.691 -0.679 -0.712 -0.745 -0.719 -0.682 -0.700 + -0.559 -0.578 -0.540 -0.541 -0.551 -0.548 -0.584 -0.579 -0.546 -0.555 + -0.553 -0.571 -0.506 -0.505 -0.502 -0.527 -0.517 -0.539 -0.533 -0.531 + -0.456 -0.412 -0.555 -0.551 -0.456 -0.511 -0.530 -0.546 -0.499 -0.481 + -0.505 -0.480 -0.530 -0.400 -0.462 -0.480 -0.497 -0.474 -0.497 -0.510 + -0.467 -0.532 -0.515 -0.479 -0.458 -0.481 -0.513 -0.562 -0.510 -0.482 + -0.520 -0.524 -0.499 -0.498 -0.430 -0.501 -0.472 -0.521 -0.571 -0.546 + + 264 iasi616_metop-a 212 0.385609E-01 + -0.527 -0.534 -0.534 -0.545 -0.569 -0.557 -0.550 -0.579 -0.577 -0.542 + -0.655 -0.601 -0.579 -0.547 -0.680 -0.732 -0.605 -0.652 -0.771 -0.786 + -0.749 -0.725 -0.902 -0.913 -0.856 -0.813 -1.148 -1.115 -0.994 -1.015 + -0.484 -0.541 -0.492 -0.443 -0.412 -0.543 -0.423 -0.503 -0.557 -0.555 + -0.539 -0.466 -0.492 -0.482 -0.434 -0.405 -0.454 -0.590 -0.531 -0.481 + -0.430 -0.451 -0.586 -0.610 -0.425 -0.541 -0.518 -0.451 -0.494 -0.532 + -0.472 -0.469 -0.496 -0.584 -0.445 -0.389 -0.486 -0.489 -0.483 -0.500 + -0.521 -0.481 -0.539 -0.359 -0.426 -0.484 -0.401 -0.406 -0.433 -0.531 + -0.437 -0.402 -0.425 -0.425 -0.354 -0.334 -0.339 -0.483 -0.513 -0.383 + + 265 iasi616_metop-a 213 0.286784E-01 + -0.574 -0.573 -0.585 -0.571 -0.570 -0.585 -0.520 -0.488 -0.564 -0.516 + -0.532 -0.468 -0.487 -0.470 -0.494 -0.471 -0.459 -0.514 -0.476 -0.514 + -0.455 -0.465 -0.479 -0.486 -0.411 -0.459 -0.459 -0.463 -0.449 -0.465 + -0.585 -0.649 -0.593 -0.561 -0.574 -0.656 -0.561 -0.649 -0.663 -0.679 + -0.642 -0.581 -0.605 -0.647 -0.568 -0.541 -0.539 -0.688 -0.654 -0.601 + -0.509 -0.618 -0.659 -0.646 -0.568 -0.651 -0.613 -0.581 -0.599 -0.614 + -0.593 -0.591 -0.558 -0.661 -0.603 -0.514 -0.562 -0.617 -0.586 -0.607 + -0.609 -0.615 -0.612 -0.532 -0.533 -0.588 -0.552 -0.527 -0.564 -0.675 + -0.563 -0.506 -0.526 -0.557 -0.527 -0.490 -0.522 -0.593 -0.614 -0.530 + + 266 iasi616_metop-a 214 0.270726E-02 + -0.909 -0.909 -0.936 -0.910 -0.831 -0.852 -0.819 -0.777 -0.810 -0.817 + -0.772 -0.755 -0.754 -0.720 -0.765 -0.710 -0.708 -0.762 -0.746 -0.722 + -0.706 -0.701 -0.689 -0.720 -0.654 -0.703 -0.667 -0.652 -0.659 -0.676 + -0.843 -0.869 -0.850 -0.809 -0.852 -0.906 -0.858 -0.885 -0.834 -0.885 + -0.826 -0.818 -0.828 -0.874 -0.841 -0.805 -0.774 -0.882 -0.860 -0.827 + -0.769 -0.849 -0.880 -0.838 -0.791 -0.904 -0.808 -0.870 -0.811 -0.798 + -0.832 -0.766 -0.776 -0.904 -0.815 -0.750 -0.779 -0.840 -0.851 -0.837 + -0.764 -0.822 -0.834 -0.811 -0.752 -0.782 -0.819 -0.756 -0.810 -0.828 + -0.825 -0.779 -0.780 -0.788 -0.798 -0.803 -0.809 -0.813 -0.874 -0.826 + + 267 iasi616_metop-a 217 0.315427E-01 + -0.566 -0.601 -0.588 -0.587 -0.571 -0.571 -0.597 -0.610 -0.623 -0.588 + -0.644 -0.659 -0.639 -0.586 -0.662 -0.679 -0.622 -0.683 -0.657 -0.697 + -0.717 -0.662 -0.739 -0.760 -0.762 -0.778 -0.917 -0.925 -0.815 -0.829 + -0.032 -0.045 -0.120 -0.035 -0.004 -0.053 -0.108 -0.125 -0.105 -0.103 + -0.101 -0.119 -0.044 -0.133 -0.080 -0.106 -0.146 -0.108 -0.137 -0.109 + -0.051 -0.035 -0.192 -0.114 -0.038 -0.079 -0.159 -0.083 -0.050 -0.126 + -0.134 -0.167 -0.122 0.011 -0.104 -0.158 -0.089 -0.141 -0.043 -0.165 + -0.125 -0.132 -0.139 -0.068 -0.061 -0.141 -0.075 -0.102 -0.095 -0.080 + -0.070 -0.080 -0.075 -0.090 -0.040 -0.102 -0.022 -0.115 -0.114 -0.136 + + 268 iasi616_metop-a 218 0.429726E-01 + -0.134 -0.120 -0.155 -0.143 -0.121 -0.124 -0.144 -0.134 -0.108 -0.145 + -0.171 -0.174 -0.126 -0.101 -0.152 -0.160 -0.098 -0.158 -0.181 -0.225 + -0.184 -0.161 -0.250 -0.248 -0.214 -0.195 -0.378 -0.371 -0.277 -0.322 + -0.081 -0.112 -0.126 -0.036 -0.043 -0.073 -0.191 -0.110 -0.133 -0.147 + -0.150 -0.137 -0.133 -0.162 -0.147 -0.120 -0.155 -0.159 -0.216 -0.093 + -0.127 -0.156 -0.274 -0.191 -0.136 -0.218 -0.235 -0.113 -0.113 -0.241 + -0.194 -0.155 -0.201 -0.075 -0.140 -0.157 -0.143 -0.205 -0.085 -0.160 + -0.202 -0.127 -0.258 -0.099 -0.121 -0.214 -0.078 -0.093 -0.165 -0.159 + -0.103 -0.078 -0.089 -0.140 -0.031 -0.041 -0.066 -0.156 -0.099 -0.064 + + 269 iasi616_metop-a 219 0.385229E-01 + -0.452 -0.425 -0.509 -0.488 -0.382 -0.431 -0.399 -0.356 -0.322 -0.393 + -0.337 -0.345 -0.317 -0.326 -0.336 -0.267 -0.249 -0.305 -0.328 -0.286 + -0.273 -0.276 -0.300 -0.279 -0.233 -0.245 -0.264 -0.244 -0.223 -0.297 + -0.665 -0.732 -0.655 -0.604 -0.661 -0.750 -0.813 -0.658 -0.691 -0.770 + -0.727 -0.697 -0.663 -0.755 -0.772 -0.670 -0.695 -0.696 -0.820 -0.634 + -0.714 -0.780 -0.815 -0.778 -0.758 -0.844 -0.800 -0.711 -0.697 -0.839 + -0.771 -0.684 -0.812 -0.738 -0.704 -0.749 -0.712 -0.799 -0.735 -0.676 + -0.783 -0.695 -0.819 -0.693 -0.692 -0.753 -0.698 -0.641 -0.715 -0.750 + -0.691 -0.650 -0.641 -0.753 -0.558 -0.627 -0.704 -0.718 -0.675 -0.568 + + 270 iasi616_metop-a 222 0.740279E-02 + -0.825 -0.832 -0.901 -0.895 -0.765 -0.821 -0.745 -0.735 -0.704 -0.764 + -0.714 -0.708 -0.681 -0.670 -0.691 -0.649 -0.631 -0.717 -0.685 -0.675 + -0.664 -0.643 -0.701 -0.649 -0.624 -0.674 -0.695 -0.695 -0.636 -0.691 + -0.545 -0.559 -0.535 -0.538 -0.555 -0.555 -0.478 -0.538 -0.557 -0.536 + -0.538 -0.526 -0.488 -0.484 -0.501 -0.467 -0.542 -0.473 -0.492 -0.528 + -0.452 -0.492 -0.518 -0.427 -0.508 -0.520 -0.499 -0.527 -0.468 -0.527 + -0.504 -0.540 -0.525 -0.497 -0.493 -0.478 -0.518 -0.466 -0.526 -0.517 + -0.433 -0.506 -0.500 -0.529 -0.473 -0.447 -0.527 -0.496 -0.467 -0.479 + -0.494 -0.501 -0.481 -0.516 -0.472 -0.544 -0.512 -0.535 -0.564 -0.554 + + 271 iasi616_metop-a 224 0.410616E-01 + -0.271 -0.300 -0.287 -0.299 -0.316 -0.331 -0.331 -0.376 -0.375 -0.378 + -0.421 -0.437 -0.417 -0.373 -0.478 -0.496 -0.449 -0.508 -0.518 -0.587 + -0.554 -0.531 -0.611 -0.654 -0.632 -0.669 -0.874 -0.866 -0.766 -0.786 + 0.078 0.060 0.073 0.065 0.092 0.095 0.067 0.014 0.004 0.035 + -0.001 0.017 0.037 0.048 0.016 0.050 0.036 0.033 -0.060 0.063 + 0.025 0.046 -0.119 0.021 -0.012 0.052 -0.054 0.037 0.080 0.007 + 0.018 -0.029 -0.038 0.016 0.021 -0.006 -0.020 -0.019 0.077 -0.040 + -0.044 0.024 -0.071 0.026 0.048 0.001 0.040 0.037 0.066 0.055 + 0.002 0.068 0.075 0.077 0.110 -0.011 0.071 0.088 0.057 0.061 + + 272 iasi616_metop-a 225 0.419990E-01 + -0.392 -0.307 -0.477 -0.460 -0.244 -0.336 -0.291 -0.265 -0.201 -0.284 + -0.223 -0.228 -0.173 -0.162 -0.241 -0.181 -0.099 -0.182 -0.185 -0.146 + -0.144 -0.127 -0.190 -0.190 -0.105 -0.104 -0.176 -0.176 -0.122 -0.147 + -0.590 -0.625 -0.614 -0.587 -0.591 -0.647 -0.635 -0.668 -0.629 -0.632 + -0.671 -0.652 -0.634 -0.622 -0.664 -0.611 -0.613 -0.650 -0.692 -0.564 + -0.661 -0.660 -0.808 -0.573 -0.699 -0.666 -0.767 -0.616 -0.610 -0.688 + -0.652 -0.669 -0.697 -0.681 -0.674 -0.696 -0.645 -0.727 -0.605 -0.671 + -0.720 -0.664 -0.749 -0.652 -0.596 -0.694 -0.661 -0.665 -0.621 -0.624 + -0.602 -0.587 -0.600 -0.607 -0.557 -0.613 -0.608 -0.645 -0.645 -0.556 + + 273 iasi616_metop-a 226 0.408554E-01 + -0.553 -0.519 -0.557 -0.559 -0.527 -0.519 -0.530 -0.548 -0.518 -0.540 + -0.562 -0.537 -0.513 -0.481 -0.584 -0.563 -0.504 -0.587 -0.538 -0.577 + -0.594 -0.531 -0.619 -0.600 -0.596 -0.622 -0.719 -0.741 -0.633 -0.696 + -0.272 -0.327 -0.304 -0.258 -0.253 -0.379 -0.325 -0.356 -0.341 -0.350 + -0.384 -0.325 -0.292 -0.346 -0.375 -0.312 -0.377 -0.390 -0.387 -0.292 + -0.328 -0.353 -0.504 -0.338 -0.331 -0.391 -0.426 -0.317 -0.303 -0.415 + -0.405 -0.360 -0.335 -0.384 -0.381 -0.334 -0.302 -0.374 -0.303 -0.364 + -0.368 -0.319 -0.410 -0.328 -0.264 -0.371 -0.335 -0.318 -0.291 -0.385 + -0.296 -0.272 -0.262 -0.303 -0.212 -0.280 -0.297 -0.361 -0.309 -0.262 + + 274 iasi616_metop-a 228 0.744004E-02 + -0.863 -0.804 -1.025 -0.956 -0.695 -0.791 -0.753 -0.662 -0.609 -0.717 + -0.623 -0.617 -0.504 -0.573 -0.612 -0.541 -0.482 -0.554 -0.584 -0.522 + -0.519 -0.497 -0.569 -0.506 -0.482 -0.518 -0.535 -0.539 -0.481 -0.539 + -0.760 -0.779 -0.725 -0.704 -0.693 -0.742 -0.716 -0.692 -0.740 -0.739 + -0.744 -0.697 -0.660 -0.647 -0.642 -0.648 -0.732 -0.665 -0.614 -0.704 + -0.644 -0.638 -0.704 -0.673 -0.671 -0.637 -0.640 -0.690 -0.638 -0.656 + -0.616 -0.625 -0.666 -0.635 -0.628 -0.660 -0.615 -0.623 -0.617 -0.666 + -0.617 -0.588 -0.663 -0.638 -0.600 -0.651 -0.686 -0.682 -0.654 -0.650 + -0.709 -0.715 -0.651 -0.674 -0.651 -0.730 -0.638 -0.685 -0.753 -0.766 + + 275 iasi616_metop-a 230 0.435210E-01 + -0.264 -0.278 -0.204 -0.238 -0.360 -0.324 -0.343 -0.417 -0.438 -0.403 + -0.504 -0.562 -0.549 -0.406 -0.581 -0.636 -0.585 -0.641 -0.699 -0.794 + -0.766 -0.662 -0.853 -0.875 -0.890 -0.874 -1.216 -1.237 -1.048 -1.078 + 0.239 0.155 0.233 0.207 0.264 0.211 0.137 0.168 0.158 0.145 + 0.133 0.097 0.194 0.234 0.206 0.135 0.167 0.183 0.154 0.124 + 0.196 0.240 0.114 0.112 0.114 0.179 0.090 0.141 0.140 0.082 + 0.183 0.127 0.074 0.204 0.199 0.105 0.096 0.131 0.221 0.172 + 0.099 0.202 0.069 0.134 0.208 0.131 0.169 0.153 0.176 0.178 + 0.206 0.165 0.175 0.219 0.258 0.139 0.254 0.187 0.230 0.223 + + 276 iasi616_metop-a 231 0.404305E-01 + -0.173 -0.147 -0.251 -0.258 -0.103 -0.156 -0.129 -0.074 -0.041 -0.111 + -0.056 -0.064 -0.023 0.010 -0.050 -0.006 0.067 0.034 -0.025 0.005 + 0.009 0.006 -0.028 -0.020 0.026 0.039 0.039 0.013 0.066 0.026 + -0.358 -0.416 -0.399 -0.384 -0.312 -0.390 -0.446 -0.454 -0.439 -0.439 + -0.455 -0.483 -0.414 -0.358 -0.425 -0.463 -0.461 -0.417 -0.482 -0.436 + -0.425 -0.402 -0.478 -0.479 -0.402 -0.460 -0.488 -0.401 -0.463 -0.485 + -0.401 -0.486 -0.500 -0.385 -0.390 -0.475 -0.478 -0.495 -0.392 -0.399 + -0.464 -0.410 -0.538 -0.470 -0.394 -0.446 -0.413 -0.432 -0.470 -0.397 + -0.351 -0.406 -0.441 -0.409 -0.327 -0.416 -0.333 -0.442 -0.369 -0.349 + + 277 iasi616_metop-a 232 0.426005E-01 + -0.328 -0.343 -0.356 -0.394 -0.360 -0.382 -0.365 -0.338 -0.318 -0.326 + -0.364 -0.379 -0.339 -0.281 -0.369 -0.384 -0.300 -0.381 -0.379 -0.404 + -0.394 -0.374 -0.431 -0.440 -0.443 -0.445 -0.520 -0.541 -0.437 -0.484 + -0.146 -0.161 -0.227 -0.150 -0.099 -0.205 -0.235 -0.268 -0.246 -0.213 + -0.281 -0.233 -0.222 -0.165 -0.241 -0.233 -0.226 -0.224 -0.295 -0.178 + -0.217 -0.225 -0.348 -0.250 -0.185 -0.231 -0.296 -0.206 -0.183 -0.284 + -0.241 -0.255 -0.267 -0.183 -0.229 -0.202 -0.247 -0.268 -0.169 -0.193 + -0.199 -0.201 -0.318 -0.229 -0.163 -0.244 -0.219 -0.212 -0.260 -0.229 + -0.201 -0.165 -0.187 -0.188 -0.104 -0.170 -0.084 -0.249 -0.157 -0.148 + + 278 iasi616_metop-a 236 0.476507E-01 + 0.229 0.193 0.275 0.263 0.180 0.127 0.131 0.146 0.098 0.122 + 0.063 0.031 0.079 0.099 0.028 -0.018 0.088 -0.012 -0.006 -0.059 + -0.063 -0.034 -0.069 -0.116 -0.133 -0.123 -0.254 -0.265 -0.154 -0.198 + 0.647 0.593 0.614 0.536 0.646 0.642 0.575 0.510 0.555 0.540 + 0.520 0.442 0.579 0.624 0.487 0.487 0.537 0.484 0.519 0.579 + 0.553 0.601 0.348 0.529 0.542 0.533 0.413 0.572 0.586 0.499 + 0.539 0.488 0.526 0.540 0.511 0.445 0.523 0.477 0.545 0.496 + 0.482 0.565 0.438 0.503 0.525 0.492 0.522 0.499 0.533 0.588 + 0.568 0.572 0.549 0.562 0.547 0.487 0.608 0.600 0.520 0.537 + + 279 iasi616_metop-a 237 0.467993E-01 + 0.411 0.409 0.379 0.368 0.477 0.384 0.371 0.454 0.477 0.402 + 0.429 0.420 0.489 0.461 0.426 0.435 0.549 0.510 0.433 0.449 + 0.481 0.471 0.451 0.419 0.510 0.461 0.485 0.442 0.502 0.453 + 0.327 0.289 0.353 0.260 0.350 0.296 0.259 0.245 0.243 0.178 + 0.193 0.148 0.274 0.300 0.190 0.182 0.200 0.127 0.181 0.255 + 0.193 0.215 0.095 0.235 0.203 0.177 0.095 0.256 0.255 0.153 + 0.209 0.191 0.189 0.188 0.221 0.190 0.147 0.105 0.281 0.230 + 0.166 0.222 0.115 0.212 0.217 0.158 0.267 0.249 0.225 0.279 + 0.285 0.266 0.223 0.234 0.279 0.249 0.313 0.273 0.229 0.296 + + 280 iasi616_metop-a 239 0.491963E-01 + 0.009 0.009 -0.029 -0.053 0.056 0.014 0.024 0.088 0.152 0.048 + 0.088 0.078 0.175 0.116 0.105 0.139 0.213 0.185 0.141 0.154 + 0.152 0.146 0.143 0.145 0.201 0.158 0.195 0.168 0.202 0.147 + -0.007 -0.068 -0.019 -0.100 -0.031 -0.078 -0.136 -0.071 -0.180 -0.186 + -0.192 -0.113 -0.015 -0.057 -0.118 -0.134 -0.082 -0.129 -0.211 -0.048 + -0.095 -0.066 -0.282 -0.118 -0.096 -0.181 -0.266 -0.093 -0.096 -0.143 + -0.133 -0.162 -0.165 -0.120 -0.087 -0.123 -0.154 -0.185 -0.107 -0.080 + -0.158 -0.114 -0.200 -0.097 -0.038 -0.173 -0.017 -0.121 -0.124 -0.092 + -0.144 -0.022 -0.116 -0.071 -0.015 -0.084 0.003 -0.089 -0.147 -0.062 + + 281 iasi616_metop-a 243 0.531497E-01 + 0.309 0.247 0.390 0.372 0.232 0.229 0.220 0.250 0.200 0.178 + 0.120 0.143 0.146 0.177 0.061 0.067 0.125 0.050 0.035 0.021 + -0.016 0.015 -0.026 -0.032 -0.016 -0.064 -0.178 -0.183 -0.103 -0.123 + 0.624 0.577 0.552 0.565 0.564 0.606 0.462 0.414 0.514 0.481 + 0.464 0.406 0.486 0.584 0.498 0.581 0.562 0.457 0.377 0.502 + 0.460 0.607 0.355 0.519 0.508 0.531 0.348 0.533 0.565 0.451 + 0.489 0.488 0.440 0.549 0.526 0.495 0.495 0.438 0.561 0.488 + 0.430 0.485 0.468 0.524 0.540 0.410 0.539 0.420 0.503 0.557 + 0.535 0.469 0.524 0.487 0.586 0.436 0.567 0.564 0.433 0.532 + + 282 iasi616_metop-a 246 0.506413E-01 + 0.269 0.333 0.245 0.223 0.345 0.272 0.264 0.329 0.382 0.290 + 0.361 0.388 0.435 0.364 0.389 0.413 0.495 0.439 0.358 0.430 + 0.436 0.421 0.427 0.433 0.512 0.453 0.554 0.486 0.530 0.509 + 0.116 0.112 0.084 0.143 0.120 0.025 0.092 0.062 0.057 0.001 + 0.046 0.057 0.118 0.124 0.078 0.099 0.073 -0.055 -0.007 0.145 + 0.028 0.073 -0.092 0.106 0.022 0.007 -0.050 0.070 0.126 -0.041 + 0.072 0.094 0.022 0.068 0.086 0.088 0.034 -0.092 0.147 0.095 + 0.056 0.044 -0.010 0.110 0.115 -0.080 0.089 0.141 0.039 0.051 + 0.061 0.164 0.106 0.055 0.183 0.168 0.148 0.077 0.078 0.134 + + 283 iasi616_metop-a 249 0.540027E-01 + 0.458 0.426 0.525 0.515 0.402 0.404 0.374 0.418 0.337 0.366 + 0.313 0.322 0.333 0.355 0.280 0.303 0.381 0.239 0.297 0.256 + 0.214 0.231 0.206 0.239 0.214 0.164 0.129 0.123 0.165 0.129 + 0.742 0.725 0.715 0.683 0.709 0.694 0.665 0.688 0.652 0.658 + 0.612 0.605 0.694 0.682 0.634 0.689 0.682 0.614 0.566 0.653 + 0.636 0.672 0.507 0.680 0.651 0.677 0.508 0.688 0.695 0.598 + 0.679 0.554 0.534 0.695 0.670 0.615 0.591 0.555 0.676 0.655 + 0.623 0.636 0.623 0.614 0.715 0.520 0.671 0.585 0.645 0.685 + 0.597 0.709 0.634 0.669 0.735 0.621 0.720 0.670 0.620 0.663 + + 284 iasi616_metop-a 252 0.551186E-01 + 0.551 0.564 0.545 0.576 0.568 0.550 0.538 0.616 0.616 0.530 + 0.558 0.621 0.602 0.599 0.577 0.587 0.704 0.623 0.596 0.628 + 0.633 0.589 0.616 0.622 0.694 0.641 0.688 0.668 0.698 0.663 + 0.417 0.377 0.348 0.346 0.412 0.322 0.294 0.282 0.244 0.248 + 0.191 0.229 0.367 0.372 0.206 0.284 0.306 0.159 0.223 0.298 + 0.267 0.271 0.091 0.221 0.201 0.321 0.127 0.247 0.344 0.218 + 0.256 0.235 0.195 0.312 0.267 0.218 0.240 0.183 0.303 0.255 + 0.299 0.299 0.235 0.281 0.355 0.130 0.295 0.313 0.308 0.281 + 0.268 0.311 0.382 0.340 0.388 0.342 0.380 0.324 0.318 0.330 + + 285 iasi616_metop-a 254 0.359402E-01 + -0.512 -0.482 -0.709 -0.645 -0.322 -0.394 -0.416 -0.199 -0.056 -0.262 + -0.149 -0.100 -0.005 -0.075 -0.094 0.032 0.144 0.094 -0.002 0.103 + 0.176 0.105 0.096 0.157 0.244 0.212 0.289 0.277 0.291 0.287 + -0.646 -0.661 -0.616 -0.599 -0.571 -0.610 -0.676 -0.644 -0.642 -0.607 + -0.655 -0.648 -0.573 -0.514 -0.625 -0.594 -0.606 -0.573 -0.562 -0.588 + -0.563 -0.558 -0.681 -0.529 -0.628 -0.573 -0.670 -0.579 -0.529 -0.647 + -0.600 -0.651 -0.640 -0.588 -0.561 -0.692 -0.603 -0.659 -0.606 -0.625 + -0.615 -0.621 -0.737 -0.681 -0.545 -0.683 -0.651 -0.749 -0.628 -0.576 + -0.619 -0.687 -0.677 -0.689 -0.631 -0.745 -0.603 -0.638 -0.846 -0.750 + + 286 iasi616_metop-a 259 0.535658E-01 + -0.108 -0.075 0.037 -0.030 -0.206 -0.145 -0.235 -0.292 -0.286 -0.264 + -0.453 -0.448 -0.413 -0.309 -0.500 -0.601 -0.456 -0.531 -0.619 -0.753 + -0.735 -0.645 -0.836 -0.898 -0.879 -0.889 -1.302 -1.361 -1.072 -1.127 + 0.369 0.323 0.411 0.362 0.365 0.360 0.232 0.332 0.262 0.158 + 0.165 0.262 0.280 0.379 0.260 0.246 0.236 0.219 0.270 0.338 + 0.257 0.283 0.169 0.320 0.282 0.212 0.140 0.265 0.236 0.246 + 0.333 0.244 0.219 0.347 0.286 0.307 0.256 0.231 0.291 0.271 + 0.306 0.280 0.233 0.312 0.303 0.155 0.328 0.303 0.264 0.284 + 0.271 0.382 0.325 0.283 0.448 0.312 0.376 0.342 0.343 0.302 + + 287 iasi616_metop-a 260 0.430370E-01 + -0.092 -0.046 -0.161 -0.146 0.106 0.001 0.030 0.115 0.213 0.122 + 0.079 0.187 0.236 0.217 0.165 0.257 0.367 0.243 0.199 0.266 + 0.292 0.233 0.305 0.293 0.363 0.318 0.360 0.372 0.368 0.343 + 0.143 0.127 0.201 0.173 0.160 0.156 0.120 0.155 0.058 0.017 + 0.019 0.100 0.108 0.171 0.136 0.111 0.069 -0.023 0.136 0.159 + 0.104 0.151 -0.005 0.132 0.052 0.106 0.015 0.120 0.123 0.068 + 0.122 0.092 0.006 0.178 0.178 0.135 0.065 -0.025 0.139 0.110 + 0.123 0.104 0.069 0.134 0.163 -0.024 0.142 0.107 0.048 0.146 + 0.129 0.176 0.119 0.066 0.244 0.081 0.148 0.099 0.069 0.079 + + 288 iasi616_metop-a 262 0.529063E-01 + 0.292 0.309 0.378 0.310 0.260 0.283 0.257 0.254 0.235 0.240 + 0.089 0.159 0.174 0.206 0.107 0.101 0.205 0.087 0.023 -0.028 + 0.008 0.022 -0.102 -0.141 -0.066 -0.087 -0.359 -0.389 -0.251 -0.263 + 0.523 0.514 0.527 0.534 0.549 0.511 0.459 0.543 0.464 0.325 + 0.331 0.452 0.544 0.558 0.441 0.463 0.469 0.335 0.465 0.580 + 0.505 0.496 0.350 0.475 0.434 0.520 0.254 0.506 0.515 0.432 + 0.421 0.458 0.442 0.496 0.500 0.473 0.451 0.356 0.497 0.466 + 0.525 0.490 0.470 0.516 0.542 0.370 0.499 0.498 0.477 0.514 + 0.458 0.553 0.509 0.531 0.585 0.480 0.593 0.524 0.554 0.531 + + 289 iasi616_metop-a 265 0.558155E-01 + 0.373 0.396 0.400 0.409 0.396 0.335 0.366 0.477 0.420 0.317 + 0.289 0.387 0.367 0.332 0.347 0.398 0.458 0.381 0.326 0.361 + 0.391 0.339 0.364 0.376 0.417 0.391 0.431 0.439 0.438 0.410 + 0.078 0.031 -0.019 -0.005 0.015 0.054 0.005 -0.027 -0.094 -0.096 + -0.095 -0.072 0.006 0.091 -0.059 -0.064 0.003 -0.138 -0.123 0.057 + 0.017 -0.004 -0.041 -0.074 -0.047 0.070 -0.177 -0.096 -0.060 -0.003 + -0.001 -0.088 -0.124 0.024 -0.038 -0.032 -0.000 -0.051 -0.010 -0.082 + -0.034 -0.032 -0.092 0.029 0.032 -0.153 0.012 0.033 0.030 -0.014 + 0.045 0.028 0.013 0.019 0.086 0.014 0.082 0.071 0.117 -0.038 + + 290 iasi616_metop-a 267 0.440307E-01 + -0.466 -0.457 -0.520 -0.482 -0.285 -0.452 -0.370 -0.234 -0.190 -0.305 + -0.294 -0.184 -0.130 -0.151 -0.166 -0.101 0.004 -0.049 -0.072 -0.010 + 0.021 -0.047 0.055 0.074 0.105 0.094 0.194 0.228 0.213 0.194 + -0.434 -0.444 -0.362 -0.455 -0.399 -0.414 -0.462 -0.436 -0.416 -0.504 + -0.371 -0.459 -0.361 -0.314 -0.447 -0.471 -0.450 -0.485 -0.423 -0.368 + -0.304 -0.327 -0.449 -0.322 -0.399 -0.366 -0.536 -0.418 -0.424 -0.458 + -0.435 -0.460 -0.426 -0.335 -0.380 -0.578 -0.356 -0.466 -0.443 -0.445 + -0.394 -0.452 -0.455 -0.467 -0.345 -0.465 -0.502 -0.446 -0.406 -0.386 + -0.424 -0.429 -0.470 -0.525 -0.313 -0.517 -0.402 -0.404 -0.538 -0.490 + + 291 iasi616_metop-a 269 0.440360E-01 + -0.131 -0.085 -0.066 -0.123 -0.184 -0.170 -0.226 -0.289 -0.217 -0.208 + -0.359 -0.370 -0.290 -0.272 -0.386 -0.470 -0.319 -0.365 -0.496 -0.581 + -0.543 -0.469 -0.609 -0.655 -0.634 -0.675 -0.969 -0.993 -0.771 -0.843 + 0.250 0.195 0.162 0.227 0.231 0.188 0.190 0.155 0.096 0.074 + 0.131 0.179 0.226 0.230 0.151 0.203 0.124 0.054 0.130 0.228 + 0.136 0.143 0.026 0.121 0.163 0.201 0.032 0.172 0.178 0.133 + 0.140 0.160 0.149 0.179 0.195 0.159 0.194 0.107 0.221 0.113 + 0.177 0.185 0.148 0.221 0.196 0.100 0.160 0.167 0.175 0.151 + 0.195 0.227 0.214 0.183 0.253 0.195 0.285 0.204 0.211 0.208 + + 292 iasi616_metop-a 275 0.523422E-01 + 0.263 0.299 0.343 0.312 0.278 0.248 0.266 0.304 0.291 0.242 + 0.184 0.256 0.283 0.294 0.208 0.202 0.341 0.234 0.215 0.190 + 0.199 0.204 0.215 0.204 0.264 0.205 0.165 0.148 0.232 0.208 + 0.408 0.284 0.381 0.452 0.319 0.349 0.303 0.352 0.303 0.289 + 0.341 0.343 0.379 0.402 0.308 0.420 0.301 0.154 0.267 0.433 + 0.384 0.367 0.267 0.374 0.302 0.410 0.227 0.422 0.453 0.239 + 0.282 0.297 0.301 0.373 0.381 0.328 0.357 0.189 0.417 0.354 + 0.398 0.241 0.330 0.343 0.380 0.167 0.345 0.348 0.284 0.345 + 0.340 0.347 0.358 0.317 0.435 0.314 0.389 0.378 0.268 0.418 + + 293 iasi616_metop-a 279 0.512569E-01 + 0.765 0.790 0.825 0.769 0.691 0.697 0.596 0.657 0.568 0.600 + 0.502 0.538 0.506 0.602 0.548 0.548 0.583 0.470 0.460 0.469 + 0.496 0.416 0.466 0.466 0.419 0.418 0.439 0.420 0.467 0.420 + 0.649 0.634 0.629 0.675 0.652 0.604 0.641 0.547 0.570 0.558 + 0.531 0.606 0.624 0.669 0.562 0.577 0.501 0.454 0.584 0.738 + 0.643 0.504 0.548 0.621 0.453 0.599 0.398 0.720 0.520 0.454 + 0.586 0.597 0.501 0.642 0.576 0.548 0.602 0.491 0.604 0.541 + 0.647 0.528 0.594 0.681 0.612 0.552 0.531 0.687 0.632 0.482 + 0.585 0.694 0.615 0.560 0.662 0.659 0.694 0.729 0.560 0.681 + + 294 iasi616_metop-a 282 0.425412E-01 + 0.407 0.439 0.445 0.460 0.556 0.425 0.521 0.544 0.619 0.465 + 0.512 0.632 0.554 0.541 0.581 0.636 0.714 0.595 0.639 0.682 + 0.695 0.620 0.804 0.812 0.801 0.802 0.978 0.990 0.908 0.879 + 0.286 0.241 0.283 0.262 0.253 0.268 0.183 0.200 0.120 0.165 + 0.147 0.211 0.215 0.245 0.217 0.195 0.143 0.121 0.246 0.216 + 0.189 0.217 0.030 0.097 0.221 0.214 0.074 0.163 0.157 0.173 + 0.179 0.142 0.105 0.221 0.216 0.122 0.215 0.070 0.269 0.189 + 0.237 0.237 0.184 0.212 0.162 0.067 0.198 0.258 0.134 0.195 + 0.166 0.262 0.206 0.200 0.290 0.231 0.295 0.265 0.277 0.163 + + 295 iasi616_metop-a 285 0.474413E-01 + 0.673 0.731 0.835 0.766 0.586 0.665 0.589 0.574 0.490 0.552 + 0.378 0.464 0.453 0.502 0.439 0.437 0.487 0.447 0.414 0.347 + 0.375 0.358 0.419 0.350 0.351 0.378 0.323 0.297 0.389 0.365 + 0.713 0.757 0.708 0.746 0.728 0.603 0.790 0.513 0.719 0.703 + 0.593 0.578 0.725 0.769 0.663 0.565 0.565 0.536 0.581 0.684 + 0.709 0.540 0.499 0.567 0.436 0.599 0.406 0.755 0.520 0.503 + 0.650 0.527 0.486 0.662 0.573 0.544 0.625 0.523 0.755 0.385 + 0.693 0.578 0.563 0.783 0.758 0.533 0.684 0.790 0.684 0.568 + 0.620 0.803 0.657 0.618 0.713 0.769 0.785 0.895 0.643 0.710 + + 296 iasi616_metop-a 294 0.477563E-01 + 0.358 0.425 0.404 0.337 0.432 0.373 0.422 0.406 0.487 0.399 + 0.425 0.478 0.440 0.451 0.453 0.493 0.544 0.524 0.521 0.557 + 0.577 0.531 0.655 0.683 0.691 0.740 0.939 0.949 0.839 0.843 + 0.110 0.038 0.092 0.123 0.111 0.050 0.067 0.094 0.059 -0.004 + 0.038 0.047 0.100 0.087 -0.032 0.068 0.009 -0.056 -0.010 0.103 + 0.072 -0.046 -0.050 0.075 0.013 -0.004 -0.031 0.061 0.055 -0.015 + -0.025 0.040 -0.031 0.048 0.038 0.076 0.091 -0.023 0.084 0.083 + 0.065 -0.040 0.018 0.118 0.058 -0.070 0.046 0.153 0.080 0.030 + 0.063 0.110 0.109 0.029 0.112 0.106 0.165 0.042 0.118 0.144 + + 297 iasi616_metop-a 296 0.436341E-01 + -0.072 -0.067 -0.075 -0.021 -0.023 -0.075 -0.057 0.053 0.027 -0.046 + -0.036 0.050 0.030 -0.039 -0.007 0.055 0.070 0.003 -0.006 0.075 + 0.064 -0.025 0.046 0.081 0.084 0.048 0.161 0.193 0.165 0.104 + -0.294 -0.345 -0.356 -0.282 -0.264 -0.302 -0.319 -0.382 -0.377 -0.403 + -0.369 -0.389 -0.340 -0.350 -0.332 -0.364 -0.306 -0.377 -0.415 -0.292 + -0.357 -0.391 -0.446 -0.321 -0.374 -0.283 -0.418 -0.320 -0.354 -0.432 + -0.354 -0.364 -0.424 -0.338 -0.292 -0.371 -0.296 -0.427 -0.343 -0.332 + -0.386 -0.324 -0.384 -0.314 -0.317 -0.422 -0.320 -0.322 -0.346 -0.359 + -0.322 -0.342 -0.268 -0.290 -0.249 -0.286 -0.290 -0.351 -0.337 -0.318 + + 298 iasi616_metop-a 299 0.168793E-01 + -0.759 -0.730 -0.897 -0.841 -0.584 -0.675 -0.619 -0.541 -0.525 -0.576 + -0.532 -0.523 -0.460 -0.473 -0.481 -0.397 -0.367 -0.400 -0.389 -0.367 + -0.355 -0.412 -0.365 -0.360 -0.345 -0.352 -0.269 -0.303 -0.267 -0.342 + -0.652 -0.654 -0.604 -0.634 -0.616 -0.750 -0.633 -0.677 -0.663 -0.693 + -0.662 -0.670 -0.591 -0.701 -0.597 -0.617 -0.631 -0.614 -0.659 -0.658 + -0.612 -0.667 -0.636 -0.629 -0.640 -0.646 -0.607 -0.656 -0.604 -0.613 + -0.679 -0.633 -0.648 -0.664 -0.569 -0.602 -0.558 -0.658 -0.584 -0.649 + -0.630 -0.634 -0.642 -0.616 -0.623 -0.592 -0.577 -0.633 -0.624 -0.650 + -0.629 -0.634 -0.591 -0.623 -0.548 -0.594 -0.580 -0.616 -0.628 -0.643 + + 299 iasi616_metop-a 300 -0.223917E-02 + -0.793 -0.845 -0.938 -0.850 -0.857 -0.866 -0.859 -0.777 -0.822 -0.886 + -0.888 -0.881 -0.906 -0.878 -0.935 -0.920 -0.857 -0.897 -1.054 -1.006 + -0.953 -0.951 -1.121 -1.131 -1.036 -1.061 -1.305 -1.299 -1.196 -1.213 + -1.278 -1.296 -1.200 -1.200 -1.162 -1.300 -1.152 -1.223 -1.189 -1.162 + -1.179 -1.167 -1.119 -1.195 -1.115 -1.106 -1.133 -1.103 -1.086 -1.109 + -1.144 -1.147 -1.110 -1.070 -1.092 -1.100 -1.066 -1.094 -1.053 -1.003 + -1.123 -1.061 -1.088 -1.119 -1.093 -1.043 -1.011 -1.164 -1.066 -1.106 + -1.020 -1.079 -1.114 -1.158 -1.120 -1.003 -1.110 -1.154 -1.072 -1.114 + -1.143 -1.166 -1.121 -1.153 -1.131 -1.191 -1.110 -1.200 -1.231 -1.180 + + 300 iasi616_metop-a 303 -0.269532E-01 + -1.291 -1.334 -1.501 -1.425 -1.392 -1.359 -1.472 -1.461 -1.358 -1.419 + -1.589 -1.594 -1.540 -1.493 -1.679 -1.736 -1.570 -1.626 -1.853 -1.866 + -1.781 -1.723 -2.139 -2.144 -2.012 -1.945 -2.460 -2.407 -2.248 -2.242 + -1.154 -2.039 -1.735 -1.699 -3.173 -1.077 -0.459 -1.567 -1.263 -1.205 + -1.829 -2.334 -1.545 -2.851 -1.345 -1.578 -3.159 -3.487 -2.058 -1.247 + -1.044 -1.830 -2.756 -1.263 -1.227 -1.692 -1.475 -1.188 -1.333 -2.625 + -2.515 -2.432 -1.744 -0.752 -1.309 -2.386 -2.501 -2.557 -0.430 -1.033 + -1.292 -2.290 -2.216 -3.551 -3.838 -2.509 -1.973 -1.653 -1.939 -2.376 + -1.793 -2.912 -1.833 -1.665 -2.215 -3.087 -2.695 -1.659 -2.229 -2.828 + + 301 iasi616_metop-a 306 0.442374E-01 + -0.478 -0.491 -0.394 -0.359 -0.482 -0.564 -0.549 -0.461 -0.544 -0.601 + -0.540 -0.519 -0.543 -0.615 -0.521 -0.543 -0.571 -0.604 -0.553 -0.630 + -0.722 -0.738 -0.543 -0.630 -0.625 -0.900 -0.960 -1.129 -0.804 -0.987 + -0.456 -0.449 -0.527 -0.554 -0.478 -0.481 -0.578 -0.613 -0.543 -0.597 + -0.599 -0.666 -0.500 -0.481 -0.658 -0.622 -0.509 -0.656 -0.632 -0.592 + -0.567 -0.574 -0.756 -0.674 -0.577 -0.478 -0.707 -0.694 -0.573 -0.587 + -0.641 -0.653 -0.588 -0.496 -0.574 -0.575 -0.627 -0.594 -0.583 -0.679 + -0.555 -0.526 -0.624 -0.584 -0.469 -0.574 -0.530 -0.564 -0.569 -0.524 + -0.590 -0.488 -0.479 -0.425 -0.458 -0.538 -0.381 -0.439 -0.457 -0.553 + + 302 iasi616_metop-a 309 0.496589E-01 + -0.282 -0.240 -0.214 -0.251 -0.305 -0.262 -0.344 -0.344 -0.314 -0.307 + -0.421 -0.415 -0.347 -0.305 -0.409 -0.380 -0.297 -0.329 -0.379 -0.436 + -0.354 -0.367 -0.373 -0.407 -0.359 -0.336 -0.367 -0.390 -0.333 -0.314 + -0.259 -0.202 -0.305 -0.232 -0.240 -0.305 -0.246 -0.407 -0.284 -0.345 + -0.437 -0.400 -0.276 -0.218 -0.303 -0.332 -0.348 -0.473 -0.356 -0.281 + -0.311 -0.400 -0.460 -0.370 -0.496 -0.358 -0.548 -0.230 -0.405 -0.408 + -0.311 -0.327 -0.426 -0.224 -0.428 -0.404 -0.385 -0.359 -0.270 -0.519 + -0.325 -0.361 -0.324 -0.244 -0.228 -0.367 -0.313 -0.248 -0.299 -0.306 + -0.300 -0.263 -0.265 -0.355 -0.233 -0.180 -0.167 -0.180 -0.299 -0.240 + + 303 iasi616_metop-a 313 0.378204E-01 + 0.597 0.612 0.717 0.603 0.413 0.459 0.448 0.304 0.390 0.365 + 0.229 0.263 0.241 0.234 0.179 0.149 0.154 0.137 0.096 0.070 + 0.048 0.072 0.109 0.096 0.043 0.105 0.092 0.099 0.112 0.097 + 0.781 0.699 0.667 0.699 0.668 0.578 0.801 0.589 0.693 0.621 + 0.574 0.444 0.619 0.774 0.656 0.571 0.514 0.588 0.459 0.712 + 0.751 0.505 0.521 0.484 0.508 0.666 0.365 0.552 0.584 0.633 + 0.669 0.600 0.522 0.644 0.418 0.624 0.588 0.611 0.689 0.680 + 0.649 0.673 0.662 0.620 0.619 0.603 0.698 0.736 0.678 0.683 + 0.630 0.602 0.699 0.720 0.686 0.669 0.824 0.760 0.670 0.752 + + 304 iasi616_metop-a 320 0.436288E-01 + 1.009 1.013 1.089 0.954 0.926 0.931 0.942 0.890 0.902 0.909 + 0.824 0.844 0.861 0.778 0.870 0.816 0.880 0.818 0.813 0.815 + 0.865 0.869 0.897 0.980 0.892 0.936 1.048 1.000 1.034 1.003 + 0.787 0.681 0.679 0.685 0.652 0.443 0.750 0.682 0.655 0.600 + 0.554 0.488 0.706 0.797 0.726 0.589 0.513 0.608 0.520 0.713 + 0.757 0.543 0.613 0.521 0.519 0.748 0.504 0.587 0.664 0.683 + 0.707 0.699 0.598 0.705 0.536 0.579 0.631 0.598 0.673 0.702 + 0.750 0.808 0.664 0.582 0.660 0.559 0.730 0.792 0.699 0.746 + 0.643 0.655 0.691 0.694 0.643 0.643 0.838 0.739 0.699 0.683 + + 305 iasi616_metop-a 323 0.417622E-01 + 0.367 0.366 0.309 0.307 0.409 0.313 0.377 0.451 0.516 0.402 + 0.382 0.425 0.545 0.405 0.441 0.519 0.615 0.535 0.538 0.592 + 0.654 0.558 0.698 0.773 0.729 0.748 0.922 0.950 0.913 0.864 + 0.053 0.152 0.067 0.000 0.096 0.124 0.041 -0.110 -0.018 0.018 + -0.018 -0.052 0.037 0.138 -0.030 -0.039 -0.045 -0.090 -0.007 0.004 + 0.014 0.000 -0.085 -0.072 -0.121 0.041 -0.156 -0.005 -0.097 0.002 + -0.034 -0.117 -0.036 0.105 -0.012 -0.121 0.037 -0.046 0.007 -0.138 + 0.007 0.042 -0.067 -0.010 0.028 0.050 -0.028 0.060 0.059 0.070 + 0.001 0.030 0.011 0.007 0.125 0.014 0.114 0.154 0.074 -0.021 + + 306 iasi616_metop-a 326 0.431676E-01 + 0.555 0.632 0.673 0.536 0.460 0.477 0.437 0.332 0.430 0.461 + 0.256 0.254 0.248 0.361 0.256 0.195 0.284 0.288 0.215 0.138 + 0.218 0.198 0.203 0.153 0.180 0.258 0.156 0.099 0.185 0.233 + 0.671 0.535 0.546 0.554 0.494 0.372 0.602 0.487 0.537 0.452 + 0.410 0.330 0.478 0.599 0.585 0.348 0.372 0.460 0.336 0.558 + 0.574 0.359 0.422 0.318 0.355 0.597 0.215 0.458 0.480 0.497 + 0.406 0.534 0.465 0.538 0.403 0.480 0.443 0.440 0.544 0.566 + 0.552 0.626 0.492 0.439 0.500 0.362 0.602 0.613 0.545 0.558 + 0.496 0.523 0.607 0.568 0.541 0.522 0.613 0.628 0.586 0.542 + + 307 iasi616_metop-a 327 0.474208E-01 + 0.753 0.799 0.843 0.722 0.689 0.673 0.731 0.669 0.723 0.648 + 0.581 0.664 0.651 0.627 0.624 0.603 0.662 0.670 0.614 0.644 + 0.679 0.657 0.742 0.760 0.791 0.792 0.927 0.903 0.922 0.867 + 0.530 0.327 0.411 0.355 0.320 0.214 0.505 0.353 0.416 0.274 + 0.299 0.252 0.360 0.426 0.386 0.258 0.250 0.281 0.160 0.447 + 0.423 0.244 0.267 0.227 0.226 0.381 0.108 0.400 0.341 0.313 + 0.336 0.463 0.372 0.360 0.229 0.376 0.304 0.293 0.444 0.384 + 0.426 0.356 0.346 0.338 0.383 0.288 0.446 0.490 0.376 0.372 + 0.326 0.366 0.431 0.415 0.407 0.420 0.461 0.400 0.440 0.481 + + 308 iasi616_metop-a 329 0.428536E-01 + 0.072 0.058 0.015 -0.019 0.125 0.065 0.088 0.129 0.178 0.086 + 0.121 0.166 0.229 0.082 0.133 0.286 0.308 0.206 0.236 0.357 + 0.354 0.250 0.370 0.435 0.451 0.396 0.619 0.644 0.583 0.499 + -0.256 -0.197 -0.153 -0.144 -0.203 -0.206 -0.148 -0.247 -0.172 -0.240 + -0.262 -0.222 -0.169 -0.149 -0.225 -0.181 -0.269 -0.255 -0.246 -0.196 + -0.161 -0.251 -0.247 -0.263 -0.300 -0.201 -0.393 -0.224 -0.333 -0.276 + -0.215 -0.148 -0.298 -0.165 -0.167 -0.270 -0.235 -0.248 -0.195 -0.248 + -0.167 -0.243 -0.201 -0.190 -0.213 -0.203 -0.125 -0.106 -0.162 -0.183 + -0.128 -0.100 -0.194 -0.222 -0.077 -0.130 -0.089 -0.126 -0.161 -0.162 + + 309 iasi616_metop-a 332 0.429447E-01 + 0.361 0.433 0.519 0.388 0.223 0.236 0.261 0.172 0.226 0.200 + 0.069 0.104 0.031 0.097 0.062 0.024 0.051 0.024 -0.009 -0.042 + -0.036 -0.046 -0.029 -0.016 -0.066 -0.014 -0.066 -0.081 -0.048 -0.059 + 0.538 0.394 0.378 0.397 0.359 0.250 0.434 0.314 0.428 0.298 + 0.289 0.162 0.364 0.551 0.416 0.251 0.217 0.299 0.222 0.460 + 0.478 0.320 0.378 0.175 0.303 0.467 0.109 0.309 0.417 0.346 + 0.346 0.382 0.302 0.406 0.227 0.313 0.282 0.356 0.434 0.365 + 0.437 0.503 0.399 0.303 0.395 0.342 0.427 0.447 0.427 0.490 + 0.404 0.357 0.427 0.457 0.340 0.424 0.473 0.471 0.476 0.450 + + 310 iasi616_metop-a 335 0.407919E-01 + 0.007 0.022 -0.056 -0.122 0.067 0.040 0.016 0.071 0.131 0.107 + 0.068 0.099 0.190 0.156 0.112 0.194 0.303 0.279 0.200 0.300 + 0.374 0.275 0.385 0.431 0.461 0.487 0.653 0.672 0.629 0.614 + -0.223 -0.268 -0.196 -0.183 -0.202 -0.196 -0.215 -0.319 -0.226 -0.251 + -0.267 -0.231 -0.225 -0.233 -0.291 -0.243 -0.288 -0.339 -0.283 -0.184 + -0.229 -0.346 -0.353 -0.250 -0.386 -0.340 -0.349 -0.210 -0.373 -0.339 + -0.238 -0.215 -0.331 -0.204 -0.264 -0.246 -0.234 -0.304 -0.216 -0.278 + -0.261 -0.313 -0.243 -0.188 -0.251 -0.283 -0.234 -0.199 -0.273 -0.225 + -0.225 -0.155 -0.223 -0.295 -0.125 -0.156 -0.164 -0.196 -0.162 -0.170 + + 311 iasi616_metop-a 345 0.570331E-01 + 0.265 0.215 0.343 0.339 0.195 0.128 0.175 0.069 0.113 0.013 + 0.027 0.021 -0.008 0.062 -0.042 -0.011 -0.008 -0.043 -0.096 -0.094 + -0.109 -0.150 -0.081 -0.095 -0.121 -0.115 -0.146 -0.142 -0.112 -0.154 + 0.443 0.317 0.262 0.233 0.386 0.334 0.407 0.315 0.437 0.358 + 0.328 0.264 0.222 0.419 0.322 0.377 0.404 0.196 0.354 0.359 + 0.271 0.157 0.141 0.338 0.193 0.340 0.190 0.363 0.358 0.283 + 0.160 0.354 0.264 0.370 0.289 0.203 0.299 0.181 0.505 0.287 + 0.290 0.255 0.276 0.392 0.323 0.297 0.259 0.353 0.227 0.324 + 0.324 0.363 0.433 0.351 0.333 0.414 0.414 0.441 0.354 0.315 + + 312 iasi616_metop-a 347 0.442256E-01 + -0.065 0.008 -0.119 -0.179 0.068 -0.020 0.054 -0.011 0.155 -0.006 + 0.085 0.006 0.175 0.170 0.178 0.230 0.257 0.204 0.242 0.227 + 0.287 0.228 0.342 0.339 0.392 0.400 0.642 0.612 0.594 0.515 + -0.283 -0.322 -0.221 -0.215 -0.394 -0.288 -0.279 -0.289 -0.333 -0.375 + -0.305 -0.228 -0.288 -0.283 -0.289 -0.232 -0.342 -0.502 -0.296 -0.245 + -0.265 -0.399 -0.394 -0.265 -0.457 -0.370 -0.424 -0.217 -0.419 -0.429 + -0.337 -0.261 -0.434 -0.350 -0.341 -0.384 -0.331 -0.421 -0.278 -0.345 + -0.307 -0.409 -0.279 -0.265 -0.309 -0.374 -0.263 -0.221 -0.304 -0.323 + -0.251 -0.200 -0.299 -0.387 -0.184 -0.247 -0.236 -0.249 -0.293 -0.280 + + 313 iasi616_metop-a 350 0.482951E-01 + -0.026 0.019 0.067 0.054 -0.077 -0.085 -0.018 -0.050 -0.070 -0.177 + -0.208 -0.109 -0.228 -0.229 -0.179 -0.136 -0.166 -0.235 -0.224 -0.230 + -0.239 -0.343 -0.263 -0.213 -0.287 -0.306 -0.305 -0.271 -0.280 -0.356 + -0.041 0.104 -0.048 -0.099 0.007 -0.098 0.081 -0.228 -0.052 -0.034 + -0.126 -0.183 0.057 0.089 -0.023 -0.086 -0.157 -0.092 -0.162 -0.062 + -0.018 -0.110 -0.193 -0.169 -0.196 0.026 -0.291 -0.034 -0.089 -0.101 + -0.016 -0.163 -0.138 0.096 -0.187 -0.183 -0.073 -0.027 0.019 -0.444 + -0.017 -0.031 -0.115 0.044 0.038 -0.049 -0.057 0.020 0.032 0.053 + -0.092 -0.010 0.030 -0.030 -0.048 -0.010 0.095 0.189 -0.037 0.013 + + 314 iasi616_metop-a 354 0.429181E-01 + -0.205 -0.107 -0.167 -0.247 -0.066 -0.182 -0.129 -0.087 -0.024 -0.119 + -0.098 -0.102 -0.048 -0.074 -0.107 -0.055 0.010 -0.016 -0.069 -0.012 + 0.056 -0.028 0.048 0.027 0.081 0.088 0.154 0.143 0.164 0.140 + -0.173 -0.103 -0.191 -0.254 -0.195 -0.103 -0.250 -0.290 -0.172 -0.159 + -0.201 -0.290 -0.136 -0.054 -0.270 -0.289 -0.233 -0.241 -0.203 -0.223 + -0.188 -0.224 -0.324 -0.229 -0.314 -0.107 -0.338 -0.214 -0.274 -0.217 + -0.147 -0.290 -0.281 -0.106 -0.208 -0.305 -0.205 -0.173 -0.209 -0.325 + -0.174 -0.128 -0.265 -0.214 -0.158 -0.177 -0.238 -0.212 -0.127 -0.083 + -0.197 -0.186 -0.192 -0.194 -0.109 -0.222 -0.088 -0.057 -0.145 -0.205 + + 315 iasi616_metop-a 356 0.485200E-01 + 0.087 0.156 0.147 0.098 0.018 0.035 0.029 -0.028 0.046 -0.006 + -0.127 -0.084 -0.050 -0.019 -0.114 -0.095 -0.020 -0.088 -0.139 -0.202 + -0.143 -0.102 -0.181 -0.214 -0.160 -0.094 -0.251 -0.274 -0.159 -0.147 + 0.067 0.178 -0.000 -0.010 0.059 -0.060 0.164 -0.181 0.060 0.094 + -0.083 -0.083 0.073 0.170 0.031 -0.037 -0.090 -0.034 -0.054 -0.021 + 0.052 -0.055 -0.113 -0.138 -0.089 0.152 -0.207 0.072 -0.009 0.006 + 0.065 -0.043 -0.131 0.160 -0.080 -0.099 -0.058 0.010 0.138 -0.394 + 0.070 0.025 -0.058 0.079 0.136 0.007 0.007 0.104 0.067 0.158 + -0.034 0.009 0.031 -0.014 0.053 0.090 0.148 0.278 -0.001 0.012 + + 316 iasi616_metop-a 360 0.409661E-01 + -0.110 -0.080 -0.122 -0.220 -0.011 -0.082 -0.069 -0.107 0.051 -0.042 + -0.030 -0.044 0.022 0.027 -0.033 0.034 0.111 0.046 0.018 0.055 + 0.119 0.060 0.140 0.117 0.144 0.184 0.254 0.242 0.256 0.239 + -0.080 -0.072 -0.116 -0.178 -0.127 -0.069 -0.101 -0.255 -0.094 -0.162 + -0.207 -0.173 -0.042 -0.022 -0.224 -0.238 -0.108 -0.259 -0.188 -0.156 + -0.130 -0.166 -0.261 -0.175 -0.262 -0.113 -0.246 -0.201 -0.163 -0.168 + -0.129 -0.215 -0.199 -0.122 -0.162 -0.311 -0.154 -0.119 -0.181 -0.263 + -0.152 -0.113 -0.184 -0.129 -0.147 -0.093 -0.210 -0.129 -0.056 -0.084 + -0.098 -0.166 -0.125 -0.108 -0.097 -0.147 -0.044 -0.035 -0.083 -0.129 + + 317 iasi616_metop-a 363 0.437924E-01 + 0.033 0.110 0.096 0.010 0.023 0.014 -0.004 -0.071 0.050 -0.028 + -0.123 -0.062 -0.103 -0.005 -0.111 -0.090 -0.007 -0.071 -0.151 -0.192 + -0.114 -0.099 -0.158 -0.170 -0.132 -0.090 -0.223 -0.226 -0.134 -0.151 + 0.007 0.022 -0.151 -0.031 -0.016 -0.227 0.122 -0.241 -0.002 -0.108 + -0.218 -0.188 -0.062 0.092 0.031 0.000 -0.261 -0.134 -0.157 0.008 + 0.016 -0.115 -0.201 -0.261 -0.169 -0.003 -0.332 -0.032 -0.151 -0.070 + 0.010 -0.041 -0.184 0.105 -0.282 -0.181 -0.082 -0.128 -0.009 -0.381 + 0.058 -0.137 -0.099 0.004 0.087 -0.174 -0.068 0.061 0.040 -0.017 + -0.084 -0.016 0.015 -0.001 -0.014 0.070 -0.003 0.155 -0.006 0.017 + + 318 iasi616_metop-a 366 0.413952E-01 + -0.177 -0.161 -0.219 -0.289 -0.071 -0.183 -0.173 -0.136 -0.013 -0.095 + -0.159 -0.109 -0.023 -0.099 -0.129 -0.010 0.018 -0.042 -0.064 -0.039 + 0.045 -0.021 0.016 -0.017 0.071 0.028 0.071 0.096 0.157 0.085 + -0.114 -0.085 -0.117 -0.124 -0.103 -0.088 -0.083 -0.239 -0.126 -0.136 + -0.182 -0.194 -0.154 -0.032 -0.194 -0.156 -0.195 -0.177 -0.210 -0.139 + -0.102 -0.181 -0.220 -0.156 -0.231 -0.086 -0.272 -0.137 -0.207 -0.164 + -0.138 -0.155 -0.218 -0.089 -0.154 -0.300 -0.095 -0.119 -0.153 -0.242 + -0.132 -0.117 -0.186 -0.126 -0.121 -0.147 -0.162 -0.136 -0.100 -0.078 + -0.147 -0.074 -0.156 -0.151 -0.045 -0.097 -0.069 -0.002 -0.113 -0.125 + + 319 iasi616_metop-a 371 0.482715E-01 + -0.062 0.023 -0.058 -0.099 -0.052 -0.052 -0.091 -0.129 -0.015 -0.048 + -0.137 -0.179 -0.105 -0.072 -0.191 -0.157 -0.088 -0.093 -0.205 -0.232 + -0.178 -0.171 -0.252 -0.252 -0.204 -0.154 -0.282 -0.308 -0.199 -0.194 + -0.210 -0.242 -0.198 -0.127 -0.203 -0.384 -0.150 -0.274 -0.259 -0.331 + -0.279 -0.298 -0.267 -0.255 -0.269 -0.201 -0.361 -0.441 -0.273 -0.088 + -0.215 -0.458 -0.324 -0.218 -0.377 -0.369 -0.379 -0.095 -0.308 -0.393 + -0.215 -0.182 -0.379 -0.243 -0.296 -0.296 -0.382 -0.347 -0.157 -0.381 + -0.217 -0.373 -0.266 -0.164 -0.235 -0.383 -0.215 -0.146 -0.194 -0.304 + -0.212 -0.147 -0.241 -0.384 -0.176 -0.098 -0.183 -0.172 -0.154 -0.137 + + 320 iasi616_metop-a 372 0.450507E-01 + -0.210 -0.196 -0.214 -0.235 -0.120 -0.254 -0.195 -0.172 -0.100 -0.223 + -0.184 -0.127 -0.150 -0.171 -0.172 -0.063 -0.091 -0.171 -0.144 -0.084 + -0.096 -0.187 -0.042 -0.059 -0.089 -0.150 0.006 0.056 -0.038 -0.109 + -0.133 -0.044 -0.066 -0.078 -0.089 -0.098 -0.053 -0.194 -0.159 -0.154 + -0.174 -0.262 -0.149 -0.064 -0.157 -0.158 -0.194 -0.211 -0.135 -0.045 + -0.098 -0.206 -0.185 -0.167 -0.223 -0.088 -0.241 -0.089 -0.200 -0.175 + -0.123 -0.118 -0.193 -0.116 -0.136 -0.243 -0.149 -0.184 -0.073 -0.151 + -0.130 -0.137 -0.154 -0.143 -0.128 -0.159 -0.150 -0.117 -0.096 -0.057 + -0.073 -0.113 -0.137 -0.145 -0.042 -0.099 -0.074 0.004 -0.083 -0.078 + + 321 iasi616_metop-a 373 0.485617E-01 + 0.085 0.125 0.167 0.161 0.082 0.057 0.084 0.052 0.051 0.008 + -0.020 0.025 -0.016 0.021 -0.024 0.000 0.021 -0.036 -0.060 -0.046 + -0.054 -0.115 -0.073 -0.087 -0.114 -0.083 -0.169 -0.169 -0.123 -0.141 + 0.158 0.344 0.206 0.107 0.238 0.249 0.160 -0.057 0.176 0.206 + 0.079 -0.091 0.174 0.318 0.119 0.037 0.067 0.081 0.076 0.095 + 0.222 0.120 -0.004 -0.035 0.069 0.296 -0.057 0.112 0.078 0.171 + 0.086 -0.022 0.069 0.282 0.105 -0.119 0.188 0.162 0.174 -0.076 + 0.225 0.217 0.056 0.043 0.182 0.204 0.109 0.051 0.224 0.270 + 0.131 0.099 0.208 0.204 0.202 0.087 0.252 0.453 0.109 0.078 + + 322 iasi616_metop-a 375 0.452136E-01 + 0.324 0.408 0.337 0.250 0.349 0.290 0.263 0.174 0.364 0.293 + 0.138 0.179 0.218 0.284 0.150 0.181 0.277 0.259 0.175 0.130 + 0.238 0.209 0.209 0.177 0.261 0.393 0.259 0.209 0.317 0.347 + 0.006 0.140 -0.039 0.011 0.066 -0.050 0.136 -0.131 0.010 -0.011 + -0.037 -0.110 0.014 0.228 0.083 -0.026 -0.157 -0.055 0.024 0.117 + -0.023 0.001 -0.147 -0.163 -0.063 0.137 -0.301 0.069 -0.024 -0.010 + 0.117 0.022 -0.104 0.173 -0.162 -0.112 -0.014 -0.005 0.155 -0.405 + 0.055 -0.026 -0.028 0.090 0.095 -0.075 0.048 0.119 0.141 0.162 + 0.014 0.050 0.047 0.049 0.076 0.081 0.112 0.243 0.095 0.082 + + 323 iasi616_metop-a 377 0.484231E-01 + 0.057 0.193 0.058 -0.078 0.143 0.041 0.045 0.014 0.124 0.067 + -0.004 -0.022 0.077 0.040 -0.029 0.026 0.077 0.081 0.003 0.010 + 0.100 0.073 0.119 0.081 0.153 0.184 0.222 0.213 0.280 0.246 + -0.231 -0.246 -0.239 -0.105 -0.233 -0.422 -0.130 -0.293 -0.234 -0.372 + -0.249 -0.279 -0.247 -0.282 -0.198 -0.241 -0.355 -0.439 -0.280 -0.131 + -0.250 -0.431 -0.373 -0.252 -0.352 -0.356 -0.443 -0.032 -0.310 -0.376 + -0.229 -0.194 -0.367 -0.272 -0.288 -0.229 -0.283 -0.391 -0.101 -0.435 + -0.191 -0.389 -0.291 -0.014 -0.236 -0.403 -0.202 -0.109 -0.241 -0.328 + -0.196 -0.119 -0.245 -0.389 -0.166 -0.065 -0.173 -0.201 -0.192 -0.184 + + 324 iasi616_metop-a 379 0.480935E-01 + 0.084 0.030 0.143 0.130 0.072 -0.049 0.061 0.097 0.013 -0.037 + 0.035 0.081 -0.027 -0.068 -0.009 0.090 0.026 -0.116 0.003 0.060 + -0.025 -0.113 0.046 0.084 -0.007 -0.111 0.046 0.123 0.087 -0.051 + 0.174 0.366 0.150 0.145 0.175 0.272 0.199 0.005 0.126 0.237 + 0.100 -0.020 0.169 0.356 0.140 0.014 0.118 0.128 0.106 0.098 + 0.201 0.205 0.061 0.019 0.103 0.264 -0.057 0.181 0.016 0.154 + 0.131 0.024 -0.004 0.341 0.144 -0.023 0.263 0.235 0.154 -0.058 + 0.208 0.195 0.058 0.142 0.182 0.213 0.145 0.105 0.196 0.301 + 0.134 0.165 0.197 0.205 0.203 0.125 0.256 0.451 0.152 0.059 + + 325 iasi616_metop-a 381 0.477830E-01 + 0.403 0.484 0.432 0.339 0.410 0.389 0.346 0.263 0.448 0.402 + 0.230 0.227 0.271 0.348 0.234 0.215 0.303 0.375 0.277 0.192 + 0.317 0.321 0.242 0.221 0.302 0.426 0.267 0.217 0.340 0.397 + 0.242 0.381 0.239 0.271 0.272 0.130 0.374 0.106 0.209 0.228 + 0.120 0.074 0.228 0.379 0.248 0.049 0.082 0.110 0.172 0.243 + 0.188 0.140 0.025 0.119 0.110 0.274 -0.059 0.352 0.129 0.124 + 0.177 0.223 0.159 0.258 0.074 0.115 0.158 0.144 0.327 -0.029 + 0.218 0.101 0.183 0.280 0.280 0.131 0.295 0.268 0.266 0.245 + 0.165 0.282 0.281 0.158 0.212 0.236 0.330 0.415 0.257 0.259 + + 326 iasi616_metop-a 383 0.559023E-01 + 0.080 0.169 0.062 -0.050 0.196 0.089 0.099 0.049 0.168 0.073 + 0.009 0.035 0.089 0.082 0.039 0.112 0.167 0.135 0.113 0.084 + 0.246 0.142 0.218 0.217 0.244 0.318 0.377 0.369 0.384 0.363 + -0.186 -0.216 -0.229 -0.132 -0.206 -0.347 -0.189 -0.215 -0.281 -0.289 + -0.201 -0.188 -0.142 -0.178 -0.189 -0.056 -0.194 -0.408 -0.282 -0.075 + -0.176 -0.238 -0.232 -0.110 -0.290 -0.222 -0.326 0.001 -0.120 -0.266 + -0.146 -0.112 -0.292 -0.214 -0.082 -0.159 -0.189 -0.418 -0.033 -0.265 + -0.159 -0.385 -0.190 -0.113 -0.214 -0.292 -0.252 -0.084 -0.142 -0.248 + -0.218 -0.053 -0.182 -0.324 -0.170 -0.130 -0.144 -0.162 -0.217 -0.147 + + 327 iasi616_metop-a 386 0.530214E-01 + 0.096 0.088 0.169 0.117 0.080 -0.052 0.061 0.056 0.033 -0.083 + 0.004 0.003 0.001 -0.011 -0.022 0.013 0.032 -0.112 -0.048 0.044 + -0.053 -0.124 0.033 0.001 -0.020 -0.051 -0.002 0.036 0.014 -0.051 + 0.281 0.233 0.263 0.175 0.193 0.191 0.199 0.196 0.195 0.150 + 0.153 0.184 0.333 0.276 0.204 0.230 0.208 0.094 0.223 0.232 + 0.271 0.200 0.181 0.258 0.206 0.270 0.058 0.259 0.214 0.170 + 0.262 0.202 0.174 0.268 0.223 0.216 0.265 0.242 0.351 0.184 + 0.250 0.214 0.209 0.218 0.283 0.187 0.176 0.293 0.180 0.216 + 0.215 0.238 0.227 0.223 0.300 0.230 0.296 0.244 0.203 0.232 + + 328 iasi616_metop-a 389 0.479461E-01 + 0.027 0.043 -0.027 -0.019 0.101 -0.006 0.027 0.063 0.109 0.060 + 0.022 0.091 0.054 0.107 -0.000 0.130 0.148 0.094 0.088 0.124 + 0.110 0.118 0.128 0.137 0.144 0.187 0.215 0.225 0.236 0.208 + -0.250 -0.202 -0.197 -0.189 -0.231 -0.262 -0.175 -0.264 -0.326 -0.295 + -0.355 -0.299 -0.214 -0.150 -0.314 -0.283 -0.339 -0.335 -0.273 -0.255 + -0.284 -0.350 -0.384 -0.338 -0.409 -0.288 -0.472 -0.202 -0.293 -0.386 + -0.276 -0.263 -0.377 -0.261 -0.286 -0.336 -0.343 -0.314 -0.243 -0.441 + -0.330 -0.350 -0.318 -0.215 -0.326 -0.290 -0.266 -0.209 -0.276 -0.239 + -0.268 -0.183 -0.329 -0.296 -0.183 -0.155 -0.184 -0.158 -0.270 -0.173 + + 329 iasi616_metop-a 398 0.470839E-01 + 0.036 0.060 0.083 0.047 -0.006 -0.014 0.003 0.004 -0.032 -0.078 + -0.174 -0.051 -0.149 -0.132 -0.185 -0.123 -0.135 -0.178 -0.172 -0.206 + -0.209 -0.286 -0.171 -0.171 -0.240 -0.215 -0.194 -0.188 -0.184 -0.246 + 0.065 0.300 -0.001 0.039 -0.018 0.062 0.106 -0.192 -0.019 0.193 + 0.059 0.008 0.070 0.431 0.008 0.040 0.105 0.004 -0.087 0.034 + 0.122 0.076 -0.067 -0.101 -0.019 0.259 -0.221 0.115 0.044 0.050 + 0.105 -0.004 -0.165 0.232 -0.016 -0.059 0.089 0.100 0.144 -0.181 + 0.249 0.159 0.051 0.126 0.172 0.078 0.111 0.198 0.200 0.052 + 0.093 0.126 0.085 0.144 0.111 0.070 0.206 0.441 0.045 -0.047 + + 330 iasi616_metop-a 401 0.504861E-01 + -0.046 0.088 -0.109 -0.220 0.125 -0.002 -0.004 -0.099 0.172 -0.028 + -0.085 -0.097 -0.023 0.038 -0.067 0.054 0.119 0.067 0.041 -0.014 + 0.110 0.031 0.135 0.021 0.148 0.212 0.166 0.157 0.274 0.295 + -0.405 -0.353 -0.565 -0.365 -0.365 -0.530 -0.564 -0.518 -0.542 -0.551 + -0.337 -0.540 -0.435 -0.302 -0.511 -0.319 -0.346 -0.735 -0.582 -0.397 + -0.505 -0.558 -0.510 -0.536 -0.600 -0.477 -0.803 -0.404 -0.538 -0.603 + -0.367 -0.498 -0.633 -0.450 -0.425 -0.453 -0.491 -0.813 -0.353 -0.708 + -0.360 -0.577 -0.542 -0.314 -0.520 -0.610 -0.400 -0.358 -0.292 -0.489 + -0.482 -0.311 -0.407 -0.583 -0.383 -0.264 -0.312 -0.221 -0.494 -0.410 + + 331 iasi616_metop-a 404 0.375646E-01 + 0.057 0.127 0.114 0.092 0.097 -0.024 0.061 -0.032 0.091 -0.123 + -0.173 -0.059 -0.108 -0.157 -0.147 -0.051 -0.093 -0.230 -0.073 -0.060 + -0.191 -0.289 -0.119 -0.097 -0.221 -0.125 -0.196 -0.137 -0.077 -0.167 + 0.229 0.355 0.048 0.120 0.388 0.090 0.203 -0.165 0.272 0.256 + 0.081 -0.124 0.094 0.440 0.151 -0.046 -0.135 0.202 0.019 0.060 + 0.280 0.034 -0.074 -0.246 -0.081 0.310 -0.267 0.165 0.032 0.115 + 0.373 -0.140 -0.046 0.392 0.040 -0.022 0.146 0.224 0.221 -0.576 + 0.452 0.088 0.037 0.232 0.210 0.017 0.269 0.275 0.380 0.211 + 0.078 0.110 0.263 0.114 0.137 0.307 0.307 0.542 0.426 0.040 + + 332 iasi616_metop-a 405 0.296677E-01 + 0.274 0.499 0.229 0.172 0.496 0.258 0.282 0.208 0.400 0.369 + 0.211 0.178 0.240 0.154 0.124 0.218 0.432 0.250 0.120 0.170 + 0.348 0.334 0.316 0.166 0.380 0.413 0.264 0.268 0.508 0.484 + 0.222 0.152 -0.135 0.076 0.195 -0.102 0.103 -0.261 0.171 0.092 + -0.108 -0.296 -0.054 0.441 0.020 -0.289 -0.305 -0.005 -0.060 0.044 + 0.317 -0.199 -0.229 -0.225 -0.256 0.280 -0.472 0.008 -0.257 -0.003 + 0.355 -0.008 -0.209 0.189 -0.070 0.014 -0.038 0.020 0.020 -0.521 + 0.397 0.036 -0.078 -0.046 0.075 -0.223 0.238 0.213 0.275 0.033 + -0.037 -0.019 0.184 0.155 0.025 0.208 0.106 0.376 0.205 0.000 + + 333 iasi616_metop-a 407 0.399343E-01 + 0.226 0.352 0.226 0.051 0.340 0.216 0.169 0.051 0.272 0.189 + 0.058 0.090 0.126 0.093 0.016 0.125 0.274 0.123 -0.016 0.109 + 0.215 0.112 0.141 0.095 0.159 0.183 0.020 0.097 0.270 0.250 + -0.062 -0.096 -0.242 0.027 -0.026 -0.360 0.018 -0.263 -0.063 -0.139 + -0.223 -0.282 -0.251 -0.056 -0.097 -0.159 -0.329 -0.162 -0.171 -0.057 + -0.153 -0.267 -0.282 -0.272 -0.380 -0.135 -0.464 0.097 -0.291 -0.207 + 0.014 -0.134 -0.362 -0.101 -0.257 -0.077 -0.211 -0.235 -0.109 -0.637 + 0.082 -0.373 -0.170 0.127 -0.056 -0.416 -0.055 0.087 0.036 -0.153 + -0.175 0.011 -0.110 -0.269 -0.099 0.029 0.005 0.088 0.032 -0.044 + + 334 iasi616_metop-a 408 0.480710E-01 + 0.104 0.264 0.130 0.102 0.258 0.094 0.111 0.102 0.199 0.056 + 0.030 0.053 0.084 0.035 -0.004 0.125 0.129 -0.000 -0.012 0.085 + 0.146 -0.032 0.133 0.113 0.114 0.034 0.065 0.146 0.226 0.116 + -0.064 0.070 -0.021 0.028 0.081 -0.092 0.041 -0.157 -0.004 0.020 + -0.120 -0.182 0.019 0.039 -0.017 -0.072 -0.136 -0.123 -0.115 -0.019 + 0.093 -0.118 -0.220 -0.126 -0.246 -0.053 -0.255 0.150 -0.160 -0.193 + 0.071 -0.120 -0.195 0.031 -0.055 -0.079 -0.060 -0.135 -0.139 -0.277 + 0.099 -0.099 -0.062 0.118 -0.022 -0.220 -0.039 0.136 0.078 -0.153 + -0.082 0.119 -0.026 -0.165 0.043 0.161 0.071 0.209 -0.015 -0.035 + + 335 iasi616_metop-a 410 0.366006E-01 + 0.260 0.311 0.230 0.220 0.301 0.177 0.209 0.224 0.350 0.141 + 0.079 0.266 0.171 0.092 0.139 0.216 0.218 0.100 0.126 0.177 + 0.164 0.055 0.199 0.205 0.211 0.180 0.168 0.245 0.246 0.182 + 0.179 0.294 -0.043 0.089 0.285 0.107 0.112 -0.231 0.318 0.191 + 0.116 -0.231 0.032 0.433 0.166 -0.197 -0.130 0.103 0.070 -0.054 + 0.320 0.035 -0.040 -0.385 -0.200 0.343 -0.301 0.174 -0.067 0.146 + 0.383 -0.091 -0.086 0.384 0.034 -0.097 0.048 0.131 0.099 -0.680 + 0.320 0.069 0.064 0.187 0.205 -0.125 0.173 0.267 0.358 0.134 + 0.000 0.159 0.112 0.049 0.124 0.300 0.275 0.573 0.232 -0.082 + + 336 iasi616_metop-a 411 0.289924E-01 + 0.267 0.488 0.259 0.162 0.480 0.259 0.228 0.180 0.388 0.368 + 0.231 0.169 0.208 0.106 0.074 0.185 0.390 0.269 0.145 0.165 + 0.331 0.334 0.336 0.139 0.370 0.436 0.250 0.232 0.464 0.451 + 0.249 0.113 -0.182 0.116 0.174 -0.044 0.096 -0.248 0.103 -0.035 + -0.065 -0.318 -0.042 0.443 0.053 -0.283 -0.299 -0.020 -0.069 -0.019 + 0.247 -0.119 -0.133 -0.278 -0.270 0.274 -0.509 0.047 -0.199 0.081 + 0.318 0.080 -0.228 0.259 -0.092 -0.028 0.016 -0.077 0.134 -0.485 + 0.362 0.039 -0.044 0.002 0.059 -0.173 0.222 0.208 0.299 0.022 + -0.088 -0.020 0.148 0.183 -0.021 0.226 0.152 0.468 0.251 -0.075 + + 337 iasi616_metop-a 414 0.476441E-01 + -0.165 -0.149 -0.341 -0.416 0.139 -0.147 -0.150 -0.196 0.052 -0.222 + -0.192 -0.178 -0.078 -0.269 -0.206 -0.160 0.002 -0.147 -0.323 -0.162 + -0.049 -0.089 -0.064 0.006 -0.008 -0.086 -0.119 -0.028 0.105 0.025 + -0.724 -0.447 -0.781 -0.621 -0.282 -0.747 -0.671 -0.708 -0.673 -0.772 + -0.540 -0.683 -0.703 -0.748 -0.795 -0.457 -0.668 -0.656 -0.924 -0.411 + -0.782 -0.530 -0.635 -0.696 -0.580 -0.737 -0.833 -0.698 -0.674 -0.642 + -0.441 -0.502 -0.817 -0.625 -0.542 -0.732 -0.690 -0.875 -0.611 -1.151 + -0.628 -0.791 -0.914 -0.597 -0.624 -0.675 -0.607 -0.624 -0.545 -0.693 + -0.650 -0.620 -0.546 -0.895 -0.565 -0.482 -0.516 -0.528 -0.552 -0.738 + + 338 iasi616_metop-a 416 0.366446E-01 + -0.287 -0.190 -0.216 -0.185 -0.248 -0.310 -0.302 -0.372 -0.335 -0.284 + -0.558 -0.281 -0.410 -0.448 -0.366 -0.413 -0.447 -0.567 -0.400 -0.293 + -0.543 -0.464 -0.373 -0.447 -0.428 -0.401 -0.579 -0.540 -0.413 -0.514 + -0.086 0.078 -0.262 -0.216 0.027 -0.240 -0.166 -0.460 -0.102 -0.062 + -0.150 -0.406 -0.151 0.115 -0.094 -0.199 -0.278 -0.098 -0.305 -0.150 + -0.046 -0.127 -0.194 -0.456 -0.375 0.049 -0.428 -0.184 -0.186 -0.112 + 0.097 -0.359 -0.332 0.095 -0.083 -0.296 -0.104 -0.083 -0.190 -0.843 + 0.129 -0.056 -0.337 -0.092 0.038 -0.279 -0.010 0.039 0.169 -0.147 + -0.180 -0.096 -0.048 -0.291 -0.110 0.101 0.076 0.246 -0.000 -0.350 + + 339 iasi616_metop-a 418 0.277665E-01 + -0.005 0.277 0.030 -0.099 0.279 0.074 0.021 -0.108 0.152 0.133 + -0.085 -0.052 0.008 -0.022 -0.145 -0.099 0.057 -0.062 -0.128 -0.043 + 0.011 0.036 0.005 -0.195 0.009 0.120 -0.183 -0.168 0.118 0.080 + 0.169 0.010 -0.267 0.038 0.086 -0.116 -0.007 -0.336 -0.090 -0.236 + -0.094 -0.333 -0.190 0.225 -0.040 -0.268 -0.420 -0.208 -0.139 0.020 + 0.222 -0.380 -0.286 -0.333 -0.414 0.186 -0.514 -0.014 -0.238 -0.133 + 0.195 0.006 -0.329 0.087 -0.149 -0.098 -0.014 -0.139 -0.083 -0.556 + 0.274 -0.091 -0.147 -0.025 0.025 -0.431 0.265 0.211 0.204 -0.068 + -0.127 0.049 0.071 0.017 0.038 0.354 0.129 0.216 0.161 -0.189 + + 340 iasi616_metop-a 423 0.226278E-01 + 0.192 0.334 0.218 0.105 0.354 0.133 0.199 0.153 0.329 0.117 + 0.014 0.171 0.100 -0.012 -0.021 0.097 0.330 -0.001 -0.074 0.152 + 0.173 0.113 0.138 0.090 0.217 0.145 -0.040 0.053 0.278 0.185 + 0.153 0.021 -0.339 0.079 0.169 -0.207 0.007 -0.379 0.011 -0.112 + -0.129 -0.411 0.004 0.344 -0.001 -0.292 -0.323 -0.170 -0.028 -0.063 + 0.354 -0.155 -0.179 -0.294 -0.383 0.250 -0.529 -0.101 -0.280 -0.051 + 0.135 0.132 -0.268 0.179 -0.154 -0.174 -0.054 -0.106 -0.028 -0.636 + 0.273 -0.032 -0.163 -0.051 -0.026 -0.326 0.335 0.259 0.348 0.042 + -0.121 -0.117 0.080 0.176 -0.008 0.154 0.146 0.522 0.154 -0.062 + + 341 iasi616_metop-a 426 0.459740E-01 + 0.387 0.539 0.436 0.300 0.455 0.341 0.378 0.237 0.420 0.303 + 0.122 0.244 0.232 0.263 0.144 0.179 0.403 0.197 0.123 0.207 + 0.281 0.272 0.298 0.203 0.240 0.196 0.010 0.048 0.312 0.261 + 0.093 0.279 0.220 0.100 0.241 0.026 0.185 0.003 0.212 0.203 + 0.106 -0.009 0.166 0.279 0.108 0.104 -0.009 0.021 -0.007 0.126 + 0.219 0.073 -0.008 0.095 -0.079 0.183 -0.127 0.196 -0.026 0.047 + 0.216 0.065 -0.058 0.169 0.112 0.056 0.076 0.078 0.144 -0.241 + 0.288 0.035 0.128 0.221 0.183 -0.086 0.200 0.292 0.280 -0.008 + 0.049 0.185 0.021 -0.026 0.123 0.314 0.236 0.333 0.218 0.144 + + 342 iasi616_metop-a 428 0.331689E-01 + 0.259 0.397 0.274 0.236 0.475 0.245 0.334 0.281 0.416 0.252 + 0.251 0.315 0.237 0.178 0.210 0.302 0.344 0.194 0.223 0.262 + 0.323 0.230 0.373 0.282 0.347 0.324 0.334 0.346 0.417 0.369 + 0.329 0.288 -0.080 0.144 0.270 0.105 0.061 -0.232 0.123 0.053 + 0.054 -0.205 -0.003 0.397 0.090 -0.218 -0.194 0.011 -0.175 0.075 + 0.195 -0.090 -0.127 -0.258 -0.208 0.236 -0.431 0.071 -0.098 -0.018 + 0.273 -0.058 -0.190 0.373 -0.025 -0.045 0.111 0.090 0.079 -0.558 + 0.489 0.048 -0.076 0.093 0.171 -0.241 0.244 0.169 0.362 0.174 + -0.089 0.127 0.101 0.172 0.073 0.267 0.342 0.602 0.386 -0.060 + + 343 iasi616_metop-a 432 0.457504E-01 + 0.278 0.414 0.293 0.236 0.447 0.300 0.324 0.163 0.406 0.325 + 0.166 0.244 0.297 0.245 0.162 0.273 0.425 0.249 0.159 0.248 + 0.350 0.241 0.319 0.257 0.363 0.365 0.154 0.192 0.404 0.399 + 0.069 0.217 0.093 0.084 0.128 -0.028 0.140 -0.134 0.100 0.097 + -0.035 -0.198 0.076 0.163 -0.056 -0.069 -0.100 -0.113 -0.052 -0.024 + 0.013 -0.099 -0.136 -0.151 -0.254 0.043 -0.362 0.063 -0.223 -0.126 + 0.050 -0.143 -0.252 0.015 -0.102 -0.082 -0.126 -0.049 0.044 -0.527 + 0.075 -0.089 0.022 0.096 0.043 -0.261 0.113 0.173 0.123 -0.021 + -0.009 0.119 -0.018 -0.158 0.088 0.234 0.155 0.326 0.120 0.061 + + 344 iasi616_metop-a 433 0.423237E-01 + 0.298 0.384 0.346 0.326 0.443 0.313 0.338 0.264 0.435 0.281 + 0.282 0.353 0.248 0.245 0.185 0.345 0.323 0.194 0.217 0.221 + 0.246 0.190 0.324 0.207 0.245 0.256 0.205 0.218 0.324 0.284 + 0.193 0.497 0.196 0.188 0.386 0.173 0.272 -0.024 0.344 0.388 + 0.115 -0.103 0.177 0.435 0.212 0.009 0.008 0.192 0.033 0.064 + 0.246 0.121 0.055 -0.187 -0.081 0.308 -0.194 0.178 -0.023 0.142 + 0.191 -0.001 -0.088 0.251 0.084 0.050 0.044 0.164 0.191 -0.435 + 0.288 0.103 0.084 0.229 0.232 0.001 0.312 0.323 0.363 0.159 + 0.175 0.236 0.127 0.048 0.229 0.394 0.356 0.637 0.308 0.213 + + 345 iasi616_metop-a 434 0.316626E-01 + 0.283 0.516 0.312 0.267 0.554 0.343 0.399 0.287 0.526 0.348 + 0.330 0.335 0.339 0.301 0.253 0.323 0.402 0.297 0.238 0.254 + 0.358 0.332 0.367 0.178 0.379 0.384 0.305 0.288 0.422 0.444 + 0.108 0.226 -0.205 0.020 0.233 0.024 0.091 -0.323 0.107 0.025 + -0.023 -0.219 0.036 0.339 0.137 -0.124 -0.328 -0.143 -0.110 0.025 + 0.095 -0.184 -0.158 -0.399 -0.295 0.262 -0.360 0.090 -0.163 0.003 + 0.252 -0.179 -0.229 0.336 -0.121 -0.141 0.012 0.090 0.072 -0.493 + 0.385 -0.065 -0.064 0.085 0.083 -0.336 0.269 0.219 0.255 0.102 + -0.047 0.035 0.034 0.129 0.024 0.270 0.226 0.519 0.212 -0.090 + + 346 iasi616_metop-a 439 0.512756E-01 + 0.242 0.367 0.250 0.219 0.494 0.195 0.281 0.255 0.371 0.140 + 0.214 0.173 0.259 0.138 0.119 0.263 0.414 0.192 0.160 0.204 + 0.303 0.225 0.336 0.297 0.360 0.256 0.140 0.209 0.423 0.358 + 0.085 0.259 0.024 0.070 0.151 0.098 0.010 -0.037 0.039 0.206 + 0.208 -0.147 0.062 0.382 0.041 0.141 0.078 -0.110 -0.161 0.099 + -0.052 0.150 -0.098 -0.162 -0.046 0.151 -0.418 0.022 0.009 -0.050 + 0.194 -0.023 -0.140 0.168 0.136 -0.212 0.044 -0.164 0.133 -0.343 + 0.153 0.056 -0.101 0.011 -0.000 -0.059 0.016 0.074 0.212 0.159 + -0.006 0.234 0.095 -0.021 0.109 0.211 0.239 0.469 0.034 -0.040 + + 347 iasi616_metop-a 442 0.240620E-01 + 0.187 0.393 0.223 0.133 0.318 0.301 0.222 0.161 0.387 0.239 + 0.017 0.143 0.182 0.127 0.082 0.138 0.276 0.210 0.250 0.199 + 0.123 0.171 0.198 0.106 0.242 0.431 0.228 0.175 0.340 0.321 + 0.208 0.057 -0.314 0.046 0.157 -0.160 0.083 -0.408 -0.057 -0.173 + -0.066 -0.427 -0.014 0.345 -0.064 -0.271 -0.395 -0.343 -0.203 0.024 + 0.100 -0.365 -0.296 -0.340 -0.371 0.242 -0.671 -0.068 -0.250 -0.163 + 0.139 0.013 -0.256 0.175 -0.139 -0.031 -0.031 -0.154 -0.099 -0.633 + 0.364 0.081 -0.082 -0.021 -0.032 -0.264 0.204 0.202 0.317 -0.076 + -0.161 -0.032 0.069 0.160 0.025 0.343 0.151 0.502 0.149 -0.113 + + 348 iasi616_metop-a 445 0.413783E-01 + 0.455 0.517 0.485 0.361 0.543 0.400 0.371 0.373 0.425 0.320 + 0.193 0.360 0.331 0.267 0.200 0.393 0.428 0.249 0.156 0.315 + 0.273 0.258 0.357 0.305 0.270 0.214 0.023 0.087 0.389 0.285 + 0.273 0.556 0.179 0.211 0.398 0.174 0.189 -0.021 0.318 0.293 + 0.181 0.025 0.149 0.505 0.138 -0.001 0.093 0.122 0.009 0.064 + 0.189 0.131 -0.011 -0.110 0.045 0.338 -0.257 0.181 0.029 0.127 + 0.209 0.018 -0.077 0.304 0.044 0.064 0.095 0.190 0.188 -0.398 + 0.335 0.118 0.088 0.221 0.358 -0.041 0.265 0.309 0.376 0.148 + 0.124 0.273 0.069 0.165 0.264 0.374 0.409 0.610 0.417 0.203 + + 349 iasi616_metop-a 450 0.383629E-01 + 0.342 0.486 0.309 0.188 0.524 0.332 0.352 0.229 0.534 0.360 + 0.279 0.329 0.356 0.347 0.239 0.369 0.439 0.340 0.255 0.319 + 0.394 0.327 0.392 0.270 0.453 0.446 0.330 0.324 0.505 0.481 + 0.028 0.222 0.025 0.019 0.207 -0.087 0.165 -0.165 0.078 0.067 + -0.043 -0.202 -0.145 0.192 0.011 -0.224 -0.206 -0.120 -0.074 -0.085 + -0.028 -0.191 -0.209 -0.281 -0.307 0.057 -0.456 0.025 -0.189 -0.147 + 0.041 -0.218 -0.336 0.076 -0.120 -0.174 -0.119 -0.070 0.002 -0.515 + 0.154 -0.193 -0.104 0.113 0.142 -0.347 0.069 0.120 0.167 0.019 + -0.127 0.028 -0.055 -0.054 0.085 0.167 0.131 0.278 0.207 -0.024 + + 350 iasi616_metop-a 457 0.326838E-01 + 0.355 0.505 0.371 0.250 0.502 0.242 0.336 0.365 0.414 0.333 + 0.305 0.260 0.174 0.160 0.205 0.286 0.399 0.172 0.158 0.226 + 0.289 0.263 0.301 0.211 0.309 0.245 0.185 0.210 0.337 0.274 + 0.422 0.362 0.218 0.286 0.529 0.163 0.432 0.096 0.254 0.339 + 0.125 -0.130 0.320 0.594 0.360 -0.021 0.026 0.325 0.056 0.286 + 0.359 0.097 0.045 -0.066 0.072 0.463 -0.245 0.135 -0.021 0.334 + 0.249 0.297 -0.096 0.342 0.039 0.147 0.041 0.249 0.428 -0.084 + 0.435 0.401 0.193 0.118 0.314 0.144 0.421 0.434 0.496 0.324 + 0.138 0.124 0.265 0.436 0.218 0.305 0.406 0.604 0.526 0.222 + + 351 iasi616_metop-a 459 0.169125E-01 + 0.378 0.540 0.326 0.275 0.626 0.391 0.321 0.465 0.428 0.391 + 0.318 0.356 0.377 0.289 0.232 0.228 0.523 0.390 0.252 0.317 + 0.390 0.484 0.414 0.324 0.472 0.443 0.302 0.296 0.513 0.570 + 0.154 -0.046 -0.037 -0.132 0.317 -0.236 0.180 -0.140 0.057 -0.195 + -0.185 -0.137 -0.001 0.253 0.089 -0.199 -0.381 -0.008 -0.166 0.019 + 0.169 -0.078 0.242 -0.237 -0.241 0.406 -0.501 -0.024 0.011 0.019 + 0.316 0.180 -0.423 0.054 -0.160 -0.039 -0.030 -0.162 0.316 -0.252 + 0.210 0.190 -0.075 -0.184 0.101 -0.282 0.288 0.279 0.346 0.348 + 0.115 -0.025 0.025 0.181 -0.222 0.019 0.046 0.494 0.172 0.005 + + 352 iasi616_metop-a 472 0.153472E-01 + 0.058 0.236 0.039 -0.035 0.323 -0.038 0.066 0.146 0.154 -0.013 + -0.092 0.133 -0.037 0.044 0.056 -0.019 0.363 0.032 0.068 0.144 + 0.165 0.196 0.157 0.079 0.154 0.219 0.143 0.043 0.355 0.298 + -0.174 -0.359 -0.460 -0.445 0.105 -0.467 -0.115 -0.296 -0.277 -0.510 + -0.536 -0.400 -0.320 -0.061 -0.087 -0.417 -0.687 -0.274 -0.459 -0.343 + -0.027 -0.427 -0.096 -0.576 -0.540 0.048 -0.814 -0.344 -0.341 -0.339 + -0.091 0.036 -0.592 -0.179 -0.371 -0.360 -0.195 -0.425 0.053 -0.671 + -0.084 0.015 -0.347 -0.433 -0.166 -0.506 -0.032 0.035 0.140 0.043 + -0.131 -0.300 -0.372 -0.090 -0.464 -0.231 -0.194 0.250 -0.148 -0.327 + + 353 iasi616_metop-a 477 0.138050E-01 + 0.034 0.157 -0.103 -0.115 0.246 -0.169 0.010 0.017 0.093 -0.126 + -0.209 0.038 -0.148 -0.117 -0.042 -0.168 0.259 -0.105 -0.016 0.001 + -0.061 0.011 -0.055 -0.160 -0.056 0.034 -0.167 -0.269 0.050 0.015 + -0.208 -0.161 -0.468 -0.414 0.160 -0.245 -0.231 -0.237 -0.163 -0.349 + -0.354 -0.551 -0.098 0.189 0.121 -0.372 -0.565 -0.083 -0.243 -0.139 + 0.107 -0.274 -0.187 -0.553 -0.519 0.184 -0.737 -0.191 -0.374 -0.117 + 0.235 0.081 -0.530 0.072 -0.317 -0.099 -0.131 -0.379 -0.100 -0.633 + 0.092 0.045 -0.298 -0.302 -0.112 -0.508 0.311 0.160 0.350 0.094 + -0.043 -0.172 -0.091 0.066 -0.317 -0.009 -0.118 0.366 0.083 -0.070 + + 354 iasi616_metop-a 483 0.137343E-01 + 0.069 0.200 -0.008 -0.121 0.245 -0.075 0.010 0.004 0.036 -0.094 + -0.124 0.037 -0.092 0.013 0.010 -0.150 0.305 -0.102 -0.087 0.097 + 0.069 0.156 0.051 -0.109 0.045 0.114 -0.044 -0.188 0.218 0.174 + -0.120 -0.172 -0.529 -0.507 0.237 -0.271 -0.216 -0.282 -0.213 -0.371 + -0.413 -0.515 -0.106 0.255 0.041 -0.359 -0.549 -0.235 -0.256 -0.146 + 0.009 -0.371 -0.094 -0.562 -0.531 0.246 -0.864 -0.123 -0.477 -0.164 + 0.214 0.131 -0.501 0.025 -0.317 -0.188 -0.127 -0.387 0.052 -0.577 + 0.030 0.039 -0.278 -0.322 -0.062 -0.478 0.293 0.158 0.321 -0.017 + -0.073 -0.190 -0.213 -0.030 -0.439 -0.043 -0.043 0.244 0.042 -0.126 + + 355 iasi616_metop-a 509 0.142385E-01 + -0.102 0.108 -0.117 -0.276 0.139 -0.171 -0.065 -0.147 -0.062 -0.149 + -0.232 -0.014 -0.135 -0.103 -0.014 -0.218 0.255 -0.157 -0.180 -0.021 + -0.001 0.084 -0.024 -0.160 -0.013 0.083 -0.141 -0.243 0.146 0.094 + -0.205 -0.291 -0.551 -0.567 0.020 -0.454 -0.282 -0.358 -0.329 -0.483 + -0.358 -0.646 -0.166 0.073 -0.015 -0.506 -0.669 -0.381 -0.402 -0.252 + 0.073 -0.419 -0.298 -0.627 -0.613 0.105 -0.946 -0.303 -0.490 -0.221 + 0.075 -0.024 -0.690 -0.083 -0.355 -0.297 -0.249 -0.541 0.083 -0.592 + -0.063 -0.074 -0.427 -0.475 -0.207 -0.652 0.138 0.095 0.201 -0.045 + -0.088 -0.347 -0.183 -0.127 -0.520 -0.164 -0.214 0.230 -0.148 -0.267 + + 356 iasi616_metop-a 515 0.134929E-01 + -0.110 0.074 -0.228 -0.353 0.098 -0.258 -0.129 -0.205 -0.138 -0.278 + -0.307 -0.088 -0.233 -0.197 -0.137 -0.343 0.105 -0.248 -0.195 -0.112 + -0.097 -0.077 -0.102 -0.266 -0.129 -0.045 -0.276 -0.332 0.019 -0.029 + -0.288 -0.368 -0.676 -0.629 0.004 -0.557 -0.368 -0.394 -0.393 -0.575 + -0.465 -0.681 -0.247 -0.090 -0.043 -0.534 -0.732 -0.307 -0.481 -0.292 + -0.044 -0.478 -0.353 -0.777 -0.757 0.014 -1.023 -0.391 -0.553 -0.319 + -0.040 -0.101 -0.692 -0.140 -0.536 -0.339 -0.253 -0.513 -0.132 -0.676 + -0.169 -0.181 -0.471 -0.409 -0.252 -0.653 0.101 -0.079 0.123 -0.139 + -0.196 -0.383 -0.304 -0.266 -0.640 -0.263 -0.346 0.156 -0.168 -0.295 + + 357 iasi616_metop-a 546 0.126859E-01 + -0.260 -0.070 -0.318 -0.349 0.000 -0.397 -0.210 -0.300 -0.153 -0.317 + -0.371 -0.138 -0.319 -0.282 -0.274 -0.414 0.021 -0.328 -0.317 -0.195 + -0.208 -0.097 -0.178 -0.336 -0.203 -0.143 -0.313 -0.427 -0.076 -0.180 + -0.350 -0.440 -0.648 -0.714 -0.087 -0.623 -0.328 -0.469 -0.419 -0.605 + -0.504 -0.511 -0.394 -0.130 -0.087 -0.566 -0.768 -0.418 -0.565 -0.397 + -0.100 -0.518 -0.378 -0.779 -0.680 -0.021 -1.073 -0.463 -0.501 -0.331 + -0.126 -0.141 -0.892 -0.131 -0.507 -0.328 -0.268 -0.484 -0.262 -0.705 + -0.240 -0.226 -0.519 -0.488 -0.291 -0.862 0.100 -0.026 0.088 -0.072 + -0.247 -0.467 -0.372 -0.249 -0.742 -0.295 -0.289 0.048 -0.254 -0.302 + + 358 iasi616_metop-a 552 0.132767E-01 + -0.255 -0.135 -0.384 -0.455 -0.062 -0.374 -0.235 -0.357 -0.212 -0.380 + -0.447 -0.211 -0.365 -0.319 -0.250 -0.484 0.019 -0.364 -0.318 -0.240 + -0.246 -0.150 -0.204 -0.381 -0.248 -0.256 -0.414 -0.514 -0.139 -0.188 + -0.367 -0.438 -0.726 -0.726 -0.059 -0.644 -0.520 -0.451 -0.502 -0.660 + -0.578 -0.758 -0.318 -0.101 -0.148 -0.632 -0.805 -0.492 -0.560 -0.271 + -0.057 -0.582 -0.427 -0.771 -0.798 -0.050 -1.102 -0.422 -0.502 -0.343 + -0.273 -0.147 -0.812 -0.139 -0.572 -0.445 -0.259 -0.587 -0.200 -0.731 + -0.218 -0.251 -0.525 -0.631 -0.304 -0.800 0.075 -0.049 0.070 -0.092 + -0.333 -0.473 -0.277 -0.263 -0.683 -0.309 -0.253 0.029 -0.214 -0.411 + + 359 iasi616_metop-a 559 0.422638E-01 + -0.136 -0.155 -0.172 -0.284 0.049 -0.102 -0.058 -0.270 -0.092 -0.245 + -0.315 -0.254 -0.277 -0.104 -0.358 -0.243 -0.076 -0.171 -0.197 -0.256 + -0.113 -0.250 -0.201 -0.192 -0.205 -0.332 -0.431 -0.452 -0.186 -0.232 + -0.539 -0.288 -0.348 -0.494 -0.424 -0.422 -0.251 -0.514 -0.453 -0.293 + -0.276 -0.652 -0.671 -0.146 -0.423 -0.390 -0.274 -0.725 -0.600 -0.351 + -0.550 -0.441 -0.438 -0.574 -0.517 -0.122 -0.951 -0.335 -0.490 -0.524 + -0.327 -0.399 -0.766 -0.268 -0.343 -0.424 -0.299 -0.679 -0.282 -0.953 + -0.211 -0.495 -0.446 -0.315 -0.542 -0.610 -0.352 -0.305 -0.195 -0.532 + -0.594 -0.231 -0.473 -0.562 -0.487 -0.188 -0.232 0.093 -0.385 -0.580 + + 360 iasi616_metop-a 566 0.130046E-01 + -0.346 -0.134 -0.477 -0.486 0.011 -0.407 -0.306 -0.277 -0.112 -0.413 + -0.431 -0.328 -0.328 -0.392 -0.310 -0.229 -0.200 -0.424 -0.250 -0.185 + -0.340 -0.304 -0.221 -0.383 -0.280 -0.088 -0.432 -0.379 -0.128 -0.189 + -0.325 -0.463 -0.705 -0.642 -0.081 -0.664 -0.487 -0.453 -0.487 -0.610 + -0.559 -0.697 -0.324 -0.250 -0.178 -0.612 -0.818 -0.406 -0.521 -0.445 + -0.101 -0.584 -0.364 -0.834 -0.805 -0.080 -1.153 -0.469 -0.518 -0.419 + -0.234 -0.196 -0.833 -0.179 -0.534 -0.413 -0.432 -0.566 -0.283 -0.764 + -0.307 -0.249 -0.543 -0.552 -0.344 -0.735 0.008 -0.109 0.035 -0.193 + -0.273 -0.467 -0.397 -0.297 -0.760 -0.326 -0.355 0.031 -0.229 -0.469 + + 361 iasi616_metop-a 571 0.126398E-01 + -0.283 -0.190 -0.433 -0.442 -0.099 -0.441 -0.282 -0.408 -0.273 -0.386 + -0.440 -0.224 -0.452 -0.350 -0.347 -0.510 -0.029 -0.425 -0.381 -0.268 + -0.262 -0.191 -0.296 -0.520 -0.370 -0.277 -0.484 -0.619 -0.237 -0.222 + -0.441 -0.478 -0.757 -0.638 -0.144 -0.617 -0.468 -0.503 -0.489 -0.642 + -0.606 -0.722 -0.321 -0.203 -0.141 -0.622 -0.748 -0.427 -0.587 -0.341 + -0.173 -0.571 -0.414 -0.745 -0.787 -0.004 -1.153 -0.462 -0.562 -0.385 + -0.213 -0.171 -0.902 -0.196 -0.551 -0.378 -0.379 -0.603 -0.347 -0.737 + -0.300 -0.271 -0.557 -0.517 -0.238 -0.730 -0.037 -0.073 0.047 -0.179 + -0.238 -0.574 -0.391 -0.274 -0.766 -0.313 -0.372 0.103 -0.157 -0.307 + + 362 iasi616_metop-a 573 0.126512E-01 + -0.267 -0.154 -0.412 -0.406 -0.062 -0.454 -0.331 -0.411 -0.287 -0.340 + -0.501 -0.238 -0.445 -0.376 -0.304 -0.469 -0.055 -0.484 -0.415 -0.300 + -0.276 -0.197 -0.301 -0.428 -0.351 -0.309 -0.495 -0.564 -0.175 -0.268 + -0.424 -0.473 -0.766 -0.721 -0.106 -0.636 -0.361 -0.453 -0.492 -0.622 + -0.593 -0.572 -0.315 -0.178 -0.190 -0.617 -0.758 -0.412 -0.506 -0.358 + -0.260 -0.595 -0.326 -0.759 -0.716 0.010 -1.078 -0.473 -0.553 -0.418 + -0.117 -0.104 -0.896 -0.205 -0.528 -0.337 -0.370 -0.558 -0.333 -0.759 + -0.249 -0.275 -0.502 -0.454 -0.222 -0.795 -0.038 -0.038 0.070 -0.182 + -0.232 -0.519 -0.396 -0.278 -0.734 -0.315 -0.304 0.123 -0.198 -0.388 + + 363 iasi616_metop-a 578 0.119045E-01 + -0.316 -0.203 -0.494 -0.511 -0.110 -0.493 -0.327 -0.402 -0.269 -0.451 + -0.555 -0.266 -0.446 -0.372 -0.353 -0.532 -0.040 -0.447 -0.422 -0.278 + -0.326 -0.152 -0.331 -0.502 -0.319 -0.307 -0.493 -0.585 -0.201 -0.255 + -0.450 -0.521 -0.789 -0.662 -0.194 -0.683 -0.378 -0.560 -0.465 -0.625 + -0.633 -0.659 -0.392 -0.208 -0.303 -0.670 -0.807 -0.369 -0.599 -0.303 + -0.318 -0.622 -0.380 -0.767 -0.766 -0.016 -1.031 -0.466 -0.565 -0.486 + -0.171 -0.162 -0.823 -0.242 -0.539 -0.436 -0.370 -0.606 -0.263 -0.729 + -0.192 -0.304 -0.561 -0.667 -0.352 -0.769 -0.131 -0.110 0.082 -0.114 + -0.247 -0.504 -0.475 -0.266 -0.698 -0.338 -0.367 0.020 -0.181 -0.361 + + 364 iasi616_metop-a 584 0.123656E-01 + -0.363 -0.264 -0.544 -0.546 -0.164 -0.555 -0.403 -0.452 -0.300 -0.508 + -0.546 -0.298 -0.560 -0.407 -0.414 -0.601 -0.076 -0.510 -0.444 -0.339 + -0.389 -0.226 -0.414 -0.538 -0.412 -0.393 -0.587 -0.688 -0.297 -0.336 + -0.433 -0.554 -0.797 -0.768 -0.140 -0.742 -0.508 -0.638 -0.524 -0.720 + -0.644 -0.801 -0.384 -0.274 -0.221 -0.658 -0.892 -0.542 -0.617 -0.370 + -0.327 -0.666 -0.408 -0.772 -0.823 -0.060 -1.218 -0.519 -0.673 -0.458 + -0.145 -0.246 -0.927 -0.321 -0.580 -0.438 -0.420 -0.598 -0.379 -0.798 + -0.289 -0.335 -0.642 -0.674 -0.361 -0.808 -0.158 -0.149 0.012 -0.078 + -0.311 -0.560 -0.503 -0.305 -0.800 -0.392 -0.411 0.047 -0.370 -0.406 + + 365 iasi616_metop-a 594 0.163864E-01 + -0.460 -0.344 -0.593 -0.740 -0.238 -0.545 -0.492 -0.585 -0.353 -0.530 + -0.639 -0.399 -0.611 -0.490 -0.493 -0.660 -0.179 -0.571 -0.559 -0.452 + -0.407 -0.367 -0.500 -0.625 -0.489 -0.480 -0.670 -0.759 -0.367 -0.464 + -0.591 -0.702 -1.045 -0.785 -0.335 -0.751 -0.693 -0.577 -0.725 -0.750 + -0.769 -0.948 -0.631 -0.331 -0.420 -0.811 -0.945 -0.662 -0.745 -0.466 + -0.218 -0.809 -0.799 -0.998 -1.015 -0.300 -1.247 -0.669 -0.787 -0.625 + -0.588 -0.389 -0.943 -0.329 -0.644 -0.604 -0.425 -0.940 -0.424 -1.062 + -0.337 -0.433 -0.733 -0.757 -0.536 -0.924 -0.134 -0.200 -0.180 -0.432 + -0.546 -0.728 -0.528 -0.437 -0.717 -0.422 -0.523 -0.044 -0.514 -0.657 + + 366 iasi616_metop-a 625 0.123979E-01 + -0.574 -0.419 -0.695 -0.694 -0.246 -0.722 -0.623 -0.627 -0.557 -0.728 + -0.754 -0.513 -0.639 -0.650 -0.624 -0.742 -0.231 -0.589 -0.621 -0.463 + -0.532 -0.418 -0.564 -0.689 -0.557 -0.462 -0.740 -0.812 -0.417 -0.492 + -0.509 -0.644 -0.948 -0.932 -0.245 -0.773 -0.563 -0.584 -0.726 -0.795 + -0.775 -0.669 -0.615 -0.428 -0.300 -0.772 -0.895 -0.694 -0.775 -0.440 + -0.317 -0.789 -0.480 -0.882 -0.887 -0.164 -1.325 -0.603 -0.759 -0.646 + -0.295 -0.310 -0.968 -0.339 -0.692 -0.550 -0.505 -0.717 -0.461 -0.943 + -0.382 -0.433 -0.733 -0.733 -0.467 -1.038 -0.165 -0.260 -0.154 -0.188 + -0.395 -0.696 -0.549 -0.467 -0.827 -0.481 -0.512 -0.076 -0.439 -0.628 + + 367 iasi616_metop-a 646 0.164751E-01 + -0.305 -0.274 -0.487 -0.596 -0.145 -0.460 -0.406 -0.515 -0.333 -0.507 + -0.619 -0.448 -0.609 -0.454 -0.484 -0.595 -0.194 -0.590 -0.515 -0.450 + -0.420 -0.435 -0.525 -0.600 -0.570 -0.574 -0.754 -0.842 -0.427 -0.491 + -0.399 -0.470 -0.858 -0.685 -0.199 -0.650 -0.498 -0.609 -0.509 -0.570 + -0.639 -0.838 -0.444 -0.209 -0.297 -0.639 -0.834 -0.505 -0.452 -0.437 + 0.025 -0.579 -0.533 -0.808 -0.767 -0.132 -1.039 -0.486 -0.576 -0.525 + -0.228 -0.292 -0.741 -0.230 -0.550 -0.479 -0.342 -0.655 -0.402 -0.863 + -0.332 -0.201 -0.573 -0.649 -0.397 -0.776 -0.054 -0.070 -0.018 -0.286 + -0.315 -0.428 -0.314 -0.338 -0.494 -0.269 -0.368 0.130 -0.268 -0.433 + + 368 iasi616_metop-a 662 0.112191E-01 + -0.464 -0.270 -0.478 -0.525 -0.109 -0.517 -0.456 -0.473 -0.365 -0.508 + -0.563 -0.401 -0.437 -0.463 -0.463 -0.517 -0.037 -0.483 -0.474 -0.231 + -0.306 -0.239 -0.328 -0.462 -0.344 -0.239 -0.503 -0.579 -0.205 -0.280 + -0.503 -0.523 -0.853 -0.774 -0.178 -0.898 -0.521 -0.577 -0.579 -0.639 + -0.738 -0.696 -0.394 -0.254 -0.309 -0.795 -0.833 -0.569 -0.591 -0.541 + -0.459 -0.649 -0.364 -0.715 -0.665 -0.177 -1.160 -0.641 -0.641 -0.395 + -0.219 -0.207 -0.802 -0.246 -0.544 -0.494 -0.236 -0.560 -0.361 -0.766 + -0.306 -0.304 -0.695 -0.430 -0.277 -0.707 -0.106 -0.067 -0.043 -0.094 + -0.275 -0.532 -0.315 -0.517 -0.573 -0.358 -0.375 0.049 -0.358 -0.482 + + 369 iasi616_metop-a 668 0.111081E-01 + -0.383 -0.363 -0.589 -0.566 -0.152 -0.592 -0.478 -0.510 -0.375 -0.558 + -0.712 -0.391 -0.542 -0.515 -0.458 -0.640 -0.116 -0.512 -0.411 -0.362 + -0.410 -0.299 -0.388 -0.585 -0.470 -0.402 -0.646 -0.695 -0.329 -0.370 + -0.522 -0.578 -0.831 -0.802 -0.163 -0.962 -0.536 -0.599 -0.599 -0.704 + -0.733 -0.782 -0.412 -0.363 -0.403 -0.867 -0.880 -0.602 -0.551 -0.559 + -0.482 -0.690 -0.456 -0.768 -0.721 -0.259 -0.952 -0.565 -0.674 -0.461 + -0.288 -0.298 -0.865 -0.249 -0.555 -0.447 -0.363 -0.556 -0.386 -0.857 + -0.316 -0.308 -0.662 -0.441 -0.304 -0.764 -0.077 -0.177 -0.143 -0.098 + -0.312 -0.579 -0.297 -0.505 -0.850 -0.399 -0.340 0.061 -0.352 -0.531 + + 370 iasi616_metop-a 705 0.105228E-01 + -0.546 -0.435 -0.666 -0.675 -0.233 -0.664 -0.573 -0.522 -0.424 -0.616 + -0.766 -0.477 -0.567 -0.554 -0.549 -0.701 -0.111 -0.527 -0.520 -0.419 + -0.503 -0.343 -0.495 -0.588 -0.515 -0.420 -0.697 -0.746 -0.327 -0.502 + -0.622 -0.678 -0.796 -0.879 -0.183 -1.003 -0.612 -0.680 -0.706 -0.745 + -0.807 -0.835 -0.475 -0.427 -0.448 -0.928 -0.850 -0.724 -0.723 -0.576 + -0.537 -0.734 -0.498 -0.857 -0.813 -0.191 -1.158 -0.687 -0.703 -0.518 + -0.342 -0.329 -1.016 -0.328 -0.753 -0.535 -0.371 -0.611 -0.430 -0.938 + -0.338 -0.318 -0.743 -0.561 -0.339 -0.813 -0.113 -0.219 -0.101 -0.148 + -0.391 -0.665 -0.427 -0.491 -0.759 -0.532 -0.464 0.014 -0.429 -0.599 + + 371 iasi616_metop-a 739 0.104782E-01 + -0.430 -0.397 -0.613 -0.555 -0.222 -0.624 -0.495 -0.531 -0.399 -0.606 + -0.721 -0.466 -0.552 -0.534 -0.544 -0.734 -0.173 -0.559 -0.546 -0.423 + -0.498 -0.435 -0.531 -0.670 -0.552 -0.532 -0.815 -0.908 -0.464 -0.563 + -0.568 -0.474 -0.820 -0.719 -0.156 -0.797 -0.476 -0.517 -0.541 -0.619 + -0.681 -0.681 -0.356 -0.280 -0.260 -0.746 -0.928 -0.463 -0.637 -0.482 + -0.340 -0.609 -0.299 -0.790 -0.691 -0.068 -0.985 -0.622 -0.682 -0.517 + -0.253 -0.219 -0.735 -0.191 -0.595 -0.332 -0.320 -0.531 -0.357 -0.932 + -0.299 -0.222 -0.607 -0.489 -0.238 -0.690 -0.023 -0.037 -0.003 -0.011 + -0.226 -0.524 -0.283 -0.395 -0.589 -0.328 -0.343 0.060 -0.328 -0.391 + + 372 iasi616_metop-a 756 0.100219E-01 + -0.370 -0.322 -0.522 -0.526 -0.164 -0.512 -0.468 -0.440 -0.363 -0.525 + -0.607 -0.359 -0.540 -0.441 -0.415 -0.613 -0.094 -0.479 -0.448 -0.349 + -0.389 -0.307 -0.406 -0.555 -0.452 -0.388 -0.700 -0.759 -0.323 -0.465 + -0.552 -0.532 -0.742 -0.795 -0.062 -0.867 -0.441 -0.514 -0.551 -0.679 + -0.713 -0.743 -0.420 -0.256 -0.268 -0.814 -0.768 -0.558 -0.641 -0.504 + -0.349 -0.594 -0.502 -0.774 -0.749 -0.096 -1.108 -0.538 -0.649 -0.446 + -0.206 -0.129 -0.825 -0.226 -0.606 -0.374 -0.322 -0.459 -0.312 -0.815 + -0.321 -0.198 -0.612 -0.503 -0.346 -0.731 -0.039 -0.088 -0.002 -0.090 + -0.258 -0.549 -0.360 -0.433 -0.576 -0.344 -0.375 0.073 -0.409 -0.453 + + 373 iasi616_metop-a 797 0.965128E-02 + -1.040 -0.758 -1.151 -1.145 -0.551 -0.973 -0.931 -0.808 -0.699 -0.910 + -0.908 -0.766 -0.867 -0.787 -0.776 -0.818 -0.344 -0.718 -0.628 -0.529 + -0.593 -0.556 -0.621 -0.788 -0.678 -0.503 -0.795 -0.856 -0.472 -0.525 + -1.312 -1.077 -1.440 -1.312 -0.707 -1.465 -0.878 -1.028 -1.141 -1.185 + -1.229 -1.266 -1.004 -0.831 -0.847 -1.326 -1.293 -1.116 -1.124 -0.973 + -0.878 -1.044 -0.979 -1.279 -1.234 -0.613 -1.605 -1.023 -1.174 -1.005 + -0.713 -0.706 -1.305 -0.712 -1.097 -0.822 -0.836 -0.933 -0.891 -1.456 + -0.814 -0.686 -1.109 -1.149 -0.815 -1.266 -0.564 -0.547 -0.603 -0.582 + -0.746 -1.085 -1.031 -0.808 -1.129 -1.052 -0.913 -0.522 -0.856 -1.105 + + 374 iasi616_metop-a 867 0.917305E-02 + -0.744 -0.714 -0.920 -0.860 -0.570 -0.979 -0.862 -0.900 -0.674 -0.971 + -1.110 -0.800 -0.939 -0.901 -0.923 -1.139 -0.565 -0.983 -1.002 -0.863 + -0.994 -0.840 -1.042 -1.153 -1.120 -1.142 -1.444 -1.518 -1.046 -1.167 + -0.763 -0.512 -1.012 -0.881 -0.206 -0.935 -0.647 -0.629 -0.716 -0.780 + -0.690 -0.706 -0.656 -0.410 -0.326 -0.915 -0.932 -0.630 -0.739 -0.543 + -0.453 -0.678 -0.586 -0.872 -0.875 -0.184 -1.163 -0.689 -0.731 -0.669 + -0.290 -0.215 -0.896 -0.335 -0.596 -0.323 -0.490 -0.631 -0.515 -1.050 + -0.491 -0.247 -0.692 -0.656 -0.409 -0.904 -0.148 -0.114 -0.241 -0.149 + -0.328 -0.684 -0.540 -0.364 -0.699 -0.604 -0.546 -0.077 -0.407 -0.598 + + 375 iasi616_metop-a 906 0.236667E-01 + -0.281 -0.390 -0.542 -0.641 -0.316 -0.458 -0.490 -0.570 -0.290 -0.518 + -0.705 -0.474 -0.560 -0.465 -0.524 -0.683 -0.240 -0.489 -0.595 -0.548 + -0.514 -0.483 -0.519 -0.636 -0.560 -0.579 -0.800 -0.898 -0.463 -0.547 + -0.389 -0.427 -0.738 -0.658 -0.565 -0.573 -0.513 -0.841 -0.584 -0.558 + -0.572 -0.959 -0.673 -0.243 -0.462 -0.794 -0.858 -0.886 -0.755 -0.374 + -0.416 -0.729 -0.693 -0.748 -0.884 -0.370 -1.178 -0.554 -0.810 -0.646 + -0.462 -0.532 -0.806 -0.237 -0.465 -0.556 -0.440 -0.628 -0.419 -1.090 + -0.191 -0.442 -0.538 -0.612 -0.589 -0.764 -0.380 -0.305 -0.220 -0.669 + -0.650 -0.376 -0.559 -0.310 -0.530 -0.208 -0.407 -0.020 -0.337 -0.750 + + 376 iasi616_metop-a 921 0.878538E-02 + -0.837 -0.571 -0.758 -0.813 -0.358 -0.741 -0.651 -0.670 -0.484 -0.602 + -0.705 -0.526 -0.659 -0.694 -0.772 -0.537 -0.305 -0.629 -0.678 -0.417 + -0.585 -0.434 -0.620 -0.680 -0.632 -0.557 -0.780 -0.889 -0.493 -0.648 + -0.877 -0.628 -0.975 -0.981 -0.295 -1.057 -0.704 -0.589 -0.886 -0.813 + -0.806 -0.822 -0.762 -0.544 -0.446 -0.979 -1.053 -0.746 -0.913 -0.608 + -0.547 -0.732 -0.540 -0.934 -0.915 -0.283 -1.220 -0.735 -0.745 -0.614 + -0.468 -0.322 -1.072 -0.450 -0.671 -0.579 -0.596 -0.703 -0.396 -1.070 + -0.499 -0.283 -0.717 -0.804 -0.407 -0.959 -0.320 -0.212 -0.280 -0.150 + -0.473 -0.780 -0.733 -0.448 -0.758 -0.682 -0.643 -0.205 -0.527 -0.732 + + 377 iasi616_metop-a 1027 0.803704E-02 + -0.636 -0.640 -0.852 -0.814 -0.400 -0.861 -0.721 -0.784 -0.577 -0.855 + -0.902 -0.606 -0.786 -0.665 -0.738 -0.796 -0.346 -0.743 -0.669 -0.643 + -0.742 -0.563 -0.814 -0.876 -0.821 -0.741 -0.992 -1.108 -0.727 -0.782 + -0.820 -0.446 -0.971 -0.912 -0.309 -0.826 -0.601 -0.638 -0.821 -0.734 + -0.721 -0.906 -0.723 -0.497 -0.445 -1.021 -0.986 -0.748 -0.858 -0.598 + -0.503 -0.693 -0.532 -0.938 -0.921 -0.315 -1.276 -0.688 -0.665 -0.674 + -0.471 -0.330 -1.026 -0.350 -0.665 -0.440 -0.512 -0.696 -0.369 -1.217 + -0.534 -0.391 -0.658 -0.693 -0.380 -0.951 -0.325 -0.169 -0.263 -0.155 + -0.391 -0.703 -0.680 -0.429 -0.683 -0.634 -0.536 -0.061 -0.466 -0.725 + + 378 iasi616_metop-a 1046 0.134306E-01 + -0.625 -0.544 -0.890 -0.855 -0.427 -0.806 -0.698 -0.801 -0.581 -0.819 + -0.811 -0.514 -0.791 -0.664 -0.751 -0.808 -0.376 -0.718 -0.664 -0.651 + -0.656 -0.552 -0.799 -0.845 -0.774 -0.730 -1.011 -1.097 -0.722 -0.755 + -0.764 -0.729 -0.944 -0.770 -0.454 -0.849 -0.843 -0.700 -0.646 -0.730 + -0.783 -1.068 -0.750 -0.475 -0.488 -0.935 -0.925 -0.663 -0.802 -0.614 + -0.361 -0.797 -0.808 -0.937 -0.963 -0.400 -1.192 -0.744 -0.684 -0.671 + -0.675 -0.555 -1.061 -0.407 -0.549 -0.656 -0.587 -0.903 -0.631 -1.199 + -0.430 -0.634 -0.748 -0.705 -0.580 -0.990 -0.277 -0.235 -0.344 -0.399 + -0.554 -0.671 -0.640 -0.593 -0.747 -0.570 -0.509 -0.099 -0.576 -0.685 + + 379 iasi616_metop-a 1090 0.778580E-02 + -1.079 -0.958 -1.231 -1.201 -0.669 -1.119 -1.004 -0.899 -0.793 -1.051 + -0.999 -0.828 -0.932 -0.880 -0.963 -0.908 -0.593 -0.908 -0.941 -0.739 + -0.769 -0.635 -0.943 -0.970 -0.873 -0.797 -1.048 -1.086 -0.815 -0.863 + -1.234 -0.840 -1.465 -1.290 -0.820 -1.165 -1.119 -1.023 -1.124 -1.113 + -1.065 -1.282 -1.151 -0.944 -0.773 -1.379 -1.437 -0.943 -1.283 -0.932 + -0.791 -1.071 -1.190 -1.282 -1.277 -0.685 -1.661 -1.043 -1.062 -1.047 + -0.791 -0.836 -1.339 -0.790 -0.996 -0.765 -0.885 -1.014 -0.821 -1.489 + -0.788 -0.735 -1.098 -1.087 -0.761 -1.293 -0.621 -0.687 -0.607 -0.509 + -0.775 -1.060 -0.999 -0.811 -1.092 -0.878 -0.953 -0.636 -0.915 -1.161 + + 380 iasi616_metop-a 1098 0.771035E-02 + -1.215 -1.168 -1.487 -1.355 -0.942 -1.359 -1.252 -1.236 -1.038 -1.328 + -1.398 -1.070 -1.269 -1.197 -1.205 -1.319 -0.889 -1.277 -1.204 -1.135 + -1.246 -1.070 -1.345 -1.465 -1.365 -1.211 -1.613 -1.661 -1.308 -1.376 + -1.303 -0.934 -1.416 -1.327 -0.881 -1.256 -1.248 -1.041 -1.166 -1.182 + -1.135 -1.296 -1.191 -0.999 -0.845 -1.394 -1.449 -1.035 -1.375 -1.008 + -0.926 -1.172 -1.056 -1.366 -1.356 -0.710 -1.660 -1.104 -1.158 -1.065 + -0.821 -0.762 -1.344 -0.850 -1.108 -0.800 -1.010 -1.024 -0.858 -1.534 + -0.850 -0.734 -1.194 -1.212 -0.792 -1.413 -0.658 -0.738 -0.660 -0.580 + -0.820 -1.076 -1.041 -0.838 -1.160 -1.047 -0.951 -0.667 -0.908 -1.219 + + 381 iasi616_metop-a 1121 0.186455E-01 + -0.790 -0.695 -1.044 -0.940 -0.733 -0.890 -0.935 -1.011 -0.776 -0.901 + -1.022 -0.834 -1.057 -0.906 -0.914 -1.121 -0.684 -0.971 -0.989 -1.035 + -0.989 -0.884 -1.127 -1.252 -1.287 -1.155 -1.537 -1.626 -1.181 -1.219 + -0.607 -0.663 -0.821 -0.736 -0.459 -0.797 -0.663 -0.665 -0.700 -0.535 + -0.645 -0.916 -0.716 -0.285 -0.433 -0.880 -0.714 -0.689 -0.669 -0.534 + -0.320 -0.681 -0.830 -0.765 -0.948 -0.302 -1.067 -0.683 -0.631 -0.537 + -0.625 -0.521 -0.907 -0.342 -0.557 -0.524 -0.435 -0.723 -0.432 -1.013 + -0.389 -0.372 -0.664 -0.840 -0.601 -0.942 -0.183 -0.138 -0.248 -0.485 + -0.534 -0.745 -0.727 -0.421 -0.642 -0.380 -0.463 -0.032 -0.442 -0.731 + + 382 iasi616_metop-a 1133 0.734983E-02 + -1.231 -1.015 -1.247 -1.406 -0.736 -1.146 -1.085 -0.954 -0.836 -0.972 + -1.034 -0.830 -0.910 -0.986 -1.036 -0.875 -0.565 -0.931 -0.913 -0.671 + -0.871 -0.638 -0.920 -0.942 -0.860 -0.788 -1.046 -1.057 -0.774 -0.880 + -1.342 -0.975 -1.449 -1.349 -0.982 -1.281 -1.245 -1.081 -1.238 -1.176 + -1.156 -1.281 -1.185 -1.025 -0.864 -1.406 -1.445 -1.023 -1.371 -0.979 + -0.884 -1.141 -1.195 -1.358 -1.376 -0.853 -1.749 -1.126 -1.126 -1.113 + -0.943 -0.888 -1.405 -0.975 -1.025 -0.808 -1.059 -1.083 -0.948 -1.532 + -0.843 -0.712 -1.200 -1.280 -0.840 -1.507 -0.786 -0.570 -0.663 -0.574 + -0.849 -1.197 -1.087 -0.838 -1.177 -0.995 -0.996 -0.768 -1.040 -1.299 + + 383 iasi616_metop-a 1173 0.738863E-02 + -0.794 -0.774 -0.944 -0.867 -0.723 -0.960 -0.871 -1.069 -0.814 -1.081 + -1.232 -0.888 -1.004 -0.978 -0.986 -1.163 -0.748 -1.133 -1.160 -1.043 + -1.072 -1.023 -1.247 -1.402 -1.349 -1.248 -1.693 -1.717 -1.394 -1.448 + -0.709 -0.293 -0.767 -0.719 -0.333 -0.654 -0.586 -0.455 -0.615 -0.568 + -0.598 -0.678 -0.595 -0.429 -0.304 -0.913 -0.853 -0.437 -0.771 -0.404 + -0.221 -0.537 -0.598 -0.813 -0.861 -0.182 -1.006 -0.532 -0.434 -0.551 + -0.340 -0.235 -0.798 -0.398 -0.502 -0.216 -0.490 -0.500 -0.330 -1.031 + -0.325 -0.105 -0.597 -0.686 -0.255 -0.823 -0.167 -0.016 -0.153 -0.070 + -0.288 -0.549 -0.551 -0.239 -0.617 -0.602 -0.318 -0.019 -0.309 -0.570 + + 384 iasi616_metop-a 1191 0.104594E-01 + -0.450 -0.380 -0.667 -0.499 -0.248 -0.719 -0.544 -0.595 -0.423 -0.652 + -0.673 -0.325 -0.604 -0.572 -0.512 -0.581 -0.214 -0.547 -0.543 -0.418 + -0.586 -0.420 -0.587 -0.661 -0.594 -0.543 -0.774 -0.864 -0.587 -0.590 + -0.704 -0.342 -0.789 -0.688 -0.368 -0.754 -0.563 -0.476 -0.493 -0.500 + -0.572 -0.628 -0.522 -0.429 -0.239 -0.802 -0.846 -0.367 -0.472 -0.341 + -0.165 -0.605 -0.550 -0.762 -0.858 -0.205 -1.099 -0.605 -0.526 -0.391 + -0.383 -0.252 -0.776 -0.276 -0.456 -0.238 -0.438 -0.593 -0.313 -0.965 + -0.264 -0.200 -0.565 -0.571 -0.294 -0.894 -0.198 -0.010 -0.146 0.005 + -0.243 -0.499 -0.524 -0.293 -0.470 -0.463 -0.361 -0.128 -0.341 -0.560 + + 385 iasi616_metop-a 1194 0.708388E-02 + -0.404 -0.427 -0.626 -0.584 -0.350 -0.658 -0.503 -0.459 -0.407 -0.651 + -0.701 -0.345 -0.538 -0.532 -0.479 -0.529 -0.211 -0.549 -0.514 -0.463 + -0.506 -0.359 -0.576 -0.673 -0.574 -0.540 -0.692 -0.735 -0.568 -0.509 + -0.699 -0.309 -0.744 -0.696 -0.356 -0.563 -0.553 -0.524 -0.573 -0.562 + -0.555 -0.677 -0.576 -0.418 -0.274 -0.836 -0.883 -0.510 -0.763 -0.402 + -0.356 -0.540 -0.366 -0.693 -0.815 -0.116 -1.143 -0.467 -0.441 -0.385 + -0.360 -0.243 -0.796 -0.332 -0.453 -0.248 -0.418 -0.521 -0.319 -0.951 + -0.335 -0.143 -0.577 -0.609 -0.254 -0.863 -0.194 0.079 -0.124 0.013 + -0.279 -0.533 -0.526 -0.185 -0.513 -0.553 -0.295 -0.194 -0.420 -0.655 + + 386 iasi616_metop-a 1222 0.697131E-02 + -0.418 -0.506 -0.706 -0.639 -0.232 -0.737 -0.585 -0.596 -0.444 -0.732 + -0.751 -0.353 -0.675 -0.592 -0.556 -0.593 -0.270 -0.629 -0.535 -0.434 + -0.615 -0.406 -0.637 -0.700 -0.653 -0.512 -0.789 -0.865 -0.603 -0.611 + -0.736 -0.293 -0.856 -0.749 -0.237 -0.725 -0.537 -0.545 -0.594 -0.685 + -0.594 -0.639 -0.618 -0.389 -0.267 -0.944 -0.942 -0.677 -0.780 -0.441 + -0.295 -0.516 -0.670 -0.736 -0.888 -0.271 -1.115 -0.519 -0.537 -0.509 + -0.370 -0.417 -0.807 -0.324 -0.462 -0.264 -0.482 -0.570 -0.388 -1.030 + -0.431 -0.190 -0.650 -0.639 -0.322 -1.000 -0.222 -0.170 -0.186 -0.051 + -0.274 -0.582 -0.590 -0.280 -0.560 -0.608 -0.398 -0.232 -0.382 -0.759 + + 387 iasi616_metop-a 1271 0.644612E-02 + -0.414 -0.434 -0.612 -0.582 -0.229 -0.664 -0.596 -0.593 -0.448 -0.698 + -0.759 -0.377 -0.583 -0.578 -0.497 -0.551 -0.255 -0.639 -0.585 -0.520 + -0.638 -0.468 -0.620 -0.695 -0.699 -0.575 -0.825 -0.926 -0.650 -0.649 + -0.712 -0.274 -0.805 -0.706 -0.175 -0.401 -0.571 -0.515 -0.609 -0.653 + -0.441 -0.524 -0.498 -0.294 -0.156 -0.822 -0.720 -0.583 -0.754 -0.339 + -0.110 -0.482 -0.404 -0.786 -0.795 -0.138 -1.060 -0.430 -0.529 -0.249 + -0.468 -0.304 -0.725 -0.280 -0.405 -0.279 -0.490 -0.479 -0.345 -0.859 + -0.330 -0.058 -0.502 -0.648 -0.265 -1.006 -0.144 0.017 -0.138 -0.169 + -0.266 -0.481 -0.491 -0.235 -0.453 -0.459 -0.307 -0.111 -0.383 -0.639 + + 388 iasi616_metop-a 1283 0.694023E-02 + -0.418 -0.420 -0.720 -0.590 -0.177 -0.611 -0.561 -0.551 -0.380 -0.690 + -0.678 -0.345 -0.614 -0.502 -0.480 -0.509 -0.222 -0.569 -0.476 -0.478 + -0.559 -0.345 -0.598 -0.653 -0.656 -0.532 -0.728 -0.831 -0.611 -0.566 + -0.723 -0.353 -0.741 -0.685 -0.295 -0.546 -0.567 -0.501 -0.683 -0.670 + -0.525 -0.517 -0.552 -0.420 -0.208 -0.893 -0.907 -0.723 -0.744 -0.366 + -0.226 -0.560 -0.535 -0.751 -0.806 -0.209 -1.102 -0.502 -0.499 -0.392 + -0.350 -0.404 -0.750 -0.209 -0.499 -0.341 -0.533 -0.497 -0.382 -0.982 + -0.386 -0.137 -0.524 -0.654 -0.346 -0.952 -0.314 0.089 -0.171 -0.107 + -0.271 -0.565 -0.585 -0.277 -0.533 -0.505 -0.397 -0.207 -0.358 -0.643 + + 389 iasi616_metop-a 1338 0.628476E-02 + -0.528 -0.438 -0.725 -0.605 -0.360 -0.659 -0.664 -0.573 -0.437 -0.726 + -0.705 -0.282 -0.626 -0.585 -0.516 -0.592 -0.297 -0.617 -0.525 -0.505 + -0.632 -0.406 -0.613 -0.639 -0.663 -0.534 -0.761 -0.913 -0.649 -0.637 + -0.723 -0.335 -0.743 -0.661 -0.334 -0.485 -0.507 -0.451 -0.702 -0.800 + -0.496 -0.483 -0.582 -0.498 -0.224 -0.965 -0.833 -0.705 -0.734 -0.420 + -0.237 -0.614 -0.589 -0.815 -0.858 -0.303 -1.174 -0.566 -0.566 -0.343 + -0.408 -0.446 -0.916 -0.310 -0.535 -0.287 -0.552 -0.571 -0.456 -0.953 + -0.258 -0.194 -0.551 -0.718 -0.485 -1.130 -0.346 0.027 -0.244 -0.263 + -0.292 -0.705 -0.688 -0.352 -0.564 -0.572 -0.434 -0.348 -0.368 -0.615 + + 390 iasi616_metop-a 1409 0.485725E-03 + -0.557 -0.420 -0.762 -0.644 -0.433 -0.645 -0.661 -0.550 -0.453 -0.655 + -0.671 -0.343 -0.622 -0.515 -0.483 -0.592 -0.316 -0.541 -0.581 -0.509 + -0.629 -0.425 -0.583 -0.725 -0.676 -0.631 -0.824 -0.935 -0.675 -0.660 + -0.721 -0.386 -0.761 -0.647 -0.241 -0.580 -0.566 -0.573 -0.594 -0.718 + -0.518 -0.562 -0.612 -0.445 -0.180 -0.747 -0.720 -0.717 -0.709 -0.419 + -0.115 -0.593 -0.406 -0.912 -0.759 -0.491 -1.159 -0.496 -0.650 -0.383 + -0.428 -0.469 -0.907 -0.190 -0.514 -0.397 -0.419 -0.556 -0.363 -0.930 + -0.149 -0.430 -0.676 -0.845 -0.544 -1.142 -0.497 -0.079 -0.264 -0.409 + -0.406 -0.653 -0.717 -0.443 -0.661 -0.530 -0.627 -0.407 -0.379 -0.607 + + 391 iasi616_metop-a 1414 0.225925E-03 + -0.567 -0.504 -0.822 -0.589 -0.330 -0.651 -0.752 -0.616 -0.543 -0.686 + -0.640 -0.464 -0.636 -0.571 -0.436 -0.612 -0.343 -0.649 -0.632 -0.517 + -0.625 -0.484 -0.616 -0.707 -0.694 -0.691 -0.857 -0.909 -0.782 -0.807 + -0.686 -0.331 -0.772 -0.611 -0.295 -0.737 -0.642 -0.622 -0.597 -0.538 + -0.614 -0.520 -0.596 -0.453 -0.123 -0.787 -0.740 -0.673 -0.722 -0.476 + -0.121 -0.655 -0.487 -0.933 -0.743 -0.310 -1.191 -0.519 -0.599 -0.382 + -0.346 -0.512 -0.928 -0.163 -0.480 -0.323 -0.431 -0.494 -0.431 -0.926 + -0.165 -0.349 -0.672 -0.821 -0.596 -1.103 -0.452 -0.073 -0.259 -0.473 + -0.417 -0.637 -0.726 -0.410 -0.683 -0.544 -0.560 -0.297 -0.388 -0.663 + + 392 iasi616_metop-a 1420 -0.318939E-03 + -0.551 -0.473 -0.835 -0.563 -0.388 -0.718 -0.824 -0.619 -0.540 -0.693 + -0.670 -0.468 -0.607 -0.584 -0.464 -0.718 -0.385 -0.669 -0.633 -0.495 + -0.631 -0.454 -0.663 -0.705 -0.701 -0.611 -0.824 -0.940 -0.724 -0.761 + -0.699 -0.458 -0.738 -0.667 -0.295 -0.787 -0.602 -0.689 -0.609 -0.588 + -0.522 -0.600 -0.559 -0.597 -0.267 -0.825 -0.783 -0.819 -0.583 -0.438 + -0.166 -0.684 -0.616 -0.943 -0.740 -0.457 -1.196 -0.506 -0.621 -0.322 + -0.461 -0.549 -0.932 -0.245 -0.440 -0.404 -0.445 -0.560 -0.672 -0.975 + -0.162 -0.478 -0.715 -0.906 -0.612 -1.161 -0.467 -0.163 -0.209 -0.502 + -0.564 -0.713 -0.681 -0.406 -0.765 -0.622 -0.661 -0.400 -0.561 -0.715 + + 393 iasi616_metop-a 1424 -0.479174E-04 + -0.584 -0.471 -0.887 -0.644 -0.373 -0.711 -0.842 -0.607 -0.556 -0.698 + -0.694 -0.489 -0.657 -0.609 -0.514 -0.778 -0.387 -0.735 -0.677 -0.546 + -0.658 -0.529 -0.664 -0.748 -0.739 -0.680 -0.885 -0.965 -0.779 -0.779 + -0.744 -0.413 -0.744 -0.729 -0.294 -0.791 -0.588 -0.669 -0.650 -0.623 + -0.617 -0.605 -0.644 -0.586 -0.238 -0.812 -0.767 -0.746 -0.670 -0.476 + -0.187 -0.750 -0.510 -0.971 -0.747 -0.566 -1.222 -0.525 -0.728 -0.369 + -0.395 -0.550 -0.936 -0.194 -0.494 -0.358 -0.477 -0.664 -0.634 -0.994 + -0.214 -0.486 -0.654 -0.863 -0.646 -1.135 -0.440 -0.157 -0.225 -0.398 + -0.502 -0.724 -0.770 -0.509 -0.699 -0.654 -0.651 -0.433 -0.458 -0.698 + + 394 iasi616_metop-a 1427 0.177870E-02 + -0.618 -0.541 -0.818 -0.719 -0.414 -0.637 -0.833 -0.647 -0.528 -0.726 + -0.715 -0.484 -0.654 -0.591 -0.545 -0.786 -0.414 -0.719 -0.647 -0.570 + -0.617 -0.500 -0.642 -0.755 -0.735 -0.712 -0.944 -0.986 -0.807 -0.812 + -0.687 -0.422 -0.822 -0.654 -0.267 -0.679 -0.745 -0.525 -0.720 -0.709 + -0.659 -0.548 -0.628 -0.636 -0.182 -0.778 -0.774 -0.677 -0.734 -0.415 + -0.214 -0.638 -0.589 -0.983 -0.780 -0.406 -1.244 -0.543 -0.599 -0.409 + -0.457 -0.494 -0.945 -0.255 -0.511 -0.358 -0.438 -0.641 -0.547 -0.960 + -0.199 -0.358 -0.722 -0.840 -0.545 -1.158 -0.487 -0.087 -0.338 -0.384 + -0.508 -0.791 -0.772 -0.459 -0.675 -0.613 -0.590 -0.353 -0.374 -0.605 + + 395 iasi616_metop-a 1430 -0.189982E-02 + -0.604 -0.498 -0.879 -0.656 -0.356 -0.689 -0.753 -0.602 -0.491 -0.707 + -0.686 -0.442 -0.676 -0.590 -0.486 -0.767 -0.346 -0.776 -0.647 -0.559 + -0.667 -0.538 -0.677 -0.797 -0.730 -0.709 -0.894 -0.966 -0.773 -0.832 + -0.791 -0.402 -0.746 -0.766 -0.200 -0.842 -0.549 -0.719 -0.674 -0.659 + -0.615 -0.547 -0.538 -0.570 -0.220 -0.848 -0.679 -0.776 -0.624 -0.468 + -0.136 -0.654 -0.522 -0.932 -0.774 -0.523 -1.186 -0.499 -0.720 -0.350 + -0.520 -0.516 -0.933 -0.252 -0.502 -0.430 -0.480 -0.697 -0.584 -1.066 + -0.159 -0.444 -0.577 -0.929 -0.683 -1.090 -0.475 -0.216 -0.249 -0.551 + -0.495 -0.699 -0.723 -0.537 -0.723 -0.614 -0.682 -0.499 -0.412 -0.685 + + 396 iasi616_metop-a 1434 -0.766520E-03 + -0.541 -0.450 -0.825 -0.543 -0.337 -0.642 -0.808 -0.653 -0.515 -0.618 + -0.705 -0.544 -0.630 -0.593 -0.530 -0.718 -0.367 -0.730 -0.655 -0.558 + -0.649 -0.519 -0.636 -0.797 -0.756 -0.742 -0.950 -1.001 -0.798 -0.833 + -0.662 -0.398 -0.713 -0.590 -0.250 -0.703 -0.500 -0.624 -0.650 -0.653 + -0.656 -0.604 -0.513 -0.646 -0.201 -0.753 -0.725 -0.738 -0.607 -0.418 + -0.171 -0.660 -0.609 -0.905 -0.676 -0.512 -1.198 -0.533 -0.697 -0.349 + -0.448 -0.507 -0.901 -0.216 -0.439 -0.353 -0.460 -0.539 -0.552 -1.023 + -0.160 -0.482 -0.580 -0.775 -0.613 -1.072 -0.538 -0.071 -0.296 -0.475 + -0.625 -0.688 -0.766 -0.517 -0.708 -0.664 -0.617 -0.443 -0.393 -0.674 + + 397 iasi616_metop-a 1440 -0.224404E-02 + -0.544 -0.445 -0.938 -0.612 -0.340 -0.633 -0.833 -0.642 -0.526 -0.628 + -0.669 -0.591 -0.617 -0.576 -0.575 -0.729 -0.423 -0.720 -0.684 -0.519 + -0.634 -0.491 -0.606 -0.741 -0.691 -0.706 -0.880 -0.936 -0.712 -0.797 + -0.796 -0.430 -0.736 -0.716 -0.318 -0.819 -0.546 -0.740 -0.642 -0.694 + -0.648 -0.766 -0.787 -0.639 -0.336 -0.874 -0.842 -0.788 -0.603 -0.542 + -0.200 -0.736 -0.552 -0.920 -0.757 -0.523 -1.146 -0.617 -0.706 -0.387 + -0.576 -0.579 -0.949 -0.332 -0.498 -0.476 -0.506 -0.756 -0.683 -0.988 + -0.342 -0.563 -0.642 -0.813 -0.732 -1.147 -0.530 -0.176 -0.282 -0.607 + -0.699 -0.720 -0.788 -0.640 -0.767 -0.774 -0.704 -0.447 -0.487 -0.678 + + 398 iasi616_metop-a 1442 -0.110968E-02 + -0.603 -0.533 -0.877 -0.604 -0.443 -0.662 -0.893 -0.749 -0.568 -0.681 + -0.718 -0.555 -0.692 -0.664 -0.567 -0.793 -0.438 -0.746 -0.678 -0.566 + -0.661 -0.549 -0.656 -0.792 -0.729 -0.722 -0.964 -1.008 -0.771 -0.857 + -0.670 -0.356 -0.695 -0.704 -0.294 -0.691 -0.551 -0.598 -0.643 -0.722 + -0.555 -0.520 -0.648 -0.510 -0.206 -0.824 -0.709 -0.750 -0.593 -0.410 + -0.200 -0.664 -0.593 -0.930 -0.751 -0.414 -1.174 -0.467 -0.640 -0.328 + -0.447 -0.497 -0.896 -0.259 -0.492 -0.353 -0.429 -0.556 -0.592 -0.928 + -0.172 -0.407 -0.655 -0.773 -0.606 -1.128 -0.548 -0.085 -0.198 -0.544 + -0.625 -0.745 -0.760 -0.487 -0.738 -0.647 -0.676 -0.358 -0.503 -0.652 + + 399 iasi616_metop-a 1445 -0.276703E-02 + -0.667 -0.543 -1.009 -0.683 -0.426 -0.700 -0.889 -0.723 -0.579 -0.693 + -0.729 -0.627 -0.674 -0.670 -0.591 -0.778 -0.401 -0.780 -0.685 -0.560 + -0.649 -0.553 -0.675 -0.791 -0.775 -0.755 -0.949 -0.977 -0.810 -0.900 + -0.785 -0.694 -0.762 -0.707 -0.368 -0.824 -0.664 -0.772 -0.768 -0.770 + -0.714 -0.833 -0.823 -0.799 -0.329 -0.871 -0.871 -0.845 -0.674 -0.582 + -0.298 -0.852 -0.644 -1.047 -0.832 -0.647 -1.271 -0.685 -0.835 -0.515 + -0.540 -0.641 -1.042 -0.436 -0.576 -0.514 -0.571 -0.701 -0.722 -1.036 + -0.368 -0.621 -0.699 -0.949 -0.655 -1.239 -0.673 -0.275 -0.396 -0.694 + -0.738 -0.843 -0.770 -0.689 -0.802 -0.798 -0.797 -0.501 -0.712 -0.783 + + 400 iasi616_metop-a 1450 -0.454683E-02 + -0.389 -0.367 -0.753 -0.550 -0.308 -0.541 -0.696 -0.607 -0.429 -0.540 + -0.621 -0.568 -0.645 -0.514 -0.586 -0.808 -0.390 -0.733 -0.724 -0.623 + -0.631 -0.588 -0.645 -0.823 -0.818 -0.767 -0.978 -1.053 -0.824 -0.930 + -0.740 -0.587 -0.725 -0.567 -0.187 -0.694 -0.441 -0.673 -0.538 -0.640 + -0.582 -0.593 -0.495 -0.511 -0.298 -0.808 -0.699 -0.724 -0.504 -0.383 + -0.172 -0.699 -0.675 -0.868 -0.725 -0.489 -1.112 -0.469 -0.614 -0.334 + -0.433 -0.607 -0.872 -0.286 -0.383 -0.392 -0.595 -0.656 -0.619 -1.057 + -0.295 -0.543 -0.490 -0.803 -0.546 -1.049 -0.500 -0.130 -0.211 -0.562 + -0.580 -0.740 -0.617 -0.533 -0.594 -0.598 -0.583 -0.395 -0.462 -0.608 + + 401 iasi616_metop-a 1454 -0.292055E-02 + -0.438 -0.361 -0.732 -0.479 -0.240 -0.429 -0.675 -0.495 -0.378 -0.443 + -0.551 -0.416 -0.532 -0.451 -0.441 -0.574 -0.264 -0.520 -0.504 -0.373 + -0.438 -0.283 -0.434 -0.520 -0.541 -0.461 -0.690 -0.734 -0.513 -0.609 + -0.753 -0.395 -0.711 -0.622 -0.349 -0.800 -0.501 -0.637 -0.602 -0.833 + -0.674 -0.665 -0.751 -0.537 -0.294 -0.759 -0.747 -0.801 -0.494 -0.508 + -0.184 -0.776 -0.562 -0.970 -0.749 -0.615 -1.118 -0.542 -0.740 -0.477 + -0.471 -0.588 -0.973 -0.431 -0.525 -0.480 -0.517 -0.663 -0.543 -1.101 + -0.301 -0.627 -0.596 -0.775 -0.647 -1.120 -0.546 -0.152 -0.268 -0.628 + -0.607 -0.725 -0.765 -0.511 -0.703 -0.570 -0.657 -0.432 -0.469 -0.547 + + 402 iasi616_metop-a 1460 -0.153887E-02 + -0.482 -0.465 -0.828 -0.647 -0.377 -0.574 -0.699 -0.690 -0.471 -0.537 + -0.609 -0.500 -0.614 -0.515 -0.509 -0.633 -0.379 -0.616 -0.529 -0.453 + -0.525 -0.403 -0.467 -0.597 -0.588 -0.618 -0.712 -0.819 -0.529 -0.633 + -0.635 -0.511 -0.741 -0.586 -0.304 -0.690 -0.455 -0.670 -0.291 -0.574 + -0.675 -0.691 -0.309 -0.443 -0.248 -0.740 -0.540 -0.658 -0.373 -0.406 + -0.008 -0.549 -0.527 -0.811 -0.663 -0.301 -1.026 -0.478 -0.622 -0.361 + -0.245 -0.493 -0.665 -0.102 -0.097 -0.383 -0.528 -0.565 -0.446 -0.873 + -0.347 -0.480 -0.428 -0.740 -0.540 -0.926 -0.295 -0.128 -0.178 -0.614 + -0.623 -0.712 -0.678 -0.428 -0.643 -0.517 -0.511 -0.278 -0.472 -0.572 + + 403 iasi616_metop-a 1463 -0.569409E-03 + -0.343 -0.240 -0.562 -0.549 -0.225 -0.366 -0.576 -0.528 -0.290 -0.399 + -0.534 -0.453 -0.540 -0.460 -0.569 -0.681 -0.291 -0.594 -0.628 -0.555 + -0.500 -0.436 -0.558 -0.725 -0.656 -0.652 -0.889 -0.934 -0.675 -0.683 + -0.640 -0.554 -0.752 -0.498 -0.266 -0.834 -0.535 -0.662 -0.540 -0.618 + -0.700 -0.605 -0.518 -0.544 -0.265 -0.764 -0.735 -0.769 -0.586 -0.383 + -0.211 -0.785 -0.705 -0.866 -0.738 -0.547 -1.144 -0.541 -0.745 -0.444 + -0.493 -0.562 -0.920 -0.329 -0.293 -0.469 -0.579 -0.711 -0.574 -1.126 + -0.358 -0.565 -0.551 -0.853 -0.688 -1.076 -0.393 -0.176 -0.232 -0.694 + -0.704 -0.761 -0.715 -0.466 -0.641 -0.538 -0.602 -0.441 -0.419 -0.545 + + 404 iasi616_metop-a 1469 -0.725447E-02 + -0.485 -0.456 -0.757 -0.629 -0.327 -0.572 -0.697 -0.632 -0.368 -0.547 + -0.562 -0.473 -0.579 -0.511 -0.599 -0.627 -0.345 -0.570 -0.596 -0.420 + -0.485 -0.451 -0.464 -0.524 -0.573 -0.568 -0.680 -0.713 -0.478 -0.624 + -0.859 -0.678 -0.866 -0.718 -0.504 -0.909 -0.720 -0.815 -0.573 -0.773 + -0.815 -0.802 -0.614 -0.761 -0.419 -0.853 -0.756 -0.788 -0.618 -0.527 + -0.313 -0.873 -0.709 -0.892 -0.870 -0.656 -1.188 -0.585 -0.934 -0.536 + -0.517 -0.729 -0.940 -0.423 -0.541 -0.428 -0.796 -0.790 -0.663 -1.087 + -0.423 -0.810 -0.772 -0.914 -0.885 -1.161 -0.473 -0.230 -0.410 -0.842 + -0.832 -0.807 -0.746 -0.687 -0.820 -0.591 -0.724 -0.561 -0.640 -0.798 + + 405 iasi616_metop-a 1474 -0.592455E-02 + -0.617 -0.585 -0.969 -0.796 -0.529 -0.709 -0.897 -0.739 -0.532 -0.639 + -0.763 -0.642 -0.663 -0.724 -0.790 -0.829 -0.439 -0.736 -0.734 -0.702 + -0.682 -0.521 -0.696 -0.818 -0.738 -0.720 -0.883 -0.943 -0.721 -0.808 + -0.896 -0.627 -0.882 -0.734 -0.418 -0.946 -0.639 -0.780 -0.551 -0.720 + -0.815 -0.736 -0.527 -0.626 -0.395 -0.967 -0.777 -0.777 -0.630 -0.542 + -0.188 -0.791 -0.772 -0.951 -0.849 -0.663 -1.250 -0.592 -0.819 -0.520 + -0.478 -0.676 -0.937 -0.507 -0.527 -0.502 -0.644 -0.777 -0.583 -1.130 + -0.301 -0.673 -0.723 -0.863 -0.778 -1.071 -0.563 -0.205 -0.464 -0.804 + -0.829 -0.845 -0.778 -0.724 -0.886 -0.766 -0.758 -0.563 -0.625 -0.745 + + 406 iasi616_metop-a 1479 -0.353308E-03 + -0.340 -0.320 -0.482 -0.442 -0.293 -0.345 -0.617 -0.614 -0.277 -0.439 + -0.640 -0.449 -0.512 -0.512 -0.496 -0.734 -0.410 -0.627 -0.662 -0.684 + -0.590 -0.519 -0.592 -0.627 -0.719 -0.685 -0.989 -0.967 -0.723 -0.799 + -0.592 -0.404 -0.498 -0.509 -0.321 -0.665 -0.455 -0.605 -0.288 -0.358 + -0.568 -0.846 -0.785 -0.332 -0.387 -0.675 -0.706 -0.790 -0.601 -0.424 + -0.121 -0.573 -0.672 -0.730 -0.585 -0.478 -0.878 -0.421 -0.598 -0.390 + -0.431 -0.564 -0.797 -0.146 -0.284 -0.562 -0.419 -0.671 -0.398 -0.852 + -0.215 -0.504 -0.498 -0.688 -0.450 -0.638 -0.259 -0.375 -0.240 -0.666 + -0.663 -0.454 -0.686 -0.573 -0.406 -0.237 -0.412 -0.192 -0.378 -0.715 + + 407 iasi616_metop-a 1483 -0.696302E-02 + -0.686 -0.532 -0.968 -0.888 -0.417 -0.666 -0.772 -0.721 -0.430 -0.587 + -0.611 -0.667 -0.560 -0.703 -0.668 -0.584 -0.299 -0.558 -0.787 -0.503 + -0.523 -0.493 -0.550 -0.581 -0.504 -0.478 -0.742 -0.736 -0.471 -0.600 + -0.987 -0.817 -1.027 -0.882 -0.488 -1.047 -0.629 -0.992 -0.736 -0.858 + -0.927 -1.013 -0.731 -0.776 -0.434 -0.983 -0.909 -0.911 -0.762 -0.573 + -0.386 -0.955 -0.821 -1.162 -0.933 -0.829 -1.297 -0.663 -0.937 -0.614 + -0.581 -0.898 -1.049 -0.555 -0.601 -0.546 -0.715 -0.819 -0.566 -1.265 + -0.412 -0.810 -0.807 -0.897 -0.911 -1.196 -0.632 -0.317 -0.503 -0.977 + -0.886 -0.998 -0.903 -0.775 -0.964 -0.885 -0.831 -0.587 -0.728 -0.956 + + 408 iasi616_metop-a 1487 -0.808092E-02 + -0.413 -0.496 -0.736 -0.626 -0.497 -0.622 -0.829 -0.827 -0.490 -0.665 + -0.763 -0.714 -0.755 -0.753 -0.814 -0.955 -0.670 -0.879 -0.912 -0.900 + -0.806 -0.736 -0.883 -1.053 -1.076 -1.001 -1.262 -1.306 -1.059 -1.112 + -0.908 -0.693 -0.891 -0.752 -0.385 -0.997 -0.576 -0.904 -0.534 -0.741 + -0.971 -0.962 -0.707 -0.685 -0.413 -1.047 -0.788 -0.835 -0.578 -0.623 + -0.274 -0.871 -0.792 -1.099 -0.999 -0.665 -1.205 -0.697 -0.930 -0.524 + -0.632 -0.790 -0.982 -0.434 -0.478 -0.655 -0.828 -0.883 -0.615 -1.082 + -0.457 -0.924 -0.777 -0.934 -0.910 -1.110 -0.522 -0.318 -0.422 -0.940 + -0.839 -0.876 -0.943 -0.758 -0.833 -0.697 -0.757 -0.543 -0.746 -0.769 + + 409 iasi616_metop-a 1494 -0.662252E-02 + -0.650 -0.599 -0.966 -0.913 -0.513 -0.698 -0.915 -0.841 -0.523 -0.639 + -0.633 -0.597 -0.774 -0.710 -0.728 -0.820 -0.380 -0.722 -0.785 -0.703 + -0.647 -0.488 -0.595 -0.755 -0.703 -0.730 -0.781 -0.852 -0.584 -0.723 + -0.793 -0.663 -0.916 -0.757 -0.453 -0.845 -0.580 -0.876 -0.542 -0.747 + -0.785 -0.981 -0.665 -0.806 -0.428 -0.918 -0.801 -0.790 -0.625 -0.638 + -0.261 -0.896 -0.844 -0.982 -0.913 -0.691 -1.146 -0.679 -0.930 -0.621 + -0.658 -0.828 -0.984 -0.382 -0.407 -0.650 -0.821 -0.777 -0.662 -1.072 + -0.442 -0.829 -0.745 -0.909 -0.766 -0.962 -0.536 -0.380 -0.386 -0.871 + -0.838 -0.900 -0.843 -0.668 -0.859 -0.665 -0.657 -0.597 -0.708 -0.860 + + 410 iasi616_metop-a 1496 -0.970269E-02 + -0.532 -0.496 -0.766 -0.734 -0.469 -0.604 -0.869 -0.795 -0.449 -0.599 + -0.637 -0.632 -0.692 -0.668 -0.764 -0.870 -0.442 -0.724 -0.894 -0.767 + -0.700 -0.610 -0.712 -0.925 -0.867 -0.812 -1.131 -1.175 -0.883 -0.935 + -0.825 -0.656 -0.846 -0.655 -0.532 -1.002 -0.580 -0.808 -0.455 -0.700 + -0.845 -0.944 -0.560 -0.827 -0.361 -0.960 -0.623 -0.860 -0.448 -0.586 + -0.069 -0.774 -0.730 -0.926 -0.873 -0.629 -1.088 -0.562 -0.848 -0.477 + -0.559 -0.725 -0.912 -0.398 -0.381 -0.445 -0.772 -0.685 -0.640 -0.956 + -0.345 -0.779 -0.715 -0.853 -0.690 -0.991 -0.419 -0.431 -0.364 -0.800 + -0.804 -0.837 -0.756 -0.725 -0.782 -0.674 -0.615 -0.576 -0.678 -0.787 + + 411 iasi616_metop-a 1502 -0.956706E-02 + -0.525 -0.454 -0.745 -0.700 -0.535 -0.631 -0.878 -0.921 -0.486 -0.647 + -0.728 -0.698 -0.715 -0.890 -0.813 -0.888 -0.564 -0.797 -0.961 -0.821 + -0.723 -0.735 -0.749 -0.893 -0.834 -0.807 -1.031 -1.009 -0.826 -0.929 + -1.180 -0.816 -1.075 -0.923 -0.684 -1.129 -0.769 -1.097 -0.679 -0.965 + -0.943 -1.184 -0.878 -1.039 -0.704 -1.232 -1.046 -1.068 -0.815 -0.803 + -0.330 -1.022 -1.015 -1.244 -1.077 -0.830 -1.190 -0.892 -1.112 -0.853 + -0.872 -1.005 -1.081 -0.666 -0.681 -0.776 -1.025 -0.916 -0.932 -1.287 + -0.743 -1.044 -0.920 -1.073 -1.100 -1.183 -0.713 -0.649 -0.576 -0.960 + -1.055 -1.068 -1.094 -0.899 -1.036 -0.847 -0.921 -0.795 -0.874 -0.978 + + 412 iasi616_metop-a 1505 -0.957828E-02 + -0.678 -0.605 -0.921 -0.878 -0.682 -0.758 -1.009 -1.033 -0.688 -0.790 + -0.846 -0.856 -0.847 -0.856 -0.946 -1.008 -0.673 -0.946 -1.074 -0.928 + -0.859 -0.767 -0.807 -0.958 -0.891 -0.907 -1.012 -0.982 -0.825 -0.928 + -1.174 -0.809 -1.110 -1.010 -0.736 -1.139 -0.856 -1.072 -0.726 -1.019 + -0.994 -1.207 -0.992 -0.988 -0.840 -1.221 -0.998 -1.100 -0.894 -0.898 + -0.367 -1.020 -0.971 -1.173 -1.060 -0.946 -1.208 -0.785 -1.108 -0.811 + -0.763 -1.045 -1.178 -0.702 -0.588 -0.751 -0.956 -0.928 -0.968 -1.253 + -0.610 -1.026 -0.994 -1.083 -0.980 -1.234 -0.714 -0.583 -0.646 -1.097 + -1.021 -1.100 -1.007 -0.952 -0.968 -0.867 -0.915 -0.797 -0.962 -1.085 + + 413 iasi616_metop-a 1509 -0.768152E-02 + -0.712 -0.667 -0.998 -0.951 -0.737 -0.870 -1.055 -1.008 -0.721 -0.860 + -0.896 -0.869 -0.915 -1.046 -1.014 -1.111 -0.717 -0.991 -1.149 -1.000 + -0.890 -0.845 -0.826 -1.046 -0.938 -0.968 -1.058 -1.066 -0.897 -1.088 + -1.290 -0.931 -1.230 -1.038 -0.838 -1.265 -0.896 -1.146 -0.797 -1.087 + -1.160 -1.285 -0.934 -1.173 -0.588 -1.324 -0.954 -1.163 -0.916 -0.831 + -0.453 -1.129 -1.064 -1.286 -1.210 -0.998 -1.522 -0.980 -1.188 -0.829 + -0.977 -1.069 -1.209 -0.791 -0.830 -0.828 -1.060 -1.099 -0.908 -1.369 + -0.752 -1.120 -1.087 -1.207 -1.082 -1.399 -0.839 -0.591 -0.791 -1.161 + -1.157 -1.130 -1.160 -1.125 -1.099 -1.018 -0.982 -1.003 -1.019 -1.176 + + 414 iasi616_metop-a 1510 -0.920586E-02 + -0.784 -0.792 -1.054 -1.007 -0.778 -0.902 -1.073 -1.085 -0.759 -0.902 + -0.998 -0.963 -0.914 -1.063 -0.988 -1.119 -0.783 -1.021 -1.084 -1.096 + -0.954 -0.901 -0.880 -1.066 -1.000 -1.058 -1.151 -1.134 -0.919 -1.039 + -1.172 -0.828 -1.113 -1.008 -0.678 -1.162 -0.874 -1.113 -0.722 -0.985 + -1.098 -1.234 -1.012 -1.021 -0.634 -1.315 -0.951 -1.017 -0.809 -0.784 + -0.378 -1.029 -0.942 -1.129 -1.098 -0.942 -1.244 -0.911 -1.085 -0.797 + -0.772 -0.992 -1.215 -0.635 -0.723 -0.711 -1.032 -0.982 -0.866 -1.309 + -0.741 -1.029 -0.992 -1.173 -0.994 -1.258 -0.705 -0.523 -0.689 -1.055 + -0.990 -1.156 -1.035 -1.032 -0.979 -0.899 -0.905 -0.889 -0.842 -1.137 + + 415 iasi616_metop-a 1513 -0.101121E-01 + -0.647 -0.657 -0.918 -0.812 -0.654 -0.758 -0.987 -0.990 -0.692 -0.719 + -0.867 -0.848 -0.797 -0.953 -0.903 -1.020 -0.703 -0.901 -1.039 -1.042 + -0.884 -0.801 -0.851 -1.013 -0.960 -0.972 -1.171 -1.203 -0.957 -1.084 + -1.051 -0.739 -0.852 -0.729 -0.557 -0.884 -0.769 -0.897 -0.521 -0.731 + -0.911 -1.034 -0.899 -0.843 -0.570 -1.056 -0.816 -0.867 -0.754 -0.667 + -0.187 -0.844 -0.957 -0.970 -0.905 -0.776 -1.110 -0.607 -0.889 -0.585 + -0.639 -0.788 -0.985 -0.569 -0.552 -0.606 -0.886 -0.738 -0.636 -1.063 + -0.495 -0.830 -0.830 -0.903 -0.870 -1.089 -0.522 -0.387 -0.473 -0.951 + -0.848 -0.914 -0.832 -0.812 -0.835 -0.786 -0.745 -0.645 -0.807 -0.911 + + 416 iasi616_metop-a 1518 -0.108132E-01 + -0.780 -0.638 -1.039 -0.986 -0.749 -0.865 -1.053 -1.053 -0.676 -0.789 + -0.856 -0.830 -0.882 -0.966 -0.932 -0.937 -0.596 -0.897 -1.120 -0.877 + -0.809 -0.807 -0.805 -0.939 -0.861 -0.931 -1.040 -1.040 -0.813 -0.964 + -1.277 -0.930 -1.304 -1.057 -0.764 -1.156 -1.006 -1.013 -0.874 -1.044 + -1.023 -1.282 -1.061 -1.191 -0.861 -1.328 -1.037 -1.118 -1.035 -0.968 + -0.466 -1.096 -1.135 -1.241 -1.151 -0.959 -1.361 -0.862 -1.212 -0.839 + -0.856 -1.016 -1.142 -0.742 -0.799 -0.756 -1.106 -1.023 -0.977 -1.316 + -0.857 -1.123 -1.130 -1.148 -1.175 -1.320 -0.797 -0.811 -0.774 -1.095 + -1.099 -1.183 -1.105 -1.021 -1.070 -0.970 -1.063 -0.929 -0.913 -1.108 + + 417 iasi616_metop-a 1521 -0.998232E-02 + -0.657 -0.622 -0.926 -0.861 -0.692 -0.768 -1.055 -1.014 -0.783 -0.807 + -0.950 -0.883 -0.887 -0.994 -1.010 -1.077 -0.784 -0.989 -1.124 -1.075 + -0.973 -0.895 -0.953 -1.087 -1.010 -1.097 -1.264 -1.234 -1.069 -1.166 + -1.217 -0.821 -1.015 -0.841 -0.638 -1.085 -0.839 -0.948 -0.653 -0.855 + -0.907 -1.104 -0.962 -0.992 -0.802 -1.224 -0.912 -1.043 -0.837 -0.815 + -0.191 -0.952 -1.029 -1.073 -1.005 -0.854 -1.226 -0.741 -1.061 -0.792 + -0.709 -0.910 -1.035 -0.641 -0.582 -0.765 -0.954 -0.817 -0.767 -1.175 + -0.721 -0.952 -0.873 -0.995 -1.071 -1.206 -0.642 -0.555 -0.600 -1.020 + -0.950 -0.969 -0.930 -0.894 -0.860 -0.955 -0.836 -0.773 -0.881 -1.038 + + 418 iasi616_metop-a 1526 -0.965134E-02 + -0.874 -0.750 -1.106 -1.027 -0.844 -0.934 -1.137 -1.099 -0.753 -0.917 + -0.977 -0.850 -0.933 -1.024 -1.011 -1.074 -0.761 -0.995 -1.174 -0.925 + -0.845 -0.893 -0.827 -1.016 -0.925 -0.965 -1.016 -1.021 -0.846 -0.969 + -1.330 -0.979 -1.134 -1.115 -0.881 -1.236 -0.964 -1.108 -0.847 -1.080 + -1.164 -1.304 -1.071 -1.239 -0.839 -1.420 -1.103 -1.247 -1.018 -0.988 + -0.539 -1.112 -1.128 -1.414 -1.239 -1.018 -1.549 -0.917 -1.258 -0.914 + -1.019 -1.084 -1.257 -0.747 -0.824 -0.874 -1.197 -1.045 -0.980 -1.433 + -0.862 -1.100 -1.157 -1.186 -1.153 -1.317 -0.886 -0.655 -0.829 -1.138 + -1.160 -1.212 -1.148 -1.084 -1.102 -1.015 -1.058 -0.985 -1.046 -1.226 + + 419 iasi616_metop-a 1529 -0.114242E-01 + -0.829 -0.832 -1.109 -1.028 -0.840 -0.927 -1.175 -1.196 -0.939 -0.951 + -1.093 -1.015 -0.994 -1.094 -1.089 -1.149 -0.936 -1.130 -1.225 -1.210 + -1.031 -0.961 -1.069 -1.187 -1.098 -1.158 -1.345 -1.299 -1.127 -1.209 + -1.340 -0.942 -1.144 -1.046 -0.767 -1.271 -0.915 -1.060 -0.911 -0.978 + -1.017 -1.256 -1.060 -1.195 -0.810 -1.358 -1.092 -1.216 -0.947 -0.910 + -0.383 -1.083 -1.059 -1.193 -1.105 -0.986 -1.305 -0.856 -1.114 -0.905 + -0.841 -1.068 -1.117 -0.779 -0.660 -0.833 -1.084 -0.975 -0.895 -1.279 + -0.861 -1.049 -1.083 -1.098 -1.072 -1.290 -0.811 -0.714 -0.725 -1.102 + -1.012 -1.053 -1.061 -1.037 -1.017 -1.062 -0.936 -0.865 -1.016 -1.185 + + 420 iasi616_metop-a 1532 -0.767450E-02 + -0.954 -0.861 -1.251 -1.175 -0.920 -1.044 -1.234 -1.243 -0.868 -1.047 + -1.036 -1.007 -1.057 -1.214 -1.125 -1.134 -0.890 -1.097 -1.298 -1.036 + -1.053 -1.045 -0.986 -1.159 -1.098 -1.097 -1.273 -1.242 -1.066 -1.201 + -1.330 -1.191 -1.403 -1.170 -0.953 -1.480 -1.068 -1.302 -0.957 -1.241 + -1.341 -1.532 -1.175 -1.416 -0.910 -1.532 -1.294 -1.355 -1.100 -1.099 + -0.688 -1.298 -1.294 -1.424 -1.342 -1.174 -1.639 -1.128 -1.409 -1.082 + -1.079 -1.277 -1.337 -1.012 -0.928 -0.981 -1.312 -1.243 -1.241 -1.591 + -0.928 -1.239 -1.180 -1.396 -1.254 -1.511 -1.101 -0.893 -0.900 -1.353 + -1.271 -1.320 -1.240 -1.222 -1.247 -1.222 -1.178 -1.064 -1.124 -1.295 + + 421 iasi616_metop-a 1536 -0.652334E-02 + -0.629 -0.641 -0.769 -0.783 -0.703 -0.771 -0.974 -1.064 -0.667 -0.790 + -1.023 -0.849 -0.857 -0.898 -0.901 -1.149 -0.692 -0.997 -1.065 -1.062 + -0.933 -0.924 -0.949 -1.114 -1.008 -1.119 -1.339 -1.337 -1.088 -1.167 + -0.674 -0.550 -0.538 -0.562 -0.301 -0.695 -0.373 -0.534 -0.254 -0.520 + -0.600 -0.797 -0.616 -0.575 -0.404 -0.819 -0.640 -0.778 -0.413 -0.389 + 0.021 -0.465 -0.529 -0.671 -0.606 -0.576 -0.909 -0.395 -0.680 -0.415 + -0.368 -0.612 -0.540 -0.092 -0.177 -0.501 -0.501 -0.610 -0.475 -0.934 + -0.334 -0.603 -0.434 -0.804 -0.551 -0.877 -0.368 -0.357 -0.231 -0.738 + -0.627 -0.586 -0.652 -0.691 -0.437 -0.510 -0.526 -0.310 -0.458 -0.643 + + 422 iasi616_metop-a 1537 -0.107164E-01 + -0.637 -0.598 -0.844 -0.825 -0.510 -0.632 -0.771 -0.707 -0.490 -0.588 + -0.733 -0.600 -0.548 -0.798 -0.779 -0.715 -0.491 -0.627 -0.850 -0.693 + -0.509 -0.652 -0.605 -0.704 -0.627 -0.669 -0.855 -0.776 -0.547 -0.639 + -1.055 -0.647 -0.796 -0.767 -0.464 -0.827 -0.731 -0.753 -0.506 -0.717 + -0.694 -0.945 -0.917 -0.884 -0.656 -1.042 -0.799 -0.919 -0.543 -0.629 + -0.079 -0.678 -0.768 -0.804 -0.789 -0.752 -1.013 -0.622 -0.791 -0.580 + -0.539 -0.719 -0.775 -0.310 -0.367 -0.638 -0.687 -0.688 -0.645 -1.079 + -0.596 -0.708 -0.647 -0.966 -0.695 -0.951 -0.519 -0.493 -0.470 -0.829 + -0.753 -0.764 -0.878 -0.775 -0.603 -0.796 -0.719 -0.451 -0.741 -0.933 + + 423 iasi616_metop-a 1541 -0.767374E-02 + -0.830 -0.772 -1.104 -1.077 -0.767 -0.882 -1.066 -1.074 -0.712 -0.840 + -0.928 -0.926 -0.849 -0.950 -0.941 -0.963 -0.657 -0.861 -1.146 -0.895 + -0.887 -0.906 -0.839 -1.032 -0.939 -0.974 -1.197 -1.160 -0.893 -1.106 + -1.260 -1.005 -1.148 -1.020 -0.838 -1.171 -0.914 -1.053 -0.854 -0.935 + -1.039 -1.330 -0.953 -1.087 -0.806 -1.254 -1.112 -1.153 -0.887 -0.904 + -0.451 -1.086 -1.042 -1.201 -1.163 -0.932 -1.348 -0.907 -1.113 -0.911 + -0.833 -0.964 -1.149 -0.679 -0.638 -0.897 -1.061 -1.089 -0.954 -1.353 + -0.940 -1.105 -0.940 -1.159 -1.078 -1.287 -0.807 -0.719 -0.777 -1.220 + -1.118 -1.157 -1.172 -1.057 -0.977 -1.068 -1.096 -0.880 -1.033 -1.060 + + 424 iasi616_metop-a 1545 -0.135339E-01 + -0.959 -0.920 -1.210 -1.127 -0.972 -0.995 -1.143 -1.162 -0.835 -0.990 + -1.105 -1.062 -0.997 -1.139 -1.102 -1.172 -0.893 -1.125 -1.296 -1.187 + -1.088 -1.071 -1.096 -1.206 -1.159 -1.217 -1.411 -1.395 -1.202 -1.282 + -1.395 -0.940 -1.137 -1.078 -0.784 -1.185 -0.968 -1.094 -0.826 -0.926 + -1.065 -1.270 -1.135 -1.263 -0.929 -1.311 -1.070 -1.226 -0.935 -0.985 + -0.466 -1.099 -1.214 -1.185 -1.117 -1.104 -1.331 -0.870 -1.153 -0.931 + -0.820 -1.082 -1.179 -0.726 -0.652 -0.873 -1.028 -1.035 -0.882 -1.323 + -0.901 -1.065 -1.035 -1.169 -0.983 -1.204 -0.841 -0.745 -0.726 -1.155 + -1.072 -1.269 -1.092 -1.056 -0.984 -1.004 -1.010 -0.909 -0.998 -1.212 + + 425 iasi616_metop-a 1548 -0.913688E-02 + -0.976 -0.923 -1.290 -1.201 -0.966 -1.122 -1.275 -1.210 -0.897 -1.055 + -1.066 -1.135 -1.062 -1.240 -1.202 -1.224 -0.871 -1.155 -1.378 -1.132 + -1.041 -1.101 -1.093 -1.272 -1.176 -1.215 -1.402 -1.391 -1.158 -1.338 + -1.313 -1.105 -1.273 -1.166 -0.893 -1.338 -1.005 -1.301 -0.949 -1.135 + -1.222 -1.352 -1.136 -1.316 -0.895 -1.554 -1.308 -1.257 -1.064 -1.088 + -0.637 -1.197 -1.244 -1.342 -1.322 -1.156 -1.555 -1.069 -1.322 -1.041 + -1.119 -1.191 -1.247 -0.820 -0.916 -0.964 -1.263 -1.094 -1.079 -1.510 + -0.928 -1.217 -1.187 -1.328 -1.163 -1.371 -0.990 -0.804 -0.865 -1.289 + -1.118 -1.280 -1.193 -1.202 -1.240 -1.103 -1.205 -1.041 -1.143 -1.307 + + 426 iasi616_metop-a 1553 -0.155616E-01 + -1.125 -1.098 -1.415 -1.296 -1.078 -1.158 -1.318 -1.342 -0.980 -1.096 + -1.259 -1.169 -1.150 -1.305 -1.192 -1.284 -0.947 -1.175 -1.371 -1.243 + -1.090 -1.076 -1.187 -1.330 -1.223 -1.287 -1.483 -1.466 -1.252 -1.364 + -1.247 -0.920 -1.059 -0.944 -0.712 -1.212 -0.881 -0.881 -0.795 -0.952 + -0.941 -1.204 -0.944 -1.062 -0.879 -1.175 -1.021 -1.188 -0.736 -0.828 + -0.279 -0.943 -1.053 -1.088 -0.966 -0.862 -1.236 -0.758 -0.997 -0.769 + -0.803 -0.867 -1.048 -0.586 -0.552 -0.782 -0.926 -0.934 -0.722 -1.161 + -0.765 -0.969 -0.910 -1.084 -1.074 -1.147 -0.759 -0.636 -0.684 -1.014 + -0.986 -1.048 -1.023 -1.053 -0.933 -1.025 -0.910 -0.816 -0.986 -1.128 + + 427 iasi616_metop-a 1560 -0.215177E-01 + -1.106 -1.005 -1.409 -1.347 -1.045 -1.115 -1.356 -1.320 -1.023 -1.140 + -1.173 -1.196 -1.206 -1.303 -1.303 -1.226 -0.963 -1.221 -1.440 -1.269 + -1.157 -1.232 -1.271 -1.382 -1.307 -1.332 -1.576 -1.571 -1.330 -1.450 + -1.395 -1.074 -1.094 -1.120 -0.909 -1.387 -1.147 -1.150 -0.993 -1.087 + -1.258 -1.253 -1.403 -1.262 -1.026 -1.329 -1.216 -1.277 -0.979 -0.975 + -0.513 -1.151 -1.157 -1.197 -1.290 -1.157 -1.295 -0.942 -1.172 -1.079 + -0.911 -1.079 -1.163 -0.823 -0.763 -0.984 -1.103 -1.181 -0.932 -1.295 + -0.989 -1.175 -1.120 -1.194 -1.222 -1.390 -0.961 -0.964 -0.830 -1.191 + -1.187 -1.092 -1.239 -1.175 -1.049 -1.184 -1.147 -0.946 -1.099 -1.351 + + 428 iasi616_metop-a 1568 -0.192118E-01 + -0.979 -0.946 -1.181 -1.131 -1.028 -1.186 -1.281 -1.306 -1.065 -1.194 + -1.179 -1.188 -1.220 -1.303 -1.291 -1.278 -1.092 -1.300 -1.581 -1.287 + -1.323 -1.305 -1.355 -1.424 -1.383 -1.471 -1.639 -1.655 -1.394 -1.582 + -1.509 -1.064 -1.217 -1.195 -0.935 -1.338 -1.107 -1.216 -1.029 -1.176 + -1.141 -1.285 -1.377 -1.466 -1.004 -1.424 -1.234 -1.267 -1.189 -1.044 + -0.549 -1.190 -1.280 -1.306 -1.290 -1.209 -1.333 -1.010 -1.201 -1.141 + -1.063 -1.282 -1.240 -0.727 -0.900 -1.013 -1.310 -1.142 -1.031 -1.436 + -0.944 -1.126 -1.256 -1.305 -1.317 -1.399 -0.911 -0.978 -0.827 -1.225 + -1.203 -1.218 -1.195 -1.246 -1.079 -1.158 -0.994 -0.990 -1.075 -1.299 + + 429 iasi616_metop-a 1574 -0.188687E-01 + -1.107 -1.094 -1.291 -1.267 -1.088 -1.219 -1.443 -1.438 -1.115 -1.223 + -1.310 -1.243 -1.226 -1.288 -1.252 -1.263 -1.004 -1.218 -1.431 -1.255 + -1.184 -1.203 -1.208 -1.300 -1.224 -1.229 -1.393 -1.375 -1.114 -1.236 + -1.546 -1.105 -1.221 -1.264 -1.006 -1.545 -1.288 -1.252 -1.159 -1.263 + -1.322 -1.440 -1.439 -1.453 -1.190 -1.503 -1.376 -1.364 -1.078 -1.124 + -0.621 -1.319 -1.302 -1.471 -1.383 -1.276 -1.508 -1.039 -1.319 -1.233 + -1.048 -1.286 -1.361 -1.065 -0.964 -1.038 -1.258 -1.279 -1.069 -1.543 + -1.129 -1.255 -1.275 -1.366 -1.480 -1.518 -1.070 -1.107 -1.025 -1.326 + -1.302 -1.215 -1.380 -1.340 -1.067 -1.263 -1.203 -1.195 -1.199 -1.453 + + 430 iasi616_metop-a 1579 -0.208084E-01 + -1.148 -1.145 -1.208 -1.217 -1.153 -1.273 -1.348 -1.358 -1.238 -1.367 + -1.333 -1.243 -1.336 -1.460 -1.390 -1.368 -1.186 -1.409 -1.559 -1.361 + -1.394 -1.420 -1.391 -1.444 -1.421 -1.501 -1.574 -1.523 -1.333 -1.507 + -1.508 -1.249 -1.425 -1.456 -1.172 -1.554 -1.233 -1.385 -1.256 -1.409 + -1.476 -1.596 -1.569 -1.488 -1.309 -1.577 -1.497 -1.501 -1.312 -1.300 + -0.958 -1.472 -1.513 -1.622 -1.442 -1.354 -1.615 -1.293 -1.477 -1.243 + -1.252 -1.447 -1.461 -1.172 -1.225 -1.278 -1.320 -1.422 -1.403 -1.592 + -1.171 -1.498 -1.432 -1.726 -1.480 -1.680 -1.358 -1.317 -1.260 -1.404 + -1.487 -1.404 -1.672 -1.462 -1.240 -1.181 -1.260 -1.215 -1.265 -1.614 + + 431 iasi616_metop-a 1583 -0.220033E-01 + -1.472 -1.418 -1.568 -1.554 -1.433 -1.558 -1.731 -1.612 -1.510 -1.612 + -1.601 -1.588 -1.572 -1.625 -1.605 -1.492 -1.393 -1.485 -1.689 -1.514 + -1.524 -1.500 -1.501 -1.563 -1.484 -1.468 -1.493 -1.491 -1.374 -1.454 + -2.116 -1.686 -1.838 -1.771 -1.629 -1.921 -1.659 -1.729 -1.775 -1.823 + -1.916 -2.008 -2.075 -2.000 -1.631 -2.057 -1.924 -1.863 -1.697 -1.683 + -1.298 -1.899 -1.811 -2.020 -1.923 -1.871 -2.003 -1.663 -1.889 -1.761 + -1.535 -1.828 -1.819 -1.618 -1.612 -1.559 -1.862 -1.782 -1.648 -2.014 + -1.540 -1.897 -1.874 -2.004 -1.937 -1.979 -1.697 -1.612 -1.578 -1.752 + -1.862 -1.677 -1.909 -1.780 -1.656 -1.793 -1.643 -1.668 -1.588 -1.890 + + 432 iasi616_metop-a 1585 -0.198507E-01 + -1.555 -1.607 -1.658 -1.592 -1.668 -1.729 -1.954 -1.843 -1.696 -1.778 + -1.737 -1.693 -1.769 -1.831 -1.822 -1.810 -1.637 -1.776 -1.909 -1.777 + -1.819 -1.806 -1.739 -1.801 -1.800 -1.801 -1.854 -1.846 -1.692 -1.765 + -2.003 -1.676 -1.845 -1.859 -1.523 -1.990 -1.730 -1.752 -1.661 -1.768 + -1.903 -1.930 -2.073 -1.972 -1.599 -2.027 -1.844 -1.846 -1.686 -1.622 + -1.260 -1.833 -1.757 -1.916 -1.950 -1.776 -1.920 -1.665 -1.807 -1.608 + -1.612 -1.768 -1.776 -1.500 -1.545 -1.463 -1.784 -1.674 -1.713 -2.008 + -1.552 -1.816 -1.758 -2.017 -1.968 -1.929 -1.764 -1.485 -1.484 -1.774 + -1.856 -1.701 -1.913 -1.774 -1.601 -1.677 -1.624 -1.620 -1.555 -1.904 + + 433 iasi616_metop-a 1587 -0.196676E-01 + -1.507 -1.508 -1.587 -1.524 -1.593 -1.663 -1.808 -1.752 -1.644 -1.702 + -1.641 -1.658 -1.594 -1.748 -1.696 -1.733 -1.573 -1.697 -1.818 -1.695 + -1.687 -1.720 -1.670 -1.725 -1.676 -1.705 -1.743 -1.724 -1.604 -1.652 + -1.879 -1.437 -1.650 -1.664 -1.397 -1.615 -1.506 -1.658 -1.492 -1.490 + -1.671 -1.749 -1.923 -1.718 -1.490 -1.767 -1.649 -1.627 -1.496 -1.518 + -1.142 -1.600 -1.656 -1.734 -1.683 -1.563 -1.764 -1.569 -1.630 -1.445 + -1.290 -1.596 -1.555 -1.193 -1.292 -1.379 -1.704 -1.489 -1.517 -1.808 + -1.309 -1.503 -1.606 -1.754 -1.707 -1.701 -1.451 -1.367 -1.333 -1.549 + -1.598 -1.550 -1.738 -1.536 -1.367 -1.460 -1.420 -1.455 -1.372 -1.720 + + 434 iasi616_metop-a 1606 -0.100489E-01 + -1.391 -1.310 -1.641 -1.541 -1.417 -1.497 -1.745 -1.668 -1.468 -1.493 + -1.542 -1.574 -1.426 -1.555 -1.574 -1.628 -1.314 -1.507 -1.751 -1.557 + -1.586 -1.479 -1.539 -1.608 -1.538 -1.523 -1.603 -1.651 -1.425 -1.517 + -1.551 -1.292 -1.542 -1.362 -1.035 -1.584 -1.227 -1.438 -1.242 -1.372 + -1.363 -1.629 -1.238 -1.461 -1.111 -1.610 -1.341 -1.532 -1.369 -1.168 + -0.833 -1.452 -1.445 -1.448 -1.363 -1.381 -1.829 -1.277 -1.518 -1.252 + -1.214 -1.375 -1.509 -1.102 -1.145 -1.127 -1.354 -1.319 -1.386 -1.707 + -1.127 -1.372 -1.408 -1.596 -1.435 -1.687 -1.293 -0.992 -1.108 -1.520 + -1.448 -1.456 -1.374 -1.348 -1.419 -1.369 -1.431 -1.293 -1.312 -1.468 + + 435 iasi616_metop-a 1626 -0.938606E-02 + -1.077 -1.022 -1.252 -1.153 -1.115 -1.178 -1.323 -1.390 -1.250 -1.276 + -1.386 -1.208 -1.307 -1.353 -1.323 -1.442 -1.163 -1.345 -1.460 -1.517 + -1.315 -1.341 -1.383 -1.499 -1.399 -1.509 -1.678 -1.660 -1.507 -1.562 + -1.462 -1.121 -1.264 -1.367 -0.999 -1.496 -1.210 -1.274 -1.023 -1.168 + -1.384 -1.510 -1.346 -1.263 -1.109 -1.441 -1.425 -1.498 -1.234 -1.144 + -0.724 -1.274 -1.346 -1.358 -1.324 -1.258 -1.488 -1.119 -1.260 -1.104 + -1.060 -1.327 -1.335 -0.872 -0.977 -1.255 -1.231 -1.280 -1.123 -1.577 + -1.028 -1.168 -1.326 -1.545 -1.397 -1.387 -1.007 -1.016 -0.882 -1.238 + -1.292 -1.194 -1.413 -1.261 -1.156 -1.193 -1.192 -1.018 -1.230 -1.461 + + 436 iasi616_metop-a 1639 -0.126328E-01 + -0.970 -0.842 -1.130 -1.074 -0.982 -1.033 -1.216 -1.235 -1.005 -1.007 + -1.230 -1.132 -1.079 -1.210 -1.230 -1.164 -1.002 -1.202 -1.442 -1.201 + -1.145 -1.211 -1.147 -1.277 -1.213 -1.134 -1.384 -1.321 -1.141 -1.315 + -1.420 -0.861 -1.170 -0.970 -0.798 -1.355 -1.000 -1.122 -0.877 -1.030 + -1.169 -1.253 -1.373 -1.230 -0.942 -1.211 -1.120 -1.195 -0.970 -0.881 + -0.568 -1.083 -1.160 -1.157 -1.158 -1.197 -1.300 -0.868 -1.108 -0.916 + -1.023 -1.127 -1.066 -0.743 -0.838 -0.804 -1.133 -1.019 -0.928 -1.282 + -0.783 -1.108 -1.125 -1.234 -1.269 -1.300 -0.835 -0.660 -0.757 -1.109 + -1.085 -0.969 -1.187 -1.145 -1.009 -1.030 -1.009 -0.775 -0.945 -1.134 + + 437 iasi616_metop-a 1643 -0.326757E-02 + -0.506 -0.501 -0.599 -0.645 -0.593 -0.614 -0.768 -0.787 -0.671 -0.655 + -0.897 -0.674 -0.714 -0.787 -0.797 -0.842 -0.701 -0.900 -1.077 -0.877 + -0.824 -0.892 -0.805 -0.868 -0.875 -0.949 -1.151 -1.095 -0.906 -1.023 + -0.831 -0.540 -0.479 -0.704 -0.269 -0.961 -0.652 -0.624 -0.351 -0.509 + -0.736 -0.830 -0.900 -0.729 -0.754 -0.821 -0.851 -0.983 -0.685 -0.581 + -0.331 -0.719 -0.715 -0.739 -0.746 -0.883 -1.024 -0.611 -0.893 -0.626 + -0.694 -0.842 -0.778 -0.431 -0.483 -0.665 -0.640 -0.841 -0.591 -1.092 + -0.528 -0.872 -0.730 -0.862 -0.778 -0.787 -0.539 -0.566 -0.220 -0.830 + -0.734 -0.574 -0.855 -0.757 -0.577 -0.515 -0.563 -0.426 -0.576 -0.796 + + 438 iasi616_metop-a 1652 -0.120913E-01 + -0.553 -0.438 -0.838 -0.707 -0.495 -0.610 -0.774 -0.743 -0.455 -0.485 + -0.747 -0.652 -0.535 -0.684 -0.725 -0.553 -0.449 -0.602 -0.843 -0.589 + -0.576 -0.610 -0.623 -0.666 -0.553 -0.518 -0.731 -0.715 -0.547 -0.662 + -0.958 -0.592 -0.806 -0.718 -0.534 -0.988 -0.596 -0.841 -0.463 -0.593 + -0.785 -0.972 -0.911 -0.842 -0.511 -0.948 -0.812 -0.908 -0.689 -0.638 + -0.201 -0.790 -0.839 -0.951 -0.857 -0.797 -1.019 -0.601 -0.815 -0.577 + -0.636 -0.750 -0.820 -0.357 -0.383 -0.547 -0.868 -0.790 -0.650 -1.001 + -0.584 -0.697 -0.789 -0.961 -0.950 -0.955 -0.517 -0.528 -0.414 -0.784 + -0.774 -0.819 -0.808 -0.681 -0.789 -0.854 -0.781 -0.550 -0.716 -0.949 + + 439 iasi616_metop-a 1658 -0.116617E-01 + -0.472 -0.380 -0.704 -0.532 -0.504 -0.543 -0.674 -0.675 -0.456 -0.570 + -0.709 -0.613 -0.625 -0.736 -0.702 -0.717 -0.492 -0.727 -0.836 -0.717 + -0.596 -0.638 -0.643 -0.769 -0.706 -0.714 -0.913 -0.889 -0.796 -0.777 + -0.963 -0.505 -0.644 -0.697 -0.403 -0.843 -0.448 -0.822 -0.405 -0.616 + -0.694 -0.891 -0.767 -0.779 -0.527 -0.853 -0.786 -0.956 -0.602 -0.567 + -0.151 -0.706 -0.734 -0.769 -0.855 -0.756 -0.948 -0.530 -0.722 -0.551 + -0.572 -0.755 -0.759 -0.240 -0.286 -0.625 -0.696 -0.759 -0.516 -0.975 + -0.420 -0.691 -0.657 -0.866 -0.750 -1.015 -0.514 -0.326 -0.304 -0.781 + -0.709 -0.686 -0.725 -0.730 -0.609 -0.803 -0.642 -0.452 -0.570 -0.826 + + 440 iasi616_metop-a 1659 -0.125767E-01 + -0.484 -0.442 -0.744 -0.606 -0.468 -0.536 -0.724 -0.725 -0.447 -0.541 + -0.689 -0.571 -0.567 -0.713 -0.629 -0.612 -0.436 -0.656 -0.892 -0.642 + -0.529 -0.595 -0.546 -0.662 -0.628 -0.616 -0.749 -0.719 -0.554 -0.678 + -0.963 -0.624 -0.697 -0.747 -0.377 -0.869 -0.540 -0.782 -0.451 -0.646 + -0.700 -0.918 -0.761 -0.845 -0.562 -0.874 -0.819 -0.937 -0.654 -0.525 + -0.150 -0.732 -0.744 -0.794 -0.763 -0.804 -0.963 -0.574 -0.751 -0.591 + -0.590 -0.712 -0.785 -0.338 -0.392 -0.637 -0.760 -0.820 -0.570 -0.972 + -0.487 -0.710 -0.764 -0.922 -0.887 -0.977 -0.536 -0.337 -0.325 -0.804 + -0.785 -0.749 -0.770 -0.741 -0.662 -0.737 -0.676 -0.486 -0.555 -0.844 + + 441 iasi616_metop-a 1666 -0.121015E-01 + -0.418 -0.444 -0.683 -0.555 -0.520 -0.512 -0.768 -0.678 -0.409 -0.548 + -0.699 -0.651 -0.648 -0.714 -0.683 -0.661 -0.471 -0.718 -0.948 -0.685 + -0.670 -0.630 -0.606 -0.731 -0.724 -0.725 -0.860 -0.893 -0.656 -0.825 + -0.847 -0.546 -0.771 -0.701 -0.440 -1.018 -0.663 -0.816 -0.509 -0.702 + -0.812 -0.961 -0.661 -0.671 -0.458 -0.954 -0.846 -0.844 -0.609 -0.581 + -0.154 -0.821 -0.798 -0.872 -0.871 -0.772 -1.110 -0.589 -0.857 -0.631 + -0.640 -0.757 -0.867 -0.408 -0.405 -0.558 -0.836 -0.825 -0.705 -1.066 + -0.556 -0.767 -0.792 -1.026 -1.022 -1.142 -0.582 -0.354 -0.338 -0.771 + -0.854 -0.761 -0.717 -0.760 -0.877 -0.806 -0.712 -0.618 -0.622 -0.898 + + 442 iasi616_metop-a 1671 -0.113158E-01 + -0.587 -0.527 -0.836 -0.693 -0.589 -0.622 -0.801 -0.661 -0.445 -0.573 + -0.758 -0.600 -0.548 -0.674 -0.696 -0.702 -0.408 -0.672 -0.854 -0.599 + -0.556 -0.565 -0.532 -0.694 -0.557 -0.640 -0.776 -0.779 -0.531 -0.631 + -0.688 -0.456 -0.523 -0.560 -0.299 -0.695 -0.395 -0.423 -0.320 -0.424 + -0.594 -0.792 -0.502 -0.541 -0.270 -0.657 -0.695 -0.797 -0.385 -0.403 + -0.009 -0.497 -0.665 -0.590 -0.616 -0.415 -0.805 -0.372 -0.615 -0.420 + -0.342 -0.485 -0.567 -0.028 -0.152 -0.495 -0.517 -0.623 -0.480 -0.813 + -0.289 -0.473 -0.427 -0.940 -0.560 -0.790 -0.351 -0.155 -0.179 -0.565 + -0.578 -0.611 -0.790 -0.470 -0.498 -0.479 -0.515 -0.176 -0.528 -0.701 + + 443 iasi616_metop-a 1675 -0.109677E-01 + -0.617 -0.470 -0.876 -0.802 -0.631 -0.659 -0.885 -0.662 -0.542 -0.656 + -0.696 -0.749 -0.712 -0.760 -0.857 -0.752 -0.497 -0.734 -0.995 -0.763 + -0.642 -0.647 -0.761 -0.821 -0.753 -0.774 -0.936 -0.999 -0.758 -0.831 + -1.068 -0.797 -0.886 -0.906 -0.589 -1.120 -0.809 -0.974 -0.733 -0.852 + -0.913 -1.068 -0.729 -0.940 -0.482 -0.930 -0.908 -0.980 -0.876 -0.675 + -0.426 -0.963 -0.853 -1.131 -0.967 -0.950 -1.287 -0.747 -1.015 -0.769 + -0.784 -0.920 -1.003 -0.489 -0.563 -0.655 -1.024 -0.924 -0.877 -1.207 + -0.726 -0.813 -0.891 -1.192 -1.098 -1.145 -0.765 -0.398 -0.502 -0.922 + -0.867 -0.953 -0.996 -0.868 -0.989 -0.726 -0.938 -0.735 -0.782 -1.036 + + 444 iasi616_metop-a 1681 -0.319533E-02 + -0.726 -0.628 -1.031 -0.814 -0.747 -0.782 -0.973 -0.762 -0.741 -0.816 + -0.859 -0.825 -0.806 -0.907 -0.897 -0.904 -0.552 -0.878 -0.965 -0.908 + -0.853 -0.664 -0.854 -0.930 -0.813 -0.905 -1.040 -1.151 -0.935 -0.976 + -0.735 -0.406 -0.675 -0.717 -0.315 -0.887 -0.605 -0.691 -0.541 -0.608 + -0.779 -0.730 -0.740 -0.600 -0.270 -0.798 -0.821 -0.810 -0.551 -0.483 + -0.259 -0.707 -0.732 -0.851 -0.635 -0.679 -1.086 -0.644 -0.633 -0.541 + -0.621 -0.544 -0.934 -0.208 -0.519 -0.518 -0.668 -0.885 -0.700 -1.144 + -0.453 -0.585 -0.673 -1.035 -0.707 -1.301 -0.720 -0.320 -0.227 -0.556 + -0.501 -0.859 -0.867 -0.661 -0.954 -0.838 -0.803 -0.559 -0.529 -0.888 + + 445 iasi616_metop-a 1694 0.965891E-03 + -0.713 -0.636 -1.007 -0.859 -0.664 -0.840 -1.039 -0.689 -0.657 -0.844 + -0.983 -0.732 -0.833 -0.825 -0.772 -0.850 -0.564 -0.834 -0.892 -0.751 + -0.768 -0.666 -0.733 -0.839 -0.856 -0.693 -0.949 -1.075 -0.811 -0.901 + -0.864 -0.396 -0.950 -0.937 -0.481 -0.961 -0.743 -0.659 -0.656 -0.758 + -0.799 -0.743 -0.923 -0.668 -0.490 -0.925 -0.927 -0.992 -0.796 -0.603 + -0.454 -0.759 -0.699 -1.037 -0.783 -0.900 -1.231 -0.676 -0.808 -0.781 + -0.800 -0.608 -1.064 -0.429 -0.839 -0.654 -0.718 -0.638 -0.756 -1.091 + -0.478 -0.557 -0.792 -1.270 -0.726 -1.481 -0.871 -0.244 -0.347 -0.534 + -0.543 -0.977 -0.873 -0.771 -0.788 -0.703 -0.927 -0.444 -0.622 -0.947 + + 446 iasi616_metop-a 1697 0.543372E-02 + -0.741 -0.513 -1.069 -0.784 -0.616 -0.870 -0.932 -0.617 -0.637 -0.917 + -0.917 -0.755 -0.801 -0.798 -0.732 -0.883 -0.561 -0.841 -0.923 -0.715 + -0.891 -0.735 -0.801 -1.031 -0.910 -0.806 -1.047 -1.226 -0.913 -1.015 + -0.858 -0.443 -0.791 -0.917 -0.510 -0.866 -0.777 -0.740 -0.520 -0.715 + -0.721 -0.767 -0.806 -0.671 -0.356 -0.814 -0.901 -0.972 -0.726 -0.538 + -0.417 -0.781 -0.699 -1.034 -0.795 -0.935 -1.263 -0.653 -0.709 -0.585 + -0.779 -0.602 -1.031 -0.262 -0.647 -0.571 -0.765 -0.967 -0.640 -1.042 + -0.391 -0.646 -0.707 -1.137 -0.801 -1.344 -0.786 -0.277 -0.420 -0.403 + -0.546 -0.862 -0.968 -0.617 -0.799 -0.590 -0.864 -0.489 -0.550 -0.823 + + 447 iasi616_metop-a 1710 0.804519E-02 + -0.889 -0.661 -1.132 -0.855 -0.728 -0.876 -1.062 -0.721 -0.749 -0.885 + -0.960 -0.825 -0.864 -0.802 -0.786 -0.893 -0.613 -0.904 -0.847 -0.745 + -0.823 -0.698 -0.772 -0.944 -0.887 -0.835 -0.982 -1.122 -0.988 -0.899 + -0.841 -0.573 -0.927 -1.073 -0.684 -1.130 -0.934 -0.674 -0.715 -0.831 + -0.838 -0.847 -0.889 -0.897 -0.565 -0.940 -0.996 -0.938 -0.888 -0.718 + -0.647 -0.736 -0.782 -1.158 -0.853 -0.869 -1.330 -0.762 -0.698 -0.786 + -0.879 -0.709 -1.191 -0.464 -0.816 -0.707 -0.906 -0.722 -0.794 -1.214 + -0.681 -0.691 -0.904 -1.250 -0.831 -1.494 -0.805 -0.365 -0.421 -0.541 + -0.664 -1.081 -0.986 -0.841 -0.840 -0.777 -0.997 -0.546 -0.639 -1.115 + + 448 iasi616_metop-a 1786 0.217974E-01 + -0.933 -0.914 -1.209 -1.018 -0.862 -0.935 -1.002 -0.839 -0.697 -0.920 + -1.108 -0.899 -0.998 -0.988 -0.745 -1.005 -0.708 -0.831 -1.140 -0.859 + -0.897 -0.912 -0.889 -1.089 -0.974 -0.912 -1.130 -1.378 -1.028 -1.031 + -0.893 -0.846 -0.926 -1.074 -0.852 -1.206 -0.998 -0.983 -0.814 -0.830 + -0.923 -1.244 -1.209 -0.607 -0.761 -0.904 -1.079 -1.359 -1.206 -0.738 + -0.760 -0.875 -1.149 -1.261 -1.124 -0.853 -1.302 -1.013 -0.887 -1.032 + -0.862 -0.883 -1.149 -0.539 -0.787 -0.926 -0.868 -1.127 -0.996 -1.387 + -0.673 -0.749 -0.908 -1.356 -1.055 -1.214 -0.930 -0.731 -0.492 -1.048 + -0.895 -1.119 -1.107 -0.848 -1.054 -0.598 -0.961 -0.543 -0.746 -1.115 + + 449 iasi616_metop-a 1791 0.404243E-02 + -1.256 -1.114 -1.327 -1.424 -0.985 -1.174 -1.282 -0.963 -1.013 -1.155 + -1.103 -1.104 -1.093 -1.178 -1.300 -0.999 -0.880 -1.040 -1.200 -0.873 + -1.120 -1.009 -1.152 -1.125 -1.175 -1.037 -1.274 -1.356 -1.116 -1.121 + -1.329 -0.889 -1.313 -1.393 -0.943 -1.197 -1.260 -1.018 -1.102 -1.092 + -1.212 -1.116 -1.214 -1.201 -0.743 -1.291 -1.414 -1.406 -1.283 -1.019 + -0.956 -1.144 -1.150 -1.386 -1.258 -1.138 -1.638 -0.968 -1.157 -1.054 + -1.343 -0.973 -1.507 -0.891 -1.215 -0.965 -1.151 -0.957 -1.096 -1.689 + -1.083 -0.964 -1.313 -1.586 -1.145 -1.764 -1.170 -0.599 -0.857 -0.960 + -0.872 -1.501 -1.233 -1.049 -1.169 -1.196 -1.326 -0.824 -1.057 -1.353 + + 450 iasi616_metop-a 1805 0.374106E-02 + -1.460 -1.355 -1.772 -1.629 -1.306 -1.577 -1.659 -1.345 -1.228 -1.453 + -1.495 -1.370 -1.389 -1.402 -1.368 -1.407 -1.177 -1.478 -1.437 -1.284 + -1.486 -1.303 -1.429 -1.669 -1.552 -1.408 -1.737 -1.882 -1.598 -1.635 + -1.338 -1.049 -1.419 -1.441 -0.990 -1.443 -1.410 -1.071 -1.269 -1.345 + -1.350 -1.204 -1.310 -1.106 -0.878 -1.373 -1.400 -1.467 -1.439 -1.107 + -1.014 -1.181 -1.168 -1.479 -1.364 -1.133 -1.699 -1.071 -1.210 -1.118 + -1.374 -1.074 -1.561 -0.966 -1.163 -1.119 -1.241 -1.092 -1.215 -1.793 + -1.079 -1.041 -1.444 -1.763 -1.223 -1.847 -1.262 -0.760 -0.912 -0.880 + -0.985 -1.568 -1.243 -1.147 -1.291 -1.369 -1.433 -0.972 -1.200 -1.540 + + 451 iasi616_metop-a 1839 0.418872E-02 + -1.598 -1.534 -1.871 -1.751 -1.389 -1.688 -1.778 -1.475 -1.394 -1.626 + -1.627 -1.548 -1.507 -1.528 -1.501 -1.540 -1.342 -1.640 -1.600 -1.540 + -1.629 -1.493 -1.625 -1.829 -1.698 -1.554 -1.850 -2.045 -1.772 -1.834 + -1.562 -1.247 -1.503 -1.619 -1.163 -1.437 -1.440 -1.255 -1.249 -1.428 + -1.413 -1.318 -1.553 -1.293 -0.957 -1.464 -1.572 -1.605 -1.460 -1.283 + -1.143 -1.315 -1.363 -1.594 -1.481 -1.301 -1.781 -1.213 -1.389 -1.305 + -1.522 -1.199 -1.672 -1.059 -1.473 -1.225 -1.345 -1.106 -1.275 -1.830 + -1.251 -1.086 -1.601 -1.796 -1.432 -1.906 -1.381 -0.879 -1.042 -1.078 + -1.079 -1.637 -1.417 -1.365 -1.329 -1.494 -1.544 -1.123 -1.301 -1.701 + + 452 iasi616_metop-a 1884 0.384145E-02 + -1.539 -1.446 -1.843 -1.681 -1.403 -1.696 -1.721 -1.431 -1.270 -1.613 + -1.592 -1.491 -1.542 -1.503 -1.510 -1.596 -1.366 -1.659 -1.626 -1.558 + -1.702 -1.534 -1.684 -1.878 -1.771 -1.626 -1.968 -2.167 -1.849 -1.915 + -1.347 -0.962 -1.422 -1.497 -1.031 -1.407 -1.457 -1.064 -1.181 -1.259 + -1.350 -1.202 -1.428 -1.256 -0.846 -1.307 -1.360 -1.411 -1.356 -1.090 + -1.085 -1.136 -1.111 -1.487 -1.342 -1.139 -1.724 -1.026 -1.233 -1.058 + -1.437 -1.172 -1.549 -0.940 -1.291 -1.102 -1.267 -0.936 -0.998 -1.722 + -1.096 -0.945 -1.364 -1.603 -1.226 -1.885 -1.201 -0.842 -0.931 -0.870 + -1.015 -1.485 -1.266 -1.101 -1.312 -1.294 -1.415 -0.933 -1.145 -1.487 + + 453 iasi616_metop-a 1913 0.441443E-02 + -1.354 -1.134 -1.606 -1.469 -1.226 -1.446 -1.513 -1.240 -1.136 -1.442 + -1.477 -1.318 -1.292 -1.329 -1.347 -1.414 -1.143 -1.424 -1.465 -1.346 + -1.568 -1.355 -1.460 -1.653 -1.559 -1.441 -1.735 -1.991 -1.649 -1.702 + -1.191 -0.804 -1.247 -1.299 -0.865 -1.358 -1.340 -0.936 -1.091 -1.182 + -1.096 -0.908 -1.237 -1.119 -0.725 -1.185 -1.278 -1.230 -1.168 -0.914 + -0.918 -1.019 -0.940 -1.347 -1.210 -1.065 -1.517 -0.893 -1.120 -0.912 + -1.120 -0.914 -1.403 -0.751 -1.104 -0.882 -1.130 -0.832 -0.979 -1.607 + -0.889 -0.850 -1.182 -1.446 -1.054 -1.792 -1.028 -0.622 -0.749 -0.754 + -0.740 -1.361 -1.098 -0.979 -1.091 -1.167 -1.252 -0.747 -0.948 -1.251 + + 454 iasi616_metop-a 1946 0.290590E-02 + -1.114 -0.889 -1.323 -1.184 -1.000 -1.219 -1.324 -1.031 -0.878 -1.156 + -1.233 -1.019 -1.121 -1.052 -1.147 -1.138 -0.927 -1.216 -1.207 -1.108 + -1.300 -1.109 -1.192 -1.374 -1.319 -1.209 -1.439 -1.632 -1.359 -1.395 + -1.048 -0.493 -1.033 -1.174 -0.667 -0.980 -1.096 -0.802 -1.003 -0.836 + -0.964 -0.791 -0.963 -0.889 -0.548 -0.971 -1.096 -1.122 -0.963 -0.770 + -0.808 -0.779 -0.912 -1.183 -0.984 -0.824 -1.327 -0.726 -0.870 -0.904 + -1.007 -0.678 -1.212 -0.543 -1.007 -0.900 -0.949 -0.610 -0.821 -1.328 + -0.676 -0.610 -1.033 -1.350 -0.913 -1.604 -0.850 -0.377 -0.507 -0.720 + -0.775 -1.118 -0.993 -0.885 -0.845 -0.982 -1.044 -0.581 -0.754 -1.147 + + 455 iasi616_metop-a 1947 0.351741E-02 + -1.131 -0.877 -1.259 -1.088 -0.885 -1.093 -1.202 -0.839 -0.766 -1.073 + -1.078 -0.949 -0.994 -0.952 -0.958 -1.019 -0.793 -1.135 -1.028 -0.931 + -1.113 -0.956 -0.959 -1.229 -1.088 -1.032 -1.172 -1.404 -1.140 -1.137 + -1.047 -0.502 -0.947 -1.143 -0.588 -0.979 -1.101 -0.799 -0.890 -0.830 + -0.945 -0.814 -1.052 -0.797 -0.533 -0.933 -1.185 -1.060 -0.980 -0.733 + -0.773 -0.807 -0.910 -1.198 -0.996 -0.867 -1.373 -0.792 -0.884 -0.763 + -1.001 -0.638 -1.241 -0.569 -0.966 -0.955 -0.910 -0.621 -0.759 -1.336 + -0.682 -0.513 -1.032 -1.368 -0.905 -1.601 -0.821 -0.230 -0.537 -0.749 + -0.744 -1.116 -1.008 -0.757 -0.853 -1.003 -1.050 -0.577 -0.760 -1.157 + + 456 iasi616_metop-a 1991 0.481867E-02 + -1.083 -1.007 -1.260 -1.124 -0.899 -1.201 -1.235 -0.891 -0.801 -1.145 + -1.129 -0.973 -1.006 -1.005 -0.996 -1.035 -0.825 -1.167 -1.053 -0.917 + -1.140 -0.946 -0.968 -1.211 -1.096 -1.021 -1.219 -1.425 -1.175 -1.158 + -0.968 -0.561 -1.052 -1.172 -0.662 -1.152 -1.202 -0.796 -1.054 -0.885 + -1.024 -0.825 -1.080 -0.963 -0.575 -1.232 -1.125 -1.095 -1.007 -0.842 + -0.813 -0.854 -0.807 -1.193 -1.059 -0.835 -1.289 -0.841 -0.837 -0.807 + -1.027 -0.832 -1.164 -0.631 -0.965 -0.665 -0.998 -0.640 -0.832 -1.328 + -0.728 -0.605 -1.039 -1.286 -1.008 -1.579 -0.799 -0.343 -0.597 -0.608 + -0.746 -1.182 -0.970 -0.828 -0.951 -1.009 -1.058 -0.569 -0.804 -1.108 + + 457 iasi616_metop-a 2019 0.309099E-01 + -0.860 -0.797 -0.987 -0.945 -0.674 -0.863 -0.919 -0.835 -0.722 -0.994 + -1.097 -0.915 -0.917 -0.865 -0.823 -0.974 -0.902 -0.879 -1.015 -0.897 + -0.987 -0.950 -0.892 -1.075 -0.999 -1.044 -1.236 -1.360 -1.074 -1.097 + -1.021 -0.750 -0.923 -0.948 -0.796 -1.069 -0.897 -1.036 -0.851 -0.695 + -0.890 -1.047 -1.207 -0.587 -0.782 -0.639 -0.956 -1.118 -1.027 -0.757 + -0.900 -0.972 -1.082 -1.132 -1.021 -0.566 -1.178 -0.861 -0.950 -0.923 + -0.844 -0.859 -1.090 -0.533 -0.733 -0.955 -0.856 -0.947 -0.841 -1.349 + -0.490 -0.850 -0.837 -1.079 -0.877 -1.385 -0.753 -0.790 -0.587 -0.804 + -0.970 -0.804 -1.124 -0.753 -0.917 -0.509 -0.712 -0.433 -0.822 -1.027 + + 458 iasi616_metop-a 2094 0.504216E-02 + -1.215 -1.056 -1.465 -1.325 -0.870 -1.035 -1.181 -0.975 -0.796 -1.071 + -1.088 -1.039 -0.944 -1.157 -1.194 -0.823 -0.806 -0.991 -1.073 -0.819 + -0.950 -0.903 -0.943 -0.996 -0.959 -0.951 -1.203 -1.169 -0.893 -0.931 + -1.271 -0.804 -1.221 -1.289 -0.872 -1.232 -1.221 -0.922 -1.216 -1.019 + -1.120 -0.993 -1.218 -1.030 -0.748 -1.134 -1.229 -1.090 -1.093 -0.920 + -0.954 -0.923 -1.035 -1.346 -1.142 -1.092 -1.480 -1.048 -1.044 -0.988 + -1.023 -0.891 -1.320 -0.737 -1.078 -0.922 -1.134 -0.902 -0.935 -1.494 + -0.870 -0.784 -1.143 -1.699 -1.093 -1.702 -0.922 -0.543 -0.669 -0.818 + -0.784 -1.255 -1.118 -0.864 -1.138 -1.166 -1.179 -0.723 -0.916 -1.296 + + 459 iasi616_metop-a 2119 0.566350E-01 + -0.373 -0.662 -0.565 -0.491 -0.385 -0.590 -0.569 -0.459 -0.447 -0.896 + -0.757 -0.645 -0.704 -0.569 -0.744 -0.796 -0.585 -0.829 -0.761 -0.947 + -1.052 -0.852 -0.794 -0.977 -0.987 -0.983 -1.308 -1.449 -1.222 -1.109 + -0.400 -0.539 -0.682 -0.522 -0.386 -0.336 -0.679 -0.682 -0.467 -0.466 + -0.359 -0.573 -0.616 -0.305 -0.477 -0.285 -0.385 -0.702 -0.622 -0.513 + -0.488 -0.332 -0.748 -0.582 -0.474 -0.232 -0.713 -0.463 -0.380 -0.522 + -0.508 -0.468 -0.705 -0.350 -0.315 -0.719 -0.490 -0.743 -0.473 -0.866 + -0.463 -0.458 -0.617 -0.515 -0.535 -0.672 -0.394 -0.653 -0.445 -0.445 + -0.440 -0.574 -0.442 -0.669 -0.425 -0.582 -0.417 -0.153 -0.647 -0.764 + + 460 iasi616_metop-a 2213 0.425889E-01 + -0.408 -0.416 -0.613 -0.610 -0.243 -0.343 -0.424 -0.397 -0.288 -0.641 + -0.715 -0.567 -0.379 -0.437 -0.514 -0.325 -0.410 -0.477 -0.344 -0.275 + -0.499 -0.470 -0.408 -0.394 -0.411 -0.284 -0.502 -0.501 -0.361 -0.369 + -0.746 -0.643 -0.551 -0.723 -0.676 -0.784 -0.511 -0.762 -0.723 -0.579 + -0.476 -0.796 -0.967 -0.412 -0.471 -0.575 -0.588 -0.833 -0.851 -0.554 + -0.763 -0.649 -0.781 -0.856 -0.705 -0.404 -0.907 -0.618 -0.738 -0.647 + -0.717 -0.537 -0.883 -0.491 -0.421 -0.818 -0.646 -0.915 -0.512 -1.202 + -0.478 -0.664 -0.733 -0.734 -0.859 -0.874 -0.531 -0.629 -0.468 -0.760 + -0.744 -0.649 -0.777 -0.879 -0.649 -0.485 -0.530 -0.193 -0.679 -0.822 + + 461 iasi616_metop-a 2239 0.593993E-02 + -0.926 -0.640 -1.048 -1.036 -0.552 -0.745 -0.789 -0.749 -0.550 -0.784 + -0.812 -0.712 -0.717 -0.812 -0.838 -0.550 -0.579 -0.762 -0.624 -0.506 + -0.764 -0.713 -0.612 -0.736 -0.692 -0.503 -0.732 -0.763 -0.650 -0.620 + -1.037 -0.606 -1.067 -1.103 -0.602 -1.040 -1.179 -0.768 -1.052 -0.877 + -0.919 -0.871 -1.044 -0.921 -0.456 -1.073 -1.086 -1.006 -1.039 -0.767 + -0.718 -0.856 -0.824 -1.167 -1.005 -0.775 -1.324 -0.794 -0.926 -0.797 + -1.052 -0.754 -1.227 -0.585 -0.828 -0.709 -1.069 -0.644 -0.903 -1.326 + -0.750 -0.609 -0.969 -1.401 -0.955 -1.615 -0.676 -0.398 -0.505 -0.663 + -0.673 -1.140 -0.963 -0.717 -0.885 -0.954 -1.012 -0.641 -0.747 -1.047 + + 462 iasi616_metop-a 2271 0.444350E-01 + -0.610 -0.671 -0.729 -0.698 -0.501 -0.724 -0.616 -0.576 -0.563 -0.905 + -0.831 -0.730 -0.814 -0.662 -0.788 -0.765 -0.760 -0.783 -0.770 -0.887 + -0.890 -0.859 -0.800 -0.926 -0.881 -0.985 -1.258 -1.356 -1.038 -1.016 + -0.797 -0.791 -0.672 -0.767 -0.763 -0.825 -0.574 -0.814 -0.820 -0.655 + -0.598 -0.837 -0.946 -0.460 -0.638 -0.635 -0.695 -0.954 -0.875 -0.709 + -0.810 -0.755 -0.848 -0.888 -0.705 -0.508 -1.058 -0.730 -0.752 -0.730 + -0.818 -0.653 -0.908 -0.628 -0.635 -0.918 -0.607 -0.964 -0.642 -1.201 + -0.583 -0.745 -0.822 -0.844 -0.860 -0.936 -0.657 -0.729 -0.512 -0.930 + -0.908 -0.713 -0.808 -0.867 -0.741 -0.553 -0.554 -0.316 -0.747 -0.872 + + 463 iasi616_metop-a 2289 0.101367E-01 + -0.866 -0.639 -1.071 -0.921 -0.526 -0.797 -0.882 -0.752 -0.606 -0.835 + -1.000 -0.783 -0.710 -0.834 -0.829 -0.702 -0.610 -0.814 -0.711 -0.597 + -0.793 -0.731 -0.710 -0.828 -0.729 -0.610 -0.816 -0.850 -0.657 -0.663 + -0.979 -0.617 -1.021 -1.134 -0.692 -1.200 -1.107 -0.814 -0.909 -0.771 + -1.005 -0.974 -0.939 -0.947 -0.484 -1.088 -1.091 -1.192 -0.944 -0.754 + -0.741 -0.888 -0.835 -1.110 -1.011 -0.845 -1.324 -0.897 -0.843 -0.859 + -0.930 -0.814 -1.283 -0.485 -0.991 -0.796 -0.933 -0.749 -0.906 -1.314 + -0.712 -0.782 -0.980 -1.333 -0.946 -1.529 -0.686 -0.506 -0.481 -0.669 + -0.628 -1.146 -1.009 -0.728 -1.045 -0.879 -1.037 -0.579 -0.619 -1.103 + + 464 iasi616_metop-a 2321 0.582987E-01 + -0.345 -0.652 -0.571 -0.522 -0.375 -0.592 -0.553 -0.479 -0.334 -0.770 + -0.645 -0.599 -0.655 -0.471 -0.652 -0.594 -0.534 -0.665 -0.635 -0.811 + -0.748 -0.714 -0.650 -0.737 -0.790 -0.758 -1.010 -1.138 -0.905 -0.828 + -0.429 -0.581 -0.703 -0.534 -0.354 -0.405 -0.748 -0.655 -0.498 -0.550 + -0.420 -0.584 -0.664 -0.410 -0.564 -0.302 -0.383 -0.706 -0.726 -0.459 + -0.496 -0.327 -0.769 -0.520 -0.452 -0.276 -0.787 -0.473 -0.364 -0.596 + -0.548 -0.450 -0.704 -0.455 -0.359 -0.724 -0.580 -0.835 -0.492 -0.850 + -0.573 -0.489 -0.670 -0.456 -0.568 -0.706 -0.477 -0.578 -0.487 -0.447 + -0.580 -0.601 -0.433 -0.704 -0.455 -0.515 -0.418 -0.274 -0.686 -0.718 + + 465 iasi616_metop-a 2333 0.893918E-02 + -0.756 -0.565 -0.927 -0.903 -0.418 -0.678 -0.773 -0.515 -0.509 -0.792 + -0.903 -0.654 -0.554 -0.620 -0.703 -0.418 -0.457 -0.718 -0.553 -0.306 + -0.646 -0.548 -0.516 -0.506 -0.528 -0.329 -0.596 -0.572 -0.473 -0.490 + -0.975 -0.617 -1.078 -1.086 -0.707 -1.132 -1.054 -0.777 -0.976 -0.831 + -0.944 -0.914 -0.882 -0.911 -0.413 -1.136 -1.087 -1.049 -0.898 -0.698 + -0.687 -0.845 -0.754 -1.127 -0.979 -0.873 -1.296 -0.908 -0.796 -0.771 + -0.905 -0.753 -1.213 -0.537 -0.952 -0.621 -0.966 -0.767 -0.800 -1.314 + -0.647 -0.741 -0.947 -1.380 -0.996 -1.534 -0.663 -0.437 -0.501 -0.538 + -0.611 -1.060 -1.016 -0.603 -1.064 -0.815 -0.947 -0.580 -0.646 -1.097 + + 466 iasi616_metop-a 2346 0.698433E-02 + -1.031 -0.891 -1.166 -1.061 -0.850 -0.995 -1.096 -0.850 -0.825 -1.088 + -1.161 -0.811 -0.994 -0.976 -1.034 -0.997 -0.729 -0.964 -0.995 -0.911 + -1.053 -0.881 -0.965 -1.113 -1.010 -0.900 -1.185 -1.389 -1.088 -1.083 + -1.048 -0.605 -1.063 -1.078 -0.651 -1.008 -1.110 -0.825 -0.884 -0.858 + -0.928 -0.805 -0.867 -0.842 -0.482 -1.156 -1.103 -0.939 -1.000 -0.736 + -0.768 -0.837 -0.845 -1.129 -1.056 -0.806 -1.405 -0.823 -0.858 -0.635 + -0.864 -0.724 -1.187 -0.596 -0.861 -0.619 -1.071 -0.699 -0.831 -1.290 + -0.684 -0.543 -0.991 -1.324 -0.952 -1.522 -0.637 -0.390 -0.542 -0.564 + -0.754 -1.030 -0.981 -0.595 -1.007 -0.861 -0.924 -0.567 -0.790 -1.090 + + 467 iasi616_metop-a 2349 0.725666E-02 + -1.018 -0.885 -1.187 -1.105 -0.883 -1.062 -1.105 -0.901 -0.864 -1.120 + -1.152 -0.908 -1.019 -0.995 -1.024 -1.053 -0.753 -0.958 -0.983 -0.963 + -1.095 -0.895 -0.998 -1.129 -1.019 -0.965 -1.207 -1.410 -1.090 -1.090 + -1.044 -0.611 -1.070 -1.066 -0.644 -1.003 -1.035 -0.830 -0.946 -0.864 + -0.934 -0.802 -0.920 -0.840 -0.486 -1.152 -1.170 -0.940 -1.047 -0.729 + -0.758 -0.838 -0.845 -1.026 -1.097 -0.780 -1.412 -0.817 -0.854 -0.644 + -0.848 -0.723 -1.191 -0.604 -0.907 -0.606 -1.059 -0.689 -0.819 -1.283 + -0.684 -0.537 -0.990 -1.309 -0.935 -1.595 -0.628 -0.384 -0.529 -0.564 + -0.751 -1.029 -0.968 -0.637 -0.993 -0.872 -0.909 -0.598 -0.757 -1.075 + + 468 iasi616_metop-a 2352 0.107955E-01 + -0.851 -0.686 -1.205 -0.867 -0.799 -0.960 -0.971 -0.804 -0.822 -1.044 + -1.073 -0.814 -0.979 -0.870 -0.889 -0.972 -0.667 -0.900 -0.973 -0.878 + -1.006 -0.807 -0.951 -1.102 -0.979 -0.953 -1.169 -1.379 -1.051 -1.062 + -0.805 -0.467 -0.853 -0.876 -0.457 -0.990 -0.904 -0.651 -0.861 -0.647 + -0.897 -0.874 -0.788 -0.717 -0.349 -1.002 -0.935 -0.947 -0.752 -0.556 + -0.560 -0.684 -0.751 -0.814 -0.995 -0.676 -1.289 -0.770 -0.657 -0.611 + -0.774 -0.601 -1.095 -0.349 -0.788 -0.497 -0.849 -0.755 -0.748 -1.195 + -0.614 -0.518 -0.852 -1.111 -0.776 -1.400 -0.582 -0.301 -0.338 -0.445 + -0.617 -0.947 -0.925 -0.561 -0.881 -0.708 -0.809 -0.551 -0.516 -0.857 + + 469 iasi616_metop-a 2359 0.734176E-02 + -0.999 -0.834 -1.150 -1.079 -0.811 -0.965 -1.038 -0.755 -0.751 -1.025 + -1.049 -0.776 -0.952 -0.943 -0.937 -0.910 -0.604 -0.888 -0.924 -0.864 + -1.003 -0.787 -0.917 -1.006 -0.890 -0.772 -1.012 -1.290 -0.968 -0.954 + -1.043 -0.632 -1.149 -1.087 -0.648 -0.969 -1.113 -0.826 -0.993 -0.923 + -0.973 -0.894 -0.917 -0.846 -0.498 -1.202 -1.165 -0.932 -1.023 -0.732 + -0.737 -0.843 -0.842 -1.111 -1.158 -0.747 -1.403 -0.817 -0.934 -0.684 + -0.885 -0.726 -1.232 -0.590 -0.894 -0.596 -1.022 -0.704 -0.734 -1.298 + -0.773 -0.571 -1.022 -1.270 -0.888 -1.572 -0.609 -0.424 -0.564 -0.566 + -0.706 -1.010 -1.039 -0.671 -0.952 -0.898 -0.923 -0.748 -0.760 -1.054 + + 470 iasi616_metop-a 2367 0.253435E-01 + -0.798 -0.723 -1.139 -0.966 -0.800 -0.858 -0.956 -0.993 -0.794 -0.927 + -0.986 -0.914 -1.025 -0.887 -0.857 -1.026 -0.752 -0.883 -0.982 -0.949 + -0.979 -0.885 -0.935 -1.136 -1.031 -1.020 -1.163 -1.425 -1.005 -1.036 + -0.748 -0.852 -0.994 -0.861 -0.527 -1.115 -0.905 -0.741 -0.728 -0.738 + -0.958 -1.037 -0.896 -0.665 -0.608 -1.003 -1.095 -0.997 -0.849 -0.606 + -0.599 -0.888 -1.158 -0.982 -0.996 -0.763 -1.185 -0.886 -0.930 -0.718 + -0.826 -0.714 -1.085 -0.505 -0.657 -0.778 -0.687 -1.030 -0.797 -1.317 + -0.522 -0.732 -0.810 -1.167 -0.955 -1.188 -0.684 -0.590 -0.373 -0.858 + -0.873 -1.022 -1.055 -0.730 -0.842 -0.706 -0.796 -0.543 -0.501 -0.895 + + 471 iasi616_metop-a 2374 0.161332E-01 + -1.245 -0.994 -1.356 -1.231 -0.860 -1.126 -1.164 -0.958 -0.930 -1.125 + -1.142 -0.986 -0.944 -1.033 -1.225 -1.030 -0.804 -1.018 -1.091 -0.816 + -0.983 -0.835 -0.927 -1.016 -0.990 -0.949 -1.148 -1.205 -0.959 -1.100 + -1.258 -1.136 -1.277 -1.282 -0.869 -1.421 -1.227 -1.020 -1.221 -1.196 + -1.226 -1.074 -1.208 -1.057 -0.695 -1.321 -1.251 -1.308 -1.109 -0.809 + -0.846 -1.185 -1.142 -1.353 -1.333 -1.035 -1.607 -1.173 -1.116 -0.946 + -1.047 -0.919 -1.430 -0.635 -1.020 -0.903 -0.928 -1.045 -0.964 -1.454 + -0.793 -0.967 -1.114 -1.346 -1.129 -1.716 -0.981 -0.688 -0.673 -0.788 + -0.997 -1.308 -1.240 -0.963 -1.208 -1.141 -1.113 -0.842 -0.825 -1.111 + + 472 iasi616_metop-a 2398 0.601865E-01 + -0.277 -0.567 -0.499 -0.429 -0.306 -0.525 -0.493 -0.482 -0.342 -0.751 + -0.636 -0.665 -0.686 -0.526 -0.706 -0.688 -0.581 -0.710 -0.710 -0.856 + -0.815 -0.839 -0.762 -0.757 -0.911 -0.919 -1.194 -1.275 -1.033 -1.006 + -0.270 -0.359 -0.471 -0.314 -0.147 -0.143 -0.533 -0.489 -0.309 -0.314 + -0.191 -0.298 -0.376 -0.225 -0.322 -0.080 -0.110 -0.491 -0.505 -0.216 + -0.266 -0.058 -0.538 -0.289 -0.233 -0.006 -0.575 -0.295 -0.095 -0.388 + -0.328 -0.175 -0.440 -0.207 -0.134 -0.475 -0.382 -0.615 -0.207 -0.618 + -0.323 -0.285 -0.499 -0.183 -0.289 -0.460 -0.283 -0.469 -0.224 -0.228 + -0.392 -0.311 -0.209 -0.491 -0.253 -0.400 -0.199 -0.067 -0.519 -0.584 + + 473 iasi616_metop-a 2426 0.287422E-01 + -0.425 -0.388 -0.672 -0.666 -0.238 -0.369 -0.535 -0.419 -0.294 -0.541 + -0.716 -0.535 -0.378 -0.418 -0.477 -0.309 -0.278 -0.431 -0.386 -0.193 + -0.471 -0.389 -0.319 -0.324 -0.322 -0.181 -0.442 -0.412 -0.232 -0.288 + -0.654 -0.686 -0.809 -0.705 -0.589 -0.838 -0.636 -0.891 -0.515 -0.659 + -0.687 -0.899 -1.055 -0.381 -0.623 -0.750 -0.876 -1.050 -0.695 -0.464 + -0.556 -0.783 -0.946 -0.960 -0.980 -0.398 -0.986 -0.726 -0.888 -0.735 + -0.592 -0.609 -0.877 -0.261 -0.338 -0.563 -0.521 -0.827 -0.555 -1.197 + -0.208 -0.440 -0.608 -0.830 -0.678 -0.944 -0.518 -0.517 -0.302 -0.793 + -0.727 -0.610 -0.819 -0.583 -0.565 -0.369 -0.490 -0.281 -0.470 -0.721 + + 474 iasi616_metop-a 2562 0.272923E-01 + -1.206 -1.056 -1.421 -1.313 -0.826 -0.966 -1.094 -1.136 -0.765 -0.986 + -1.109 -1.032 -0.935 -1.057 -1.116 -0.888 -0.785 -1.047 -1.046 -0.792 + -0.820 -0.902 -0.915 -0.952 -0.868 -0.866 -1.119 -1.118 -0.776 -0.868 + -1.106 -1.333 -1.422 -1.361 -1.084 -1.391 -1.313 -1.376 -1.246 -1.225 + -1.329 -1.459 -1.431 -1.003 -1.198 -1.463 -1.423 -1.574 -1.337 -1.109 + -1.124 -1.307 -1.622 -1.334 -1.424 -0.949 -1.748 -1.255 -1.291 -1.255 + -1.082 -1.278 -1.528 -0.928 -1.082 -1.192 -1.018 -1.229 -1.211 -1.663 + -0.896 -0.992 -1.346 -1.393 -1.208 -1.436 -1.014 -1.115 -0.812 -1.305 + -1.325 -1.281 -1.337 -1.136 -1.240 -0.993 -1.035 -0.769 -1.185 -1.346 + + 475 iasi616_metop-a 2701 0.772412E-01 + -0.803 -0.847 -0.821 -0.872 -0.766 -0.889 -0.871 -0.864 -0.764 -1.004 + -1.046 -0.976 -1.061 -0.962 -1.232 -1.045 -0.860 -1.106 -1.197 -1.166 + -1.278 -1.201 -1.252 -1.271 -1.257 -1.255 -1.633 -1.652 -1.373 -1.426 + -0.635 -0.886 -0.963 -0.755 -0.657 -0.584 -0.784 -1.122 -0.628 -0.913 + -0.725 -1.173 -0.877 -0.713 -0.708 -0.540 -0.608 -0.938 -0.781 -0.807 + -0.893 -0.525 -1.018 -0.706 -0.935 -0.469 -0.865 -0.797 -0.478 -1.043 + -0.717 -0.679 -0.694 -0.664 -0.611 -0.869 -0.825 -1.066 -0.759 -0.986 + -1.048 -0.815 -0.987 -0.767 -0.748 -0.971 -0.618 -0.890 -1.006 -0.539 + -0.719 -0.828 -0.681 -1.001 -0.715 -0.918 -0.540 -0.610 -0.938 -0.877 + + 476 iasi616_metop-a 2741 0.570449E-01 + -0.479 -0.537 -0.569 -0.604 -0.359 -0.560 -0.625 -0.495 -0.427 -0.805 + -0.742 -0.740 -0.477 -0.394 -0.662 -0.389 -0.484 -0.699 -0.601 -0.512 + -0.742 -0.575 -0.538 -0.587 -0.597 -0.510 -0.755 -0.677 -0.559 -0.643 + -0.425 -0.521 -0.680 -0.547 -0.397 -0.357 -0.644 -0.642 -0.550 -0.459 + -0.385 -0.575 -0.662 -0.324 -0.513 -0.259 -0.390 -0.699 -0.703 -0.490 + -0.466 -0.262 -0.648 -0.474 -0.396 -0.217 -0.769 -0.567 -0.383 -0.503 + -0.506 -0.265 -0.717 -0.420 -0.293 -0.764 -0.510 -0.762 -0.433 -0.796 + -0.503 -0.441 -0.608 -0.457 -0.508 -0.627 -0.501 -0.689 -0.559 -0.373 + -0.497 -0.646 -0.453 -0.745 -0.448 -0.585 -0.452 -0.261 -0.744 -0.724 + + 477 iasi616_metop-a 2745 0.285773E-01 + -0.569 -0.569 -0.672 -0.711 -0.366 -0.416 -0.616 -0.524 -0.409 -0.677 + -0.863 -0.660 -0.539 -0.544 -0.620 -0.487 -0.492 -0.659 -0.537 -0.351 + -0.642 -0.543 -0.516 -0.530 -0.522 -0.375 -0.599 -0.636 -0.475 -0.480 + -0.558 -0.764 -0.804 -0.738 -0.560 -0.906 -0.785 -0.942 -0.713 -0.657 + -0.693 -0.909 -0.905 -0.307 -0.738 -0.946 -0.932 -1.026 -0.732 -0.635 + -0.712 -0.811 -0.913 -1.009 -0.986 -0.331 -1.158 -0.613 -0.757 -0.795 + -0.594 -0.704 -1.086 -0.512 -0.558 -0.750 -0.532 -0.782 -0.657 -1.207 + -0.491 -0.565 -0.794 -0.747 -0.677 -1.000 -0.515 -0.569 -0.427 -0.779 + -0.807 -0.627 -0.837 -0.527 -0.834 -0.454 -0.532 -0.280 -0.653 -0.868 + + 478 iasi616_metop-a 2760 0.361165E-01 + -0.397 -0.467 -0.418 -0.542 -0.309 -0.369 -0.388 -0.425 -0.279 -0.471 + -0.648 -0.572 -0.433 -0.495 -0.659 -0.482 -0.447 -0.528 -0.639 -0.512 + -0.615 -0.603 -0.595 -0.528 -0.659 -0.675 -0.951 -0.959 -0.591 -0.701 + -0.456 -0.278 -0.355 -0.377 -0.309 -0.342 -0.119 -0.332 -0.461 -0.250 + -0.083 -0.396 -0.533 0.179 -0.138 -0.343 -0.365 -0.491 -0.400 -0.336 + -0.551 -0.347 -0.362 -0.547 -0.282 0.108 -0.787 -0.269 -0.364 -0.307 + -0.335 -0.190 -0.546 -0.197 -0.120 -0.497 -0.219 -0.477 -0.183 -0.724 + -0.075 -0.330 -0.372 -0.237 -0.384 -0.445 -0.117 -0.377 -0.063 -0.439 + -0.420 -0.108 -0.397 -0.436 -0.391 -0.069 -0.275 0.153 -0.383 -0.486 + + 479 iasi616_metop-a 2819 0.768197E-01 + -0.065 -0.129 -0.202 -0.175 -0.060 -0.144 -0.125 -0.188 -0.050 -0.270 + -0.386 -0.314 -0.209 -0.281 -0.404 -0.123 -0.237 -0.396 -0.263 -0.300 + -0.415 -0.447 -0.351 -0.438 -0.329 -0.367 -0.537 -0.591 -0.348 -0.380 + -0.233 -0.374 -0.525 -0.310 -0.196 -0.072 -0.257 -0.684 -0.249 -0.368 + -0.128 -0.784 -0.428 -0.254 -0.193 -0.069 -0.197 -0.454 -0.443 -0.256 + -0.464 -0.189 -0.531 -0.224 -0.451 -0.050 -0.424 -0.318 0.107 -0.485 + -0.248 -0.247 -0.213 -0.179 -0.100 -0.460 -0.341 -0.574 -0.334 -0.465 + -0.597 -0.214 -0.555 -0.285 -0.295 -0.470 -0.133 -0.452 -0.603 -0.139 + -0.209 -0.194 -0.188 -0.468 -0.254 -0.363 -0.035 -0.074 -0.451 -0.300 + + 480 iasi616_metop-a 2889 0.442835E-01 + -0.254 -0.286 -0.368 -0.380 -0.187 -0.276 -0.206 -0.180 -0.150 -0.499 + -0.386 -0.424 -0.194 -0.085 -0.350 -0.007 -0.106 -0.251 -0.159 -0.083 + -0.234 -0.163 -0.040 -0.011 -0.079 -0.001 -0.157 -0.095 -0.005 -0.099 + -0.556 -0.495 -0.534 -0.645 -0.462 -0.462 -0.680 -0.534 -0.644 -0.378 + -0.514 -0.615 -0.760 -0.124 -0.566 -0.313 -0.439 -0.686 -0.736 -0.462 + -0.641 -0.454 -0.542 -0.545 -0.352 -0.291 -0.784 -0.411 -0.356 -0.592 + -0.598 -0.354 -0.650 -0.414 -0.228 -0.730 -0.513 -0.777 -0.433 -0.888 + -0.543 -0.466 -0.612 -0.494 -0.569 -0.753 -0.540 -0.630 -0.408 -0.614 + -0.561 -0.646 -0.473 -0.694 -0.535 -0.518 -0.485 -0.089 -0.767 -0.736 + + 481 iasi616_metop-a 2907 0.531285E-01 + 0.096 -0.160 -0.055 -0.036 0.076 -0.096 -0.153 -0.071 -0.043 -0.379 + -0.291 -0.278 -0.149 -0.197 -0.366 -0.207 -0.219 -0.321 -0.149 -0.173 + -0.382 -0.463 -0.262 -0.263 -0.297 -0.202 -0.435 -0.404 -0.285 -0.317 + -0.078 0.109 -0.154 -0.095 0.211 0.112 -0.146 -0.092 -0.116 0.023 + 0.111 -0.050 -0.325 0.136 -0.008 0.376 0.118 -0.222 -0.199 0.056 + 0.044 0.087 -0.095 -0.012 0.166 0.398 -0.269 0.098 0.307 -0.295 + -0.057 0.309 -0.175 0.136 0.295 -0.168 0.246 -0.273 0.116 -0.250 + -0.083 0.147 0.008 -0.014 0.123 -0.104 -0.080 -0.271 -0.036 0.090 + 0.034 -0.226 0.077 -0.143 -0.010 0.020 0.090 0.342 -0.226 -0.101 + + 482 iasi616_metop-a 2910 0.711847E-01 + 0.159 -0.048 -0.035 0.049 0.355 0.030 0.082 0.203 0.150 -0.134 + -0.247 -0.121 0.050 0.107 -0.118 0.104 0.144 -0.010 0.158 0.116 + -0.096 -0.056 0.131 0.153 0.118 0.319 0.094 0.140 0.168 0.174 + -0.100 -0.282 -0.521 -0.252 -0.081 0.031 -0.279 -0.357 -0.176 -0.210 + -0.184 -0.548 -0.280 -0.153 -0.063 0.021 0.036 -0.422 -0.318 -0.199 + -0.408 -0.055 -0.393 -0.148 -0.435 0.016 -0.507 -0.277 0.141 -0.337 + -0.185 0.029 -0.188 -0.116 -0.019 -0.357 -0.270 -0.469 -0.071 -0.387 + -0.378 -0.130 -0.350 -0.066 -0.075 -0.396 -0.090 -0.298 -0.454 -0.062 + -0.193 -0.260 -0.070 -0.366 -0.245 -0.220 0.060 -0.076 -0.296 -0.183 + + 483 iasi616_metop-a 2919 0.840030E-01 + -0.282 -0.058 -0.316 -0.337 -0.102 -0.125 -0.339 -0.007 -0.079 -0.323 + -0.281 -0.400 -0.184 0.001 -0.249 -0.027 -0.009 -0.329 -0.046 -0.054 + -0.241 -0.128 -0.032 -0.040 -0.054 0.037 -0.100 0.041 0.014 -0.024 + -0.472 -0.783 -0.819 -0.429 -0.673 -0.530 -0.426 -0.849 -0.611 -0.648 + -0.507 -0.991 -0.579 -0.442 -0.568 -0.169 -0.481 -0.725 -0.763 -0.452 + -0.548 -0.295 -0.748 -0.600 -0.615 -0.503 -0.561 -0.548 -0.325 -0.822 + -0.537 -0.422 -0.412 -0.516 -0.383 -0.661 -0.575 -0.945 -0.490 -0.823 + -1.036 -0.507 -0.817 -0.472 -0.693 -0.725 -0.259 -0.663 -0.795 -0.256 + -0.450 -0.513 -0.456 -0.843 -0.297 -0.572 -0.212 -0.574 -0.681 -0.567 + + 484 iasi616_metop-a 2921 0.787749E-01 + -0.250 -0.227 -0.252 -0.289 -0.350 -0.290 -0.297 -0.194 -0.189 -0.451 + -0.378 -0.445 -0.406 -0.151 -0.363 -0.199 -0.260 -0.610 -0.388 -0.221 + -0.355 -0.308 -0.264 -0.273 -0.271 -0.277 -0.326 -0.228 -0.188 -0.385 + -0.321 -0.506 -0.566 -0.174 -0.419 -0.276 -0.234 -0.709 -0.566 -0.490 + -0.461 -0.397 -0.494 -0.519 -0.559 -0.298 -0.433 -0.335 -0.596 -0.414 + -0.407 -0.321 -0.501 -0.520 -0.590 -0.299 -0.302 -0.565 -0.195 -0.717 + -0.417 -0.510 -0.276 -0.557 -0.289 -0.652 -0.447 -0.647 -0.512 -0.552 + -0.775 -0.402 -0.463 -0.321 -0.320 -0.556 -0.452 -0.384 -0.496 -0.306 + -0.304 -0.499 -0.244 -0.598 -0.175 -0.484 -0.142 -0.450 -0.640 -0.289 + + 485 iasi616_metop-a 2939 0.724055E-01 + -0.277 -0.511 -0.533 -0.401 -0.284 -0.448 -0.293 -0.379 -0.208 -0.497 + -0.460 -0.388 -0.201 -0.204 -0.354 -0.131 -0.232 -0.386 -0.385 -0.276 + -0.306 -0.286 -0.181 -0.289 -0.181 -0.190 -0.205 -0.181 -0.094 -0.178 + -0.500 -0.601 -0.898 -0.512 -0.438 -0.398 -0.651 -0.815 -0.640 -0.626 + -0.538 -0.851 -0.672 -0.608 -0.497 -0.418 -0.431 -0.817 -0.781 -0.529 + -0.650 -0.432 -0.725 -0.530 -0.761 -0.299 -0.780 -0.629 -0.189 -0.640 + -0.473 -0.467 -0.609 -0.481 -0.346 -0.695 -0.672 -0.844 -0.526 -0.767 + -0.716 -0.562 -0.732 -0.466 -0.492 -0.731 -0.411 -0.667 -0.787 -0.422 + -0.499 -0.546 -0.491 -0.781 -0.539 -0.612 -0.361 -0.498 -0.723 -0.594 + + 486 iasi616_metop-a 2944 0.459664E-01 + -0.205 -0.288 -0.250 -0.274 -0.087 -0.309 -0.278 -0.169 -0.202 -0.535 + -0.478 -0.467 -0.286 -0.164 -0.393 -0.170 -0.246 -0.442 -0.322 -0.201 + -0.470 -0.396 -0.193 -0.239 -0.329 -0.236 -0.468 -0.362 -0.297 -0.387 + -0.259 -0.169 -0.243 -0.351 -0.085 -0.140 -0.396 -0.244 -0.298 -0.009 + -0.136 -0.309 -0.475 0.207 -0.216 0.007 -0.179 -0.366 -0.413 -0.121 + -0.285 -0.086 -0.288 -0.225 -0.015 0.032 -0.486 -0.093 -0.091 -0.293 + -0.264 -0.002 -0.406 -0.122 0.112 -0.493 -0.199 -0.448 -0.076 -0.571 + -0.260 -0.147 -0.308 -0.161 -0.264 -0.381 -0.226 -0.382 -0.147 -0.264 + -0.236 -0.338 -0.177 -0.402 -0.256 -0.254 -0.218 0.143 -0.394 -0.488 + + 487 iasi616_metop-a 2945 0.433125E-01 + -0.122 -0.227 -0.220 -0.267 -0.026 -0.095 -0.087 -0.119 0.022 -0.359 + -0.414 -0.280 -0.110 -0.181 -0.314 -0.137 -0.191 -0.287 -0.052 -0.065 + -0.271 -0.257 -0.124 -0.105 -0.134 -0.041 -0.227 -0.186 -0.072 -0.090 + -0.355 -0.386 -0.313 -0.480 -0.287 -0.266 -0.464 -0.375 -0.450 -0.192 + -0.351 -0.438 -0.661 0.055 -0.281 -0.234 -0.244 -0.444 -0.595 -0.270 + -0.519 -0.275 -0.390 -0.399 -0.132 -0.196 -0.589 -0.242 -0.221 -0.404 + -0.378 -0.098 -0.469 -0.187 -0.041 -0.564 -0.279 -0.535 -0.234 -0.723 + -0.407 -0.290 -0.439 -0.277 -0.431 -0.427 -0.336 -0.498 -0.270 -0.418 + -0.397 -0.285 -0.342 -0.562 -0.396 -0.294 -0.258 0.091 -0.514 -0.482 + + 488 iasi616_metop-a 2948 0.494612E-01 + -0.070 -0.251 -0.241 -0.214 -0.047 -0.146 -0.101 -0.183 0.000 -0.390 + -0.412 -0.337 -0.168 -0.196 -0.344 -0.204 -0.234 -0.266 -0.137 -0.118 + -0.298 -0.337 -0.199 -0.182 -0.232 -0.140 -0.303 -0.314 -0.219 -0.201 + -0.169 -0.181 -0.305 -0.342 -0.158 -0.141 -0.471 -0.290 -0.362 -0.150 + -0.159 -0.275 -0.432 0.099 -0.214 0.061 -0.136 -0.391 -0.406 -0.148 + -0.348 -0.138 -0.309 -0.181 -0.017 0.013 -0.517 -0.119 -0.112 -0.365 + -0.233 -0.026 -0.461 -0.131 0.065 -0.426 -0.224 -0.451 -0.077 -0.556 + -0.247 -0.163 -0.303 -0.191 -0.283 -0.499 -0.316 -0.442 -0.192 -0.285 + -0.257 -0.396 -0.154 -0.451 -0.264 -0.312 -0.210 0.065 -0.486 -0.493 + + 489 iasi616_metop-a 2951 0.463970E-01 + -0.010 -0.142 -0.146 -0.106 0.057 -0.045 -0.005 -0.003 0.136 -0.318 + -0.313 -0.209 -0.091 -0.080 -0.257 -0.079 -0.083 -0.254 0.002 -0.033 + -0.278 -0.213 -0.029 -0.027 -0.093 -0.020 -0.242 -0.204 -0.103 -0.120 + -0.125 -0.213 -0.162 -0.268 -0.091 -0.106 -0.360 -0.146 -0.235 0.015 + -0.095 -0.216 -0.416 0.237 -0.160 0.089 -0.087 -0.273 -0.373 -0.076 + -0.215 -0.040 -0.320 -0.159 0.058 0.092 -0.429 -0.030 -0.033 -0.289 + -0.193 0.005 -0.295 -0.059 0.159 -0.376 -0.137 -0.319 0.033 -0.528 + -0.177 -0.096 -0.258 -0.128 -0.187 -0.345 -0.194 -0.320 -0.090 -0.184 + -0.192 -0.225 -0.120 -0.392 -0.181 -0.217 -0.129 0.191 -0.363 -0.426 + + 490 iasi616_metop-a 2958 0.477866E-01 + 0.179 -0.003 -0.028 -0.012 0.157 0.065 0.083 0.073 0.219 -0.187 + -0.248 -0.103 0.052 0.007 -0.164 0.017 0.029 -0.147 0.097 0.064 + -0.181 -0.178 0.021 0.043 0.006 0.095 -0.128 -0.101 -0.015 0.009 + 0.074 -0.003 -0.063 -0.120 0.166 0.105 -0.223 -0.130 -0.150 0.139 + 0.036 -0.128 -0.229 0.333 -0.052 0.249 0.060 -0.146 -0.171 0.092 + -0.056 0.083 -0.124 0.041 0.208 0.249 -0.257 0.037 0.119 -0.217 + -0.112 0.189 -0.197 0.022 0.283 -0.238 0.075 -0.255 0.103 -0.367 + -0.062 0.081 -0.068 0.089 -0.077 -0.276 -0.077 -0.213 -0.018 -0.023 + -0.040 -0.133 0.065 -0.253 -0.058 -0.075 -0.017 0.310 -0.281 -0.317 + + 491 iasi616_metop-a 2971 0.746583E-01 + 0.623 0.619 0.608 0.573 0.468 0.564 0.505 0.605 0.628 0.386 + 0.262 0.375 0.342 0.487 0.360 0.343 0.445 0.122 0.417 0.462 + 0.131 0.275 0.294 0.323 0.319 0.409 0.165 0.143 0.293 0.284 + 0.615 0.633 0.618 0.720 0.645 0.723 0.803 0.426 0.606 0.580 + 0.571 0.652 0.522 0.529 0.594 0.750 0.584 0.669 0.569 0.663 + 0.693 0.721 0.606 0.530 0.484 0.715 0.759 0.561 0.879 0.345 + 0.627 0.554 0.734 0.524 0.695 0.370 0.610 0.489 0.592 0.462 + 0.311 0.596 0.654 0.700 0.673 0.489 0.551 0.668 0.570 0.628 + 0.716 0.567 0.712 0.470 0.739 0.567 0.812 0.661 0.429 0.801 + + 492 iasi616_metop-a 2977 0.637415E-01 + 0.691 0.405 0.479 0.612 0.699 0.498 0.605 0.618 0.663 0.462 + 0.529 0.575 0.787 0.783 0.609 0.885 0.763 0.603 0.595 0.710 + 0.691 0.700 0.744 0.645 0.746 0.794 0.758 0.755 0.868 0.748 + 0.128 0.120 -0.182 0.139 0.324 0.321 0.040 -0.023 0.112 0.116 + 0.151 -0.090 0.020 0.073 0.236 0.317 0.379 -0.033 0.197 0.184 + -0.040 0.299 -0.066 0.211 -0.060 0.311 -0.177 0.155 0.412 0.005 + 0.271 0.305 0.053 0.147 0.397 -0.031 0.022 -0.138 0.278 -0.190 + -0.046 0.161 0.067 0.236 0.254 -0.102 0.112 -0.039 -0.135 0.275 + 0.111 -0.063 0.156 -0.096 0.094 0.034 0.334 0.287 0.033 0.034 + + 493 iasi616_metop-a 2985 0.696744E-01 + 0.206 0.092 0.035 0.068 0.422 0.167 0.040 0.280 0.266 -0.038 + -0.080 0.036 0.160 0.329 0.004 0.279 0.327 0.121 0.313 0.332 + 0.017 0.170 0.312 0.328 0.323 0.389 0.270 0.397 0.389 0.342 + -0.114 -0.214 -0.364 -0.150 0.008 0.068 -0.190 -0.246 -0.128 -0.152 + -0.088 -0.375 -0.209 -0.074 0.082 0.107 0.269 -0.356 -0.175 -0.046 + -0.312 0.010 -0.234 -0.051 -0.350 0.156 -0.368 -0.157 0.187 -0.265 + -0.055 0.042 -0.143 -0.012 0.081 -0.280 -0.249 -0.375 0.055 -0.318 + -0.193 -0.089 -0.213 0.055 0.041 -0.357 -0.022 -0.259 -0.362 0.024 + -0.077 -0.196 -0.011 -0.243 -0.154 -0.161 0.120 -0.004 -0.221 -0.118 + + 494 iasi616_metop-a 2988 0.570622E-01 + -0.006 -0.053 -0.129 -0.110 0.242 -0.109 -0.164 0.074 -0.026 -0.266 + -0.196 -0.226 -0.006 0.091 -0.148 0.111 0.101 -0.084 0.076 0.126 + -0.231 0.008 0.151 0.156 0.059 0.149 -0.031 0.105 0.175 0.079 + -0.209 -0.228 -0.549 -0.327 -0.054 -0.058 -0.402 -0.376 -0.392 -0.271 + -0.165 -0.307 -0.458 -0.207 -0.179 0.214 0.020 -0.391 -0.277 -0.180 + -0.287 -0.144 -0.448 -0.211 -0.254 0.087 -0.466 -0.214 0.008 -0.457 + -0.248 0.094 -0.294 -0.199 0.007 -0.381 -0.077 -0.527 -0.142 -0.557 + -0.426 -0.145 -0.320 -0.236 -0.079 -0.426 -0.325 -0.376 -0.416 -0.243 + -0.314 -0.457 -0.141 -0.430 -0.260 -0.295 -0.074 -0.044 -0.380 -0.297 + + 495 iasi616_metop-a 2990 0.614392E-01 + 0.217 -0.050 0.045 0.135 0.257 0.028 0.011 0.170 0.045 -0.185 + -0.221 -0.151 0.042 0.091 -0.198 0.031 0.055 -0.114 0.066 0.068 + -0.259 -0.165 0.041 0.053 0.001 0.131 -0.099 -0.013 0.022 0.014 + 0.042 -0.001 -0.297 0.028 0.187 0.236 -0.089 -0.120 -0.053 -0.003 + 0.046 -0.117 -0.101 -0.049 0.085 0.284 0.245 -0.153 0.088 0.086 + 0.010 0.168 -0.151 0.087 -0.145 0.400 -0.256 0.078 0.301 -0.098 + 0.108 0.273 -0.102 0.020 0.281 -0.179 0.028 -0.244 0.169 -0.352 + -0.201 0.016 -0.050 0.055 0.115 -0.151 -0.043 0.049 -0.239 0.065 + -0.014 -0.213 0.065 -0.151 -0.063 -0.066 0.184 0.167 -0.084 -0.078 + + 496 iasi616_metop-a 2991 0.612452E-01 + 0.054 -0.094 -0.119 -0.075 0.230 -0.006 -0.088 0.139 0.074 -0.181 + -0.243 -0.104 0.054 0.142 -0.118 0.153 0.155 -0.019 0.162 0.192 + -0.135 0.039 0.200 0.189 0.193 0.323 0.118 0.238 0.236 0.201 + -0.276 -0.322 -0.687 -0.293 -0.096 -0.097 -0.356 -0.386 -0.349 -0.289 + -0.264 -0.374 -0.399 -0.337 -0.185 -0.036 0.021 -0.458 -0.209 -0.225 + -0.307 -0.104 -0.515 -0.206 -0.365 0.048 -0.534 -0.209 -0.001 -0.388 + -0.180 -0.030 -0.346 -0.231 -0.047 -0.421 -0.240 -0.509 -0.152 -0.549 + -0.465 -0.222 -0.353 -0.165 -0.126 -0.456 -0.296 -0.239 -0.535 -0.248 + -0.297 -0.470 -0.218 -0.415 -0.309 -0.355 -0.088 -0.145 -0.367 -0.314 + + 497 iasi616_metop-a 2993 0.669388E-01 + -0.087 -0.235 -0.254 -0.205 0.090 -0.144 -0.226 0.009 -0.107 -0.360 + -0.421 -0.350 -0.160 0.018 -0.349 -0.052 -0.084 -0.262 -0.088 -0.042 + -0.336 -0.230 -0.063 -0.096 -0.124 0.072 -0.179 -0.058 -0.057 -0.098 + -0.318 -0.428 -0.660 -0.367 -0.164 -0.146 -0.358 -0.491 -0.300 -0.405 + -0.371 -0.615 -0.426 -0.277 -0.221 -0.095 -0.047 -0.592 -0.374 -0.333 + -0.528 -0.246 -0.551 -0.251 -0.532 -0.153 -0.657 -0.343 -0.002 -0.502 + -0.280 -0.053 -0.337 -0.257 -0.107 -0.477 -0.391 -0.638 -0.224 -0.537 + -0.420 -0.264 -0.392 -0.249 -0.136 -0.535 -0.266 -0.354 -0.574 -0.224 + -0.319 -0.538 -0.252 -0.514 -0.380 -0.426 -0.079 -0.256 -0.434 -0.324 + + 498 iasi616_metop-a 3002 0.872386E-01 + -0.198 -0.015 -0.281 -0.364 -0.131 -0.063 -0.356 -0.008 -0.128 -0.293 + -0.342 -0.434 -0.222 -0.017 -0.289 -0.137 -0.070 -0.373 -0.093 -0.113 + -0.375 -0.188 -0.085 -0.085 -0.118 -0.073 -0.229 -0.075 -0.086 -0.111 + -0.363 -0.517 -0.685 -0.165 -0.521 -0.370 -0.297 -0.779 -0.477 -0.535 + -0.355 -0.776 -0.377 -0.427 -0.437 -0.091 -0.365 -0.481 -0.625 -0.243 + -0.331 -0.224 -0.662 -0.444 -0.494 -0.453 -0.354 -0.425 -0.161 -0.712 + -0.383 -0.284 -0.145 -0.308 -0.259 -0.410 -0.455 -0.708 -0.281 -0.533 + -0.902 -0.350 -0.684 -0.311 -0.563 -0.510 -0.209 -0.444 -0.635 -0.043 + -0.399 -0.307 -0.328 -0.613 -0.205 -0.382 -0.103 -0.459 -0.556 -0.388 + + 499 iasi616_metop-a 3008 0.727605E-01 + -0.286 -0.335 -0.411 -0.284 -0.245 -0.362 -0.296 -0.251 -0.231 -0.551 + -0.408 -0.419 -0.256 -0.118 -0.384 -0.063 -0.190 -0.416 -0.381 -0.177 + -0.312 -0.281 -0.150 -0.302 -0.229 -0.181 -0.173 -0.137 -0.042 -0.258 + -0.606 -0.785 -0.874 -0.628 -0.517 -0.333 -0.621 -0.813 -0.453 -0.616 + -0.534 -0.873 -0.701 -0.519 -0.553 -0.245 -0.330 -0.836 -0.765 -0.536 + -0.743 -0.406 -0.688 -0.430 -0.751 -0.207 -0.832 -0.588 -0.189 -0.672 + -0.484 -0.222 -0.478 -0.506 -0.466 -0.697 -0.644 -0.793 -0.505 -0.732 + -0.769 -0.552 -0.734 -0.515 -0.567 -0.757 -0.422 -0.558 -0.857 -0.386 + -0.554 -0.606 -0.432 -0.752 -0.611 -0.591 -0.304 -0.569 -0.627 -0.681 + + 500 iasi616_metop-a 3014 0.817087E-01 + -0.410 -0.200 -0.482 -0.444 -0.251 -0.273 -0.514 -0.196 -0.294 -0.541 + -0.548 -0.634 -0.440 -0.228 -0.499 -0.331 -0.307 -0.603 -0.275 -0.286 + -0.552 -0.371 -0.286 -0.285 -0.374 -0.314 -0.431 -0.252 -0.305 -0.335 + -0.518 -0.738 -0.833 -0.457 -0.622 -0.409 -0.454 -0.935 -0.521 -0.725 + -0.395 -1.082 -0.581 -0.465 -0.469 -0.193 -0.494 -0.796 -0.794 -0.534 + -0.626 -0.317 -0.698 -0.561 -0.720 -0.407 -0.636 -0.766 -0.360 -0.794 + -0.433 -0.357 -0.469 -0.509 -0.357 -0.640 -0.614 -0.925 -0.457 -0.753 + -0.893 -0.563 -0.969 -0.484 -0.711 -0.710 -0.222 -0.496 -0.870 -0.306 + -0.497 -0.401 -0.439 -0.834 -0.349 -0.484 -0.247 -0.546 -0.554 -0.546 + + 501 iasi616_metop-a 3027 0.592521E-01 + -0.160 -0.362 -0.304 -0.173 -0.132 -0.378 -0.261 -0.193 -0.221 -0.552 + -0.404 -0.384 -0.317 -0.063 -0.428 -0.148 -0.198 -0.476 -0.318 -0.148 + -0.365 -0.310 -0.109 -0.204 -0.213 -0.160 -0.337 -0.144 -0.152 -0.349 + -0.272 -0.207 -0.572 -0.319 -0.118 -0.111 -0.399 -0.426 -0.427 -0.270 + -0.199 -0.482 -0.423 -0.297 -0.238 -0.010 -0.044 -0.473 -0.263 -0.213 + -0.314 -0.108 -0.491 -0.261 -0.449 0.104 -0.545 -0.242 0.069 -0.455 + -0.303 0.037 -0.414 -0.238 -0.059 -0.476 -0.116 -0.534 -0.201 -0.573 + -0.437 -0.249 -0.357 -0.266 -0.068 -0.438 -0.397 -0.282 -0.493 -0.232 + -0.329 -0.568 -0.235 -0.415 -0.353 -0.384 -0.104 -0.132 -0.358 -0.338 + + 502 iasi616_metop-a 3029 0.575892E-01 + 0.055 -0.148 -0.108 -0.048 0.136 -0.045 -0.126 0.043 -0.050 -0.263 + -0.314 -0.260 -0.062 0.040 -0.280 -0.008 -0.026 -0.187 0.002 0.014 + -0.327 -0.133 -0.000 0.014 -0.064 0.114 -0.175 -0.056 0.003 -0.062 + -0.137 -0.069 -0.452 -0.224 0.022 0.043 -0.298 -0.313 -0.269 -0.142 + -0.067 -0.355 -0.332 -0.170 -0.105 0.255 0.071 -0.372 -0.166 -0.077 + -0.189 -0.009 -0.370 -0.160 -0.203 0.203 -0.377 -0.148 0.150 -0.331 + -0.221 0.129 -0.191 -0.144 0.053 -0.325 0.039 -0.426 -0.055 -0.459 + -0.349 -0.037 -0.212 -0.177 0.029 -0.303 -0.285 -0.242 -0.330 -0.120 + -0.218 -0.413 -0.040 -0.308 -0.199 -0.234 0.007 -0.017 -0.277 -0.218 + + 503 iasi616_metop-a 3030 0.572536E-01 + 0.038 -0.134 -0.107 -0.026 0.195 -0.056 -0.100 0.110 0.018 -0.250 + -0.247 -0.221 -0.023 0.087 -0.197 0.016 0.044 -0.096 0.045 0.060 + -0.270 -0.082 0.074 0.103 0.028 0.190 -0.043 0.040 0.076 0.062 + -0.154 -0.093 -0.453 -0.273 -0.016 0.013 -0.321 -0.352 -0.287 -0.201 + -0.098 -0.241 -0.351 -0.103 -0.127 0.243 -0.009 -0.391 -0.195 -0.095 + -0.197 -0.083 -0.378 -0.185 -0.144 0.185 -0.421 -0.158 0.144 -0.385 + -0.182 0.179 -0.263 -0.159 0.046 -0.377 0.031 -0.434 -0.074 -0.499 + -0.363 -0.055 -0.243 -0.189 -0.010 -0.321 -0.297 -0.344 -0.377 -0.147 + -0.236 -0.419 -0.058 -0.328 -0.213 -0.244 0.004 -0.040 -0.307 -0.243 + + 504 iasi616_metop-a 3036 0.681920E-01 + -0.152 -0.245 -0.282 -0.222 0.108 -0.124 -0.197 0.001 -0.091 -0.323 + -0.394 -0.326 -0.169 -0.018 -0.340 -0.079 -0.061 -0.207 -0.064 -0.080 + -0.320 -0.263 -0.034 -0.013 -0.017 0.115 -0.096 -0.025 0.035 0.018 + -0.432 -0.540 -0.701 -0.470 -0.291 -0.224 -0.484 -0.567 -0.430 -0.469 + -0.430 -0.681 -0.490 -0.276 -0.355 -0.153 -0.113 -0.612 -0.510 -0.383 + -0.582 -0.293 -0.573 -0.284 -0.571 -0.223 -0.710 -0.402 -0.006 -0.555 + -0.303 -0.114 -0.383 -0.313 -0.233 -0.529 -0.462 -0.705 -0.299 -0.578 + -0.521 -0.335 -0.464 -0.256 -0.228 -0.640 -0.306 -0.365 -0.637 -0.230 + -0.384 -0.568 -0.287 -0.530 -0.478 -0.434 -0.125 -0.346 -0.487 -0.427 + + 505 iasi616_metop-a 3047 0.603675E-01 + 0.016 -0.145 -0.187 -0.116 0.127 -0.140 -0.247 -0.016 -0.101 -0.393 + -0.378 -0.309 -0.108 0.007 -0.332 -0.053 -0.069 -0.277 -0.127 -0.012 + -0.366 -0.208 -0.049 -0.043 -0.111 -0.068 -0.282 -0.096 -0.093 -0.141 + -0.171 -0.105 -0.480 -0.183 -0.057 0.022 -0.234 -0.313 -0.245 -0.153 + -0.038 -0.298 -0.297 -0.191 -0.007 0.006 0.133 -0.284 -0.085 -0.137 + -0.177 -0.020 -0.367 -0.102 -0.291 0.224 -0.445 -0.128 0.148 -0.259 + -0.157 0.163 -0.236 -0.115 0.071 -0.330 -0.180 -0.380 -0.051 -0.389 + -0.316 -0.124 -0.251 -0.085 0.010 -0.301 -0.201 -0.238 -0.429 -0.101 + -0.177 -0.408 -0.131 -0.311 -0.200 -0.247 0.032 -0.016 -0.194 -0.219 + + 506 iasi616_metop-a 3049 0.563988E-01 + 0.167 -0.000 0.034 0.073 0.325 0.054 0.005 0.216 0.075 -0.158 + -0.159 -0.120 0.084 0.179 -0.137 0.140 0.106 -0.084 0.117 0.165 + -0.167 0.004 0.157 0.130 0.071 0.239 -0.011 0.076 0.116 0.094 + 0.023 0.068 -0.161 -0.072 0.194 0.220 -0.036 -0.118 -0.064 0.059 + 0.148 -0.073 -0.209 0.118 0.089 0.455 0.220 -0.179 -0.036 0.093 + -0.015 0.102 -0.193 -0.002 0.096 0.351 -0.222 0.016 0.305 -0.192 + -0.012 0.276 -0.034 0.083 0.251 -0.146 0.078 -0.258 0.105 -0.312 + -0.153 0.124 -0.052 -0.004 0.088 -0.163 -0.113 -0.156 -0.108 0.010 + -0.021 -0.226 0.139 -0.149 -0.035 -0.086 0.126 0.239 -0.150 -0.089 + + 507 iasi616_metop-a 3052 0.517222E-01 + 0.435 0.208 0.269 0.288 0.478 0.294 0.260 0.435 0.355 0.018 + 0.026 0.061 0.286 0.356 0.069 0.289 0.298 0.114 0.328 0.326 + 0.027 0.147 0.299 0.339 0.271 0.416 0.161 0.218 0.275 0.257 + 0.251 0.334 0.122 0.199 0.461 0.454 0.183 0.177 0.140 0.334 + 0.365 0.098 0.118 0.535 0.268 0.642 0.347 0.062 0.123 0.389 + 0.229 0.300 0.114 0.324 0.470 0.572 0.009 0.271 0.443 0.106 + 0.177 0.505 0.108 0.335 0.557 0.078 0.394 -0.014 0.436 -0.044 + 0.177 0.409 0.182 0.273 0.277 0.099 0.193 0.018 0.198 0.330 + 0.235 0.016 0.417 0.080 0.214 0.199 0.324 0.612 0.029 -0.040 + + 508 iasi616_metop-a 3053 0.514748E-01 + 0.467 0.305 0.312 0.323 0.587 0.412 0.346 0.526 0.505 0.155 + 0.110 0.265 0.384 0.425 0.172 0.452 0.418 0.276 0.471 0.453 + 0.165 0.287 0.425 0.496 0.398 0.581 0.382 0.396 0.475 0.435 + 0.238 0.304 0.002 0.160 0.416 0.408 0.132 0.134 0.110 0.350 + 0.320 0.070 0.021 0.429 0.230 0.612 0.380 0.021 0.058 0.352 + 0.192 0.245 0.119 0.309 0.442 0.539 -0.028 0.254 0.423 0.043 + 0.145 0.480 0.086 0.302 0.520 0.043 0.362 -0.043 0.408 -0.066 + 0.164 0.377 0.143 0.270 0.253 0.064 0.167 0.024 0.175 0.254 + 0.239 -0.024 0.358 0.059 0.184 0.177 0.311 0.578 -0.003 -0.026 + + 509 iasi616_metop-a 3055 0.574338E-01 + 0.667 0.444 0.519 0.535 0.727 0.517 0.438 0.648 0.610 0.279 + 0.161 0.370 0.434 0.478 0.280 0.518 0.475 0.308 0.536 0.512 + 0.212 0.301 0.457 0.510 0.404 0.589 0.370 0.383 0.474 0.423 + 0.444 0.475 0.178 0.301 0.634 0.601 0.368 0.330 0.366 0.429 + 0.543 0.296 0.196 0.474 0.469 0.807 0.652 0.308 0.378 0.486 + 0.402 0.501 0.200 0.467 0.465 0.721 0.141 0.407 0.676 0.218 + 0.377 0.690 0.315 0.459 0.662 0.207 0.450 0.195 0.542 0.132 + 0.215 0.498 0.316 0.391 0.538 0.240 0.262 0.215 0.224 0.448 + 0.387 0.211 0.570 0.205 0.380 0.351 0.546 0.644 0.224 0.252 + + 510 iasi616_metop-a 3058 0.519749E-01 + 0.494 0.410 0.380 0.372 0.715 0.502 0.497 0.596 0.569 0.307 + 0.226 0.296 0.544 0.566 0.299 0.554 0.627 0.424 0.608 0.610 + 0.357 0.436 0.651 0.699 0.614 0.816 0.581 0.623 0.699 0.658 + 0.296 0.278 0.070 0.171 0.426 0.360 0.155 0.222 0.144 0.283 + 0.347 0.079 0.093 0.414 0.255 0.639 0.334 0.007 0.077 0.365 + 0.203 0.265 0.135 0.266 0.382 0.529 -0.059 0.241 0.405 0.007 + 0.178 0.491 0.085 0.285 0.542 0.084 0.360 -0.010 0.346 -0.058 + 0.155 0.324 0.194 0.304 0.243 0.023 0.183 0.004 0.165 0.257 + 0.204 -0.009 0.391 0.003 0.193 0.150 0.306 0.535 0.046 -0.051 + + 511 iasi616_metop-a 3064 0.538072E-01 + 0.448 0.240 0.295 0.329 0.583 0.348 0.311 0.505 0.434 0.105 + 0.087 0.258 0.334 0.363 0.129 0.434 0.411 0.254 0.442 0.446 + 0.169 0.248 0.400 0.460 0.366 0.530 0.331 0.384 0.454 0.354 + 0.205 0.288 0.032 0.148 0.405 0.343 0.147 0.139 0.104 0.212 + 0.334 0.078 -0.016 0.266 0.263 0.640 0.382 0.041 0.141 0.355 + 0.161 0.273 0.064 0.183 0.364 0.540 -0.037 0.230 0.412 -0.080 + 0.197 0.422 0.103 0.221 0.477 0.026 0.250 -0.067 0.277 -0.070 + 0.005 0.262 0.158 0.217 0.225 0.016 0.074 -0.044 0.087 0.256 + 0.230 -0.002 0.329 0.033 0.190 0.118 0.299 0.504 -0.033 0.048 + + 512 iasi616_metop-a 3069 0.811144E-01 + 0.199 0.225 0.126 0.187 0.363 0.254 0.166 0.409 0.277 0.059 + -0.072 0.079 0.200 0.247 0.016 0.284 0.359 -0.000 0.315 0.213 + 0.040 0.132 0.242 0.318 0.262 0.431 0.288 0.316 0.335 0.317 + -0.054 -0.153 -0.233 -0.010 -0.073 0.081 -0.009 -0.531 -0.088 -0.144 + 0.031 -0.543 -0.159 -0.105 -0.054 0.123 -0.067 -0.181 -0.215 -0.117 + -0.266 0.062 -0.278 -0.007 -0.321 0.014 -0.139 -0.177 0.236 -0.327 + 0.012 -0.029 0.035 -0.022 0.139 -0.286 -0.144 -0.405 -0.063 -0.319 + -0.502 -0.096 -0.401 -0.073 -0.220 -0.182 0.173 -0.228 -0.382 0.148 + 0.019 -0.125 -0.003 -0.342 0.039 -0.190 0.175 0.043 -0.183 -0.194 + + 513 iasi616_metop-a 3087 0.755459E-01 + 0.087 0.032 -0.082 -0.013 0.162 -0.040 0.013 0.096 0.118 -0.146 + -0.156 -0.132 0.024 0.268 -0.040 0.276 0.163 -0.058 0.045 0.103 + -0.022 0.055 0.183 0.116 0.137 0.217 0.108 0.155 0.192 0.120 + -0.291 -0.425 -0.553 -0.335 -0.196 0.015 -0.267 -0.467 -0.132 -0.302 + -0.145 -0.750 -0.363 -0.241 -0.125 0.069 0.032 -0.470 -0.286 -0.195 + -0.459 -0.000 -0.409 -0.083 -0.445 0.070 -0.418 -0.252 0.148 -0.361 + -0.136 0.011 -0.123 -0.087 -0.115 -0.289 -0.337 -0.446 -0.048 -0.372 + -0.394 -0.254 -0.512 -0.089 -0.242 -0.417 -0.082 -0.218 -0.606 -0.115 + -0.199 -0.189 -0.070 -0.500 -0.238 -0.319 0.017 -0.195 -0.282 -0.345 + + 514 iasi616_metop-a 3093 0.854099E-01 + 0.122 0.288 -0.021 0.006 0.147 0.150 -0.075 0.217 0.109 -0.121 + -0.055 -0.137 0.015 0.257 -0.018 0.110 0.155 -0.174 0.147 0.146 + -0.112 0.054 0.139 0.135 0.065 0.160 -0.040 0.148 0.124 0.090 + 0.069 -0.156 -0.174 0.138 -0.167 0.079 0.138 -0.337 -0.055 -0.193 + 0.152 -0.492 0.004 0.007 0.037 0.410 0.094 -0.136 -0.185 0.102 + -0.018 0.369 -0.153 -0.029 -0.025 0.022 0.032 0.001 0.174 -0.277 + 0.009 0.142 0.168 0.130 0.156 -0.095 -0.006 -0.349 0.161 -0.146 + -0.421 0.073 -0.297 0.105 -0.179 -0.158 0.298 -0.074 -0.263 0.421 + 0.127 0.072 0.108 -0.292 0.214 -0.012 0.356 0.014 -0.076 0.052 + + 515 iasi616_metop-a 3098 0.564187E-01 + 0.265 0.263 0.324 0.356 0.187 0.161 0.327 0.293 0.204 0.037 + 0.193 0.106 0.192 0.390 0.166 0.362 0.217 0.022 0.143 0.439 + 0.172 0.294 0.323 0.296 0.250 0.263 0.280 0.350 0.371 0.223 + 0.163 0.148 0.178 0.225 0.238 0.178 0.101 0.033 0.132 0.044 + 0.127 0.303 0.073 0.120 0.155 0.252 0.032 0.075 0.166 0.164 + 0.216 0.464 0.157 0.143 0.073 0.264 0.137 0.022 0.519 0.258 + 0.103 0.175 0.364 0.032 0.088 0.109 0.232 0.054 -0.012 0.307 + 0.286 0.202 0.358 0.320 0.268 0.153 0.255 0.364 0.240 0.130 + 0.402 0.154 0.362 0.174 0.321 0.277 0.242 0.160 0.266 0.303 + + 516 iasi616_metop-a 3105 0.788482E-01 + 0.198 0.060 0.032 0.237 0.253 0.187 0.161 0.231 0.195 0.175 + 0.184 0.135 0.229 0.392 0.231 0.313 0.212 0.139 0.258 0.102 + 0.254 0.224 0.191 0.179 0.280 0.318 0.269 0.261 0.253 0.322 + -0.300 -0.482 -0.569 -0.267 -0.318 -0.109 -0.209 -0.671 -0.231 -0.465 + -0.231 -0.769 -0.433 -0.279 -0.253 0.083 -0.111 -0.563 -0.425 -0.287 + -0.488 -0.087 -0.467 -0.215 -0.578 -0.144 -0.429 -0.404 -0.039 -0.537 + -0.164 -0.189 -0.209 -0.209 -0.151 -0.461 -0.392 -0.714 -0.234 -0.567 + -0.649 -0.286 -0.622 -0.268 -0.417 -0.461 -0.079 -0.401 -0.657 -0.098 + -0.264 -0.200 -0.110 -0.589 -0.197 -0.322 0.006 -0.356 -0.301 -0.438 + + 517 iasi616_metop-a 3107 0.749579E-01 + 0.176 0.171 0.035 0.163 0.286 0.115 0.040 0.131 0.106 -0.168 + -0.130 -0.130 -0.034 0.273 -0.072 0.127 0.125 -0.197 0.045 0.074 + -0.131 -0.003 0.092 0.034 0.025 0.127 -0.096 0.094 0.097 -0.040 + -0.084 -0.186 -0.263 -0.061 0.090 0.264 0.035 -0.284 0.015 -0.133 + 0.133 -0.518 -0.163 0.078 0.084 0.332 0.183 -0.230 -0.062 0.017 + -0.208 0.214 -0.173 0.071 -0.209 0.306 -0.186 0.035 0.387 -0.174 + 0.064 0.287 0.126 0.041 0.069 -0.128 -0.104 -0.256 0.121 -0.212 + -0.239 -0.015 -0.295 0.072 -0.012 -0.218 0.166 -0.036 -0.372 0.188 + 0.053 0.115 0.113 -0.309 -0.015 -0.070 0.253 0.027 0.013 -0.257 + + 518 iasi616_metop-a 3110 0.704658E-01 + 0.063 0.038 -0.109 -0.049 0.272 0.001 0.028 0.181 0.106 -0.180 + -0.137 -0.106 -0.010 0.296 -0.044 0.217 0.178 -0.059 0.176 0.318 + 0.013 0.068 0.227 0.266 0.233 0.288 0.180 0.338 0.312 0.243 + -0.436 -0.565 -0.676 -0.516 -0.301 -0.179 -0.393 -0.648 -0.274 -0.357 + -0.349 -0.669 -0.447 -0.232 -0.311 -0.013 -0.072 -0.568 -0.560 -0.306 + -0.583 -0.274 -0.452 -0.237 -0.606 -0.033 -0.636 -0.358 0.041 -0.482 + -0.222 -0.002 -0.280 -0.317 -0.123 -0.451 -0.423 -0.659 -0.297 -0.523 + -0.530 -0.299 -0.473 -0.260 -0.278 -0.595 -0.238 -0.376 -0.647 -0.157 + -0.407 -0.502 -0.261 -0.440 -0.373 -0.389 -0.087 -0.294 -0.330 -0.528 + + 519 iasi616_metop-a 3116 0.763956E-01 + 0.017 0.123 0.006 -0.078 -0.064 -0.008 -0.138 0.093 -0.026 -0.145 + -0.206 -0.228 -0.147 0.102 -0.150 0.020 0.053 -0.309 -0.058 0.108 + -0.227 -0.047 -0.008 0.038 -0.026 -0.087 -0.149 -0.005 -0.016 -0.051 + -0.125 -0.240 -0.182 0.015 -0.214 0.007 0.041 -0.367 -0.192 -0.193 + -0.221 -0.034 -0.183 -0.267 -0.163 -0.048 -0.145 -0.119 -0.325 -0.147 + -0.141 -0.217 -0.128 -0.188 -0.355 0.007 -0.085 -0.187 0.040 -0.387 + -0.137 -0.154 -0.056 -0.327 -0.114 -0.314 -0.216 -0.332 -0.223 -0.234 + -0.462 -0.182 -0.095 0.033 -0.112 -0.212 -0.168 0.018 -0.175 -0.178 + 0.104 -0.121 -0.027 -0.203 -0.074 0.017 0.065 -0.076 -0.250 0.065 + + 520 iasi616_metop-a 3127 0.626577E-01 + 0.092 -0.228 -0.118 0.043 0.089 -0.157 0.043 0.008 0.051 -0.139 + -0.058 0.008 0.119 0.135 0.072 0.257 0.175 -0.073 0.002 0.110 + 0.045 0.044 0.137 0.021 0.124 0.181 0.123 0.116 0.227 0.120 + -0.176 -0.253 -0.598 -0.203 0.022 -0.029 -0.306 -0.336 -0.243 -0.227 + -0.166 -0.399 -0.301 -0.244 -0.078 0.010 0.159 -0.401 -0.214 -0.193 + -0.214 -0.094 -0.377 -0.161 -0.366 0.056 -0.451 -0.118 0.088 -0.294 + -0.099 -0.028 -0.250 -0.144 0.011 -0.333 -0.242 -0.457 -0.113 -0.524 + -0.377 -0.112 -0.279 -0.081 0.013 -0.347 -0.173 -0.201 -0.454 -0.086 + -0.220 -0.394 -0.093 -0.337 -0.203 -0.266 0.024 -0.041 -0.253 -0.259 + + 521 iasi616_metop-a 3129 0.612719E-01 + 0.052 -0.149 -0.154 -0.099 0.176 -0.067 -0.139 0.084 -0.032 -0.254 + -0.301 -0.240 -0.017 0.067 -0.287 0.039 0.022 -0.157 0.010 0.040 + -0.271 -0.099 0.095 0.046 -0.001 0.174 -0.048 0.036 0.059 -0.008 + -0.256 -0.287 -0.613 -0.251 -0.123 -0.076 -0.333 -0.385 -0.297 -0.266 + -0.227 -0.386 -0.390 -0.253 -0.151 -0.009 0.064 -0.398 -0.213 -0.218 + -0.294 -0.075 -0.475 -0.177 -0.338 0.136 -0.540 -0.203 0.002 -0.392 + -0.180 -0.009 -0.328 -0.213 -0.006 -0.401 -0.210 -0.482 -0.194 -0.507 + -0.417 -0.240 -0.342 -0.180 -0.030 -0.375 -0.297 -0.309 -0.515 -0.227 + -0.272 -0.455 -0.137 -0.407 -0.273 -0.328 -0.038 -0.108 -0.312 -0.282 + + 522 iasi616_metop-a 3136 0.746233E-01 + -0.085 -0.111 -0.288 -0.164 0.147 -0.092 -0.210 0.027 -0.058 -0.333 + -0.398 -0.312 -0.154 0.038 -0.260 -0.036 -0.036 -0.253 -0.039 -0.058 + -0.332 -0.183 -0.073 -0.072 -0.082 0.104 -0.118 -0.007 -0.034 -0.049 + -0.462 -0.598 -0.669 -0.450 -0.306 -0.175 -0.367 -0.618 -0.320 -0.517 + -0.295 -0.794 -0.492 -0.249 -0.335 -0.038 -0.132 -0.644 -0.527 -0.309 + -0.599 -0.168 -0.547 -0.258 -0.614 -0.056 -0.572 -0.378 -0.005 -0.580 + -0.295 -0.142 -0.260 -0.299 -0.285 -0.422 -0.471 -0.669 -0.282 -0.526 + -0.704 -0.386 -0.579 -0.293 -0.348 -0.563 -0.236 -0.397 -0.785 -0.192 + -0.383 -0.371 -0.212 -0.631 -0.372 -0.433 -0.108 -0.378 -0.392 -0.533 + + 523 iasi616_metop-a 3146 0.734042E-01 + 0.094 0.090 -0.048 0.057 0.249 0.033 -0.072 0.093 0.024 -0.272 + -0.239 -0.226 -0.030 0.201 -0.189 0.045 0.046 -0.210 0.001 0.035 + -0.218 -0.102 0.028 0.004 -0.056 -0.003 -0.158 0.001 -0.003 -0.094 + -0.051 -0.231 -0.296 -0.073 0.056 0.198 -0.062 -0.322 0.023 -0.040 + 0.083 -0.448 -0.111 0.068 0.134 0.302 0.227 -0.244 -0.153 0.003 + -0.234 0.147 -0.147 0.178 -0.229 0.337 -0.213 0.028 0.408 -0.157 + 0.084 0.213 0.095 0.071 0.071 -0.162 -0.093 -0.253 0.082 -0.174 + -0.243 0.002 -0.206 0.060 -0.012 -0.260 0.087 -0.028 -0.360 0.201 + 0.003 -0.053 0.120 -0.252 0.015 -0.062 0.285 0.058 -0.049 -0.167 + + 524 iasi616_metop-a 3151 0.697349E-01 + 0.331 0.229 0.174 0.236 0.489 0.262 0.158 0.353 0.252 -0.016 + 0.018 0.031 0.166 0.417 0.063 0.363 0.332 0.145 0.263 0.346 + 0.067 0.209 0.348 0.338 0.272 0.325 0.190 0.363 0.368 0.296 + 0.100 -0.086 -0.138 0.030 0.175 0.240 -0.019 -0.075 0.154 0.002 + 0.079 -0.241 0.027 0.111 0.153 0.348 0.395 -0.130 -0.041 0.123 + -0.143 0.115 -0.128 0.179 -0.173 0.333 -0.253 0.022 0.454 -0.105 + 0.161 0.205 0.108 0.137 0.278 -0.116 -0.007 -0.179 0.123 -0.113 + -0.041 0.156 0.005 0.230 0.207 -0.190 0.189 0.029 -0.226 0.210 + 0.017 -0.071 0.175 -0.174 -0.002 -0.013 0.321 0.138 -0.031 0.009 + + 525 iasi616_metop-a 3160 0.767027E-01 + 0.405 0.416 0.259 0.357 0.564 0.416 0.197 0.482 0.365 0.152 + 0.046 0.099 0.227 0.539 0.198 0.399 0.409 0.161 0.397 0.377 + 0.108 0.266 0.373 0.382 0.364 0.454 0.273 0.437 0.389 0.393 + 0.140 -0.013 -0.074 0.135 0.096 0.358 0.138 -0.134 0.187 0.073 + 0.306 -0.345 0.009 0.215 0.183 0.495 0.385 -0.066 0.006 0.148 + -0.100 0.403 -0.075 0.268 -0.185 0.517 -0.042 0.172 0.544 -0.153 + 0.195 0.273 0.259 0.243 0.254 -0.026 0.052 -0.142 0.300 -0.096 + -0.156 0.143 -0.097 0.185 0.118 -0.072 0.285 0.155 -0.263 0.320 + 0.164 0.230 0.309 -0.174 0.184 0.006 0.412 0.134 0.131 -0.018 + + 526 iasi616_metop-a 3165 0.891140E-01 + 0.030 0.202 -0.036 -0.092 0.036 0.081 0.030 0.248 0.182 -0.050 + 0.016 -0.104 0.068 0.348 0.070 0.237 0.296 -0.077 0.245 0.364 + 0.158 0.260 0.317 0.332 0.305 0.354 0.278 0.475 0.406 0.283 + -0.368 -0.367 -0.526 -0.025 -0.353 -0.303 -0.124 -0.605 -0.467 -0.429 + -0.362 -0.340 -0.252 -0.516 -0.435 -0.036 -0.248 -0.278 -0.521 -0.245 + -0.186 -0.158 -0.475 -0.332 -0.499 -0.203 -0.144 -0.356 -0.214 -0.760 + -0.343 -0.458 -0.093 -0.408 -0.156 -0.505 -0.408 -0.588 -0.279 -0.390 + -0.740 -0.432 -0.432 -0.163 -0.277 -0.250 -0.313 -0.179 -0.254 -0.242 + -0.241 -0.278 -0.217 -0.489 -0.239 -0.292 0.027 -0.281 -0.681 -0.149 + + 527 iasi616_metop-a 3168 0.485059E-01 + 0.313 0.307 0.465 0.487 0.160 0.146 0.317 0.240 0.185 0.041 + 0.057 0.160 0.204 0.205 0.149 0.285 0.125 -0.070 -0.089 0.311 + -0.000 0.125 0.107 0.073 0.029 0.009 0.007 0.007 0.127 -0.056 + 0.340 0.180 0.275 0.162 0.338 0.528 0.282 0.120 0.257 0.251 + 0.264 0.364 0.195 0.169 0.264 0.356 0.076 0.287 0.243 0.341 + 0.406 0.473 0.379 0.163 0.347 0.265 0.251 0.082 0.448 0.434 + 0.195 0.231 0.414 0.139 0.032 0.214 0.309 0.275 0.134 0.245 + 0.478 0.299 0.465 0.380 0.264 0.264 0.380 0.295 0.349 0.243 + 0.509 0.176 0.521 0.282 0.259 0.349 0.299 0.369 0.302 0.412 + + 528 iasi616_metop-a 3175 0.776958E-01 + 0.168 0.042 0.027 0.102 0.226 0.161 0.130 0.220 0.211 0.176 + 0.112 0.198 0.181 0.416 0.275 0.342 0.279 0.224 0.372 0.219 + 0.318 0.316 0.337 0.327 0.436 0.515 0.475 0.428 0.451 0.511 + -0.536 -0.737 -0.827 -0.563 -0.539 -0.386 -0.551 -0.865 -0.592 -0.633 + -0.533 -1.028 -0.669 -0.525 -0.480 -0.262 -0.410 -0.830 -0.701 -0.545 + -0.710 -0.370 -0.703 -0.553 -0.856 -0.289 -0.740 -0.605 -0.211 -0.806 + -0.437 -0.391 -0.415 -0.471 -0.410 -0.668 -0.676 -0.873 -0.462 -0.788 + -0.928 -0.544 -0.945 -0.560 -0.608 -0.701 -0.382 -0.553 -0.935 -0.354 + -0.547 -0.454 -0.400 -0.773 -0.421 -0.660 -0.267 -0.559 -0.556 -0.712 + + 529 iasi616_metop-a 3178 0.698084E-01 + -0.294 -0.319 -0.499 -0.337 -0.150 -0.378 -0.383 -0.292 -0.316 -0.616 + -0.542 -0.543 -0.416 -0.094 -0.549 -0.217 -0.273 -0.510 -0.388 -0.264 + -0.471 -0.413 -0.234 -0.293 -0.311 -0.236 -0.431 -0.241 -0.218 -0.375 + -0.503 -0.689 -0.854 -0.600 -0.427 -0.275 -0.601 -0.680 -0.460 -0.465 + -0.505 -0.837 -0.561 -0.343 -0.395 -0.209 -0.282 -0.680 -0.653 -0.473 + -0.779 -0.425 -0.681 -0.355 -0.757 -0.233 -0.756 -0.486 -0.084 -0.524 + -0.413 -0.240 -0.427 -0.448 -0.304 -0.532 -0.519 -0.767 -0.469 -0.674 + -0.645 -0.380 -0.592 -0.404 -0.322 -0.746 -0.406 -0.483 -0.773 -0.292 + -0.482 -0.650 -0.381 -0.654 -0.509 -0.571 -0.221 -0.428 -0.579 -0.618 + + 530 iasi616_metop-a 3189 0.595511E-01 + 0.137 -0.011 0.009 0.024 0.246 0.013 -0.140 0.099 -0.022 -0.280 + -0.275 -0.267 -0.029 0.088 -0.238 -0.002 -0.008 -0.236 -0.075 0.000 + -0.332 -0.170 0.009 0.006 -0.110 -0.085 -0.287 -0.124 -0.103 -0.132 + 0.171 0.202 -0.058 0.095 0.315 0.315 0.060 -0.027 0.039 0.122 + 0.316 0.097 -0.020 0.178 0.305 0.478 0.396 0.049 0.178 0.240 + 0.141 0.279 -0.032 0.200 -0.030 0.509 -0.034 0.237 0.367 -0.016 + 0.193 0.468 0.043 0.198 0.379 -0.024 0.235 -0.060 0.238 -0.095 + -0.052 0.158 0.080 0.195 0.329 -0.069 0.042 0.010 -0.085 0.199 + 0.118 -0.032 0.309 -0.063 0.095 0.062 0.318 0.302 0.075 0.051 + + 531 iasi616_metop-a 3207 0.821142E-01 + 0.154 0.198 0.042 0.042 0.267 0.237 0.014 0.295 0.234 0.027 + -0.060 -0.096 0.084 0.296 0.044 0.220 0.302 0.010 0.276 0.197 + 0.005 0.102 0.281 0.233 0.230 0.419 0.248 0.344 0.289 0.293 + -0.109 -0.325 -0.376 -0.157 -0.200 -0.062 -0.085 -0.557 -0.201 -0.381 + -0.108 -0.669 -0.222 -0.211 -0.136 0.112 -0.163 -0.443 -0.373 -0.115 + -0.306 -0.016 -0.408 -0.231 -0.408 -0.068 -0.153 -0.281 0.183 -0.562 + -0.150 -0.129 -0.104 -0.153 0.000 -0.325 -0.273 -0.522 -0.210 -0.478 + -0.528 -0.187 -0.495 -0.114 -0.293 -0.331 0.111 -0.282 -0.454 0.009 + -0.182 -0.165 -0.122 -0.494 -0.026 -0.225 0.109 -0.149 -0.238 -0.269 + + 532 iasi616_metop-a 3228 0.810235E-01 + 0.136 0.172 0.048 0.102 0.196 0.118 0.055 0.125 0.195 -0.096 + -0.058 -0.102 -0.024 0.263 -0.007 0.224 0.197 -0.122 0.050 0.094 + -0.047 0.072 0.139 0.043 0.121 0.137 0.076 0.138 0.161 0.021 + 0.056 -0.138 -0.154 0.138 -0.022 0.131 0.087 -0.313 0.027 -0.126 + 0.265 -0.442 -0.098 0.001 0.111 0.352 0.015 -0.281 -0.056 0.079 + -0.159 0.212 -0.188 0.082 -0.239 0.139 0.011 -0.081 0.210 -0.288 + 0.131 0.244 0.054 0.042 0.208 -0.063 -0.054 -0.342 0.062 -0.234 + -0.261 -0.044 -0.301 0.149 -0.036 -0.139 0.279 -0.062 -0.270 0.163 + -0.010 0.067 0.156 -0.312 0.220 -0.026 0.324 0.077 -0.003 -0.001 + + 533 iasi616_metop-a 3244 0.897827E-01 + 0.237 0.244 0.149 0.018 -0.021 0.102 0.113 0.280 0.228 0.089 + 0.103 0.008 0.101 0.338 0.141 0.316 0.308 -0.032 0.206 0.328 + 0.143 0.277 0.299 0.273 0.294 0.338 0.290 0.380 0.346 0.176 + -0.055 -0.172 -0.204 0.283 -0.132 -0.025 0.309 -0.286 -0.184 -0.051 + -0.102 0.024 0.004 -0.140 -0.131 0.189 0.028 0.062 -0.242 0.073 + 0.145 0.072 -0.142 -0.042 -0.205 0.168 0.175 0.132 0.150 -0.441 + -0.102 -0.001 0.113 -0.088 0.196 -0.223 -0.083 -0.334 -0.059 -0.098 + -0.467 -0.194 -0.032 0.151 -0.038 -0.047 0.020 0.151 -0.031 0.057 + 0.086 0.084 0.038 -0.147 0.194 -0.010 0.318 0.009 -0.298 0.169 + + 534 iasi616_metop-a 3248 0.427352E-01 + 0.855 0.751 0.926 0.986 0.624 0.592 0.777 0.641 0.650 0.434 + 0.502 0.564 0.685 0.639 0.535 0.691 0.660 0.400 0.316 0.654 + 0.498 0.547 0.466 0.454 0.414 0.422 0.360 0.334 0.502 0.347 + 0.851 0.769 1.056 0.687 0.868 1.121 0.880 0.728 0.778 0.813 + 0.863 0.872 0.744 0.866 0.851 0.778 0.627 0.747 0.894 0.893 + 0.896 0.813 1.143 0.781 0.758 0.809 0.788 0.825 0.967 0.930 + 0.707 0.771 0.955 0.599 0.737 0.810 0.722 0.748 0.605 0.832 + 0.827 0.833 1.004 0.918 0.650 0.692 1.002 0.879 0.905 0.798 + 0.953 0.872 0.777 0.882 0.741 0.826 0.735 0.836 0.936 0.979 + + 535 iasi616_metop-a 3252 0.869330E-01 + 0.479 0.503 0.424 0.480 0.448 0.496 0.530 0.629 0.560 0.629 + 0.623 0.655 0.666 0.821 0.676 0.720 0.677 0.561 0.750 0.718 + 0.721 0.701 0.700 0.778 0.781 0.853 0.926 0.854 0.804 0.895 + -0.142 -0.168 -0.059 0.267 -0.152 -0.112 0.132 -0.167 -0.099 -0.355 + -0.277 -0.055 -0.216 -0.350 -0.172 0.067 -0.132 -0.049 -0.443 -0.055 + -0.051 -0.006 -0.230 -0.127 -0.322 0.002 -0.136 -0.070 0.020 -0.520 + -0.025 -0.071 -0.058 -0.243 -0.023 -0.325 -0.192 -0.259 -0.055 -0.159 + -0.478 -0.182 -0.200 0.067 -0.068 -0.265 -0.098 0.056 -0.046 -0.130 + 0.143 -0.011 -0.010 -0.240 0.027 -0.040 0.035 -0.047 -0.368 0.002 + + 536 iasi616_metop-a 3256 0.864272E-01 + 0.042 -0.046 -0.074 0.011 -0.180 -0.116 0.041 0.070 0.045 -0.006 + -0.086 -0.034 0.132 0.148 0.054 0.236 0.162 -0.176 -0.054 0.048 + 0.046 -0.006 0.011 -0.082 0.066 0.003 -0.017 0.007 0.077 -0.037 + -0.162 -0.283 -0.116 0.127 -0.137 -0.075 0.126 -0.322 -0.145 -0.359 + -0.222 -0.011 -0.300 -0.366 -0.345 0.147 -0.144 -0.135 -0.438 -0.182 + -0.064 0.010 -0.292 -0.165 -0.344 0.019 -0.099 -0.089 -0.090 -0.546 + -0.111 -0.121 -0.113 -0.214 -0.053 -0.304 -0.300 -0.302 -0.139 -0.288 + -0.570 -0.275 -0.170 0.006 -0.105 -0.225 -0.200 0.031 -0.116 -0.128 + 0.032 -0.101 -0.071 -0.382 0.016 -0.095 0.054 -0.132 -0.388 -0.012 + + 537 iasi616_metop-a 3263 0.805941E-01 + -0.211 -0.250 -0.406 -0.189 -0.174 -0.266 -0.193 -0.154 -0.103 -0.344 + -0.274 -0.280 -0.048 -0.008 -0.137 0.120 -0.011 -0.297 -0.212 -0.126 + -0.120 -0.178 -0.150 -0.231 -0.107 -0.062 -0.070 -0.074 -0.015 -0.076 + -0.514 -0.777 -0.888 -0.660 -0.630 -0.442 -0.529 -0.998 -0.528 -0.699 + -0.552 -1.066 -0.717 -0.540 -0.559 -0.319 -0.455 -0.842 -0.762 -0.597 + -0.728 -0.359 -0.785 -0.595 -0.901 -0.373 -0.697 -0.753 -0.281 -0.850 + -0.453 -0.486 -0.434 -0.557 -0.452 -0.703 -0.649 -0.948 -0.575 -0.796 + -0.917 -0.565 -1.007 -0.569 -0.742 -0.783 -0.352 -0.636 -0.933 -0.419 + -0.534 -0.482 -0.458 -0.923 -0.445 -0.571 -0.279 -0.615 -0.608 -0.683 + + 538 iasi616_metop-a 3281 0.563473E-01 + 0.171 0.173 0.131 0.197 -0.022 -0.000 -0.005 0.093 -0.041 -0.168 + -0.151 -0.136 -0.153 0.102 -0.207 0.038 -0.126 -0.363 -0.193 0.032 + -0.231 -0.125 -0.075 -0.076 -0.169 -0.115 -0.294 -0.136 -0.108 -0.317 + 0.073 0.101 0.068 0.052 0.147 0.276 0.079 -0.145 0.024 0.019 + -0.022 0.255 -0.033 0.114 0.103 0.251 -0.199 0.065 0.026 -0.023 + 0.046 0.337 0.149 -0.060 -0.079 0.155 0.069 -0.170 0.320 0.102 + 0.007 -0.097 0.195 -0.081 0.013 -0.098 0.050 -0.031 -0.064 0.030 + 0.040 0.128 0.263 0.133 0.047 0.004 0.140 0.173 0.036 0.027 + 0.256 -0.018 0.258 0.126 0.246 0.153 0.207 0.149 0.081 0.206 + + 539 iasi616_metop-a 3295 0.737308E-01 + 0.107 -0.104 -0.090 0.047 0.191 0.056 0.169 0.175 0.167 0.080 + 0.040 0.073 0.086 0.348 0.192 0.294 0.170 0.118 0.237 0.110 + 0.220 0.192 0.241 0.193 0.278 0.367 0.321 0.311 0.297 0.369 + -0.468 -0.593 -0.714 -0.492 -0.354 -0.188 -0.376 -0.725 -0.385 -0.522 + -0.334 -0.802 -0.540 -0.207 -0.292 -0.082 -0.149 -0.694 -0.518 -0.413 + -0.556 -0.267 -0.590 -0.248 -0.585 0.007 -0.584 -0.393 0.051 -0.488 + -0.265 -0.089 -0.265 -0.264 -0.295 -0.472 -0.483 -0.621 -0.282 -0.559 + -0.637 -0.367 -0.627 -0.324 -0.380 -0.606 -0.278 -0.374 -0.793 -0.253 + -0.392 -0.428 -0.273 -0.652 -0.333 -0.509 -0.151 -0.348 -0.428 -0.581 + + 540 iasi616_metop-a 3303 0.841852E-01 + -0.318 -0.106 -0.431 -0.389 -0.187 -0.242 -0.406 -0.150 -0.164 -0.493 + -0.420 -0.516 -0.326 -0.082 -0.384 -0.216 -0.148 -0.546 -0.159 -0.157 + -0.384 -0.271 -0.163 -0.176 -0.241 -0.167 -0.306 -0.131 -0.173 -0.228 + -0.482 -0.681 -0.741 -0.401 -0.628 -0.470 -0.418 -0.838 -0.588 -0.666 + -0.427 -0.950 -0.578 -0.526 -0.546 -0.130 -0.429 -0.671 -0.749 -0.439 + -0.504 -0.324 -0.796 -0.656 -0.677 -0.482 -0.561 -0.567 -0.356 -0.745 + -0.485 -0.445 -0.378 -0.473 -0.320 -0.641 -0.586 -0.922 -0.509 -0.766 + -1.003 -0.382 -0.782 -0.465 -0.699 -0.687 -0.277 -0.616 -0.793 -0.225 + -0.467 -0.546 -0.416 -0.822 -0.287 -0.578 -0.165 -0.517 -0.594 -0.529 + + 541 iasi616_metop-a 3309 0.546380E-01 + 0.280 0.241 0.351 0.335 0.121 0.126 0.160 0.253 0.161 -0.050 + 0.050 -0.006 -0.040 0.226 -0.066 0.147 0.079 -0.261 -0.079 0.172 + -0.050 0.031 0.050 0.045 -0.033 -0.063 -0.130 -0.053 -0.011 -0.165 + 0.310 0.290 0.495 0.311 0.363 0.437 0.229 0.095 0.297 0.236 + 0.205 0.535 0.282 0.250 0.342 0.411 0.089 0.282 0.392 0.440 + 0.292 0.548 0.491 0.216 0.217 0.370 0.339 0.109 0.629 0.391 + 0.175 0.220 0.460 0.168 0.207 0.210 0.290 0.252 0.140 0.352 + 0.374 0.311 0.546 0.439 0.397 0.265 0.428 0.488 0.346 0.288 + 0.547 0.249 0.530 0.300 0.459 0.408 0.397 0.394 0.347 0.489 + + 542 iasi616_metop-a 3312 0.891619E-01 + 0.203 0.109 0.045 0.105 0.138 0.210 0.150 0.333 0.231 0.308 + 0.308 0.207 0.285 0.448 0.322 0.372 0.279 0.194 0.359 0.285 + 0.433 0.349 0.313 0.306 0.432 0.501 0.476 0.458 0.447 0.511 + -0.319 -0.473 -0.341 0.011 -0.499 -0.352 -0.165 -0.538 -0.468 -0.524 + -0.477 -0.223 -0.466 -0.588 -0.489 -0.138 -0.325 -0.289 -0.642 -0.448 + -0.276 -0.312 -0.538 -0.374 -0.647 -0.206 -0.258 -0.406 -0.225 -0.735 + -0.269 -0.389 -0.283 -0.397 -0.264 -0.657 -0.547 -0.537 -0.409 -0.472 + -0.772 -0.469 -0.377 -0.273 -0.210 -0.400 -0.470 -0.232 -0.336 -0.314 + -0.194 -0.327 -0.374 -0.531 -0.271 -0.338 -0.117 -0.364 -0.632 -0.320 + + 543 iasi616_metop-a 3322 0.852203E-01 + -0.085 -0.117 -0.206 -0.130 -0.147 -0.150 -0.100 -0.021 -0.059 -0.272 + -0.215 -0.241 -0.013 -0.008 -0.127 0.081 -0.021 -0.339 -0.269 -0.156 + -0.188 -0.182 -0.177 -0.245 -0.148 -0.133 -0.221 -0.198 -0.074 -0.181 + -0.186 -0.359 -0.384 -0.068 -0.353 -0.169 -0.043 -0.451 -0.234 -0.336 + -0.084 -0.628 -0.215 -0.167 -0.193 0.231 -0.075 -0.317 -0.394 -0.045 + -0.213 0.047 -0.451 -0.207 -0.252 -0.192 -0.148 -0.196 -0.015 -0.462 + -0.107 -0.060 -0.043 -0.093 -0.094 -0.275 -0.211 -0.632 -0.032 -0.329 + -0.733 -0.147 -0.495 -0.035 -0.415 -0.348 0.051 -0.266 -0.459 0.171 + -0.082 -0.185 -0.150 -0.506 0.022 -0.234 0.126 -0.195 -0.296 -0.179 + + 544 iasi616_metop-a 3326 0.671287E-01 + 0.172 0.092 0.155 0.184 -0.016 0.024 0.035 0.190 0.076 -0.069 + 0.067 -0.059 0.017 0.244 -0.033 0.208 0.106 -0.197 0.002 0.237 + -0.051 0.132 0.145 0.103 0.146 0.083 0.128 0.187 0.215 0.016 + -0.060 -0.016 -0.004 0.070 0.062 0.123 0.106 -0.212 -0.055 -0.014 + 0.036 0.165 0.033 -0.056 -0.082 0.139 -0.124 0.023 -0.069 -0.016 + -0.016 0.242 0.039 -0.123 -0.079 0.137 -0.029 -0.130 0.319 -0.006 + 0.002 -0.046 0.138 -0.168 0.084 -0.129 -0.072 -0.006 -0.078 -0.054 + -0.113 0.076 0.136 0.101 -0.036 -0.016 0.097 0.169 0.059 -0.058 + 0.264 -0.017 0.270 0.005 0.092 0.238 0.134 0.070 0.058 0.182 + + 545 iasi616_metop-a 3354 0.698810E-01 + 0.595 0.288 0.437 0.507 0.572 0.408 0.442 0.375 0.370 0.347 + 0.285 0.309 0.410 0.549 0.354 0.462 0.372 0.228 0.399 0.295 + 0.388 0.286 0.345 0.264 0.353 0.416 0.291 0.277 0.353 0.382 + 0.531 0.418 0.189 0.519 0.599 0.723 0.424 0.456 0.696 0.472 + 0.615 0.308 0.458 0.511 0.760 0.809 0.828 0.391 0.493 0.623 + 0.335 0.567 0.413 0.685 0.283 0.816 0.301 0.521 0.868 0.325 + 0.614 0.660 0.593 0.700 0.723 0.327 0.485 0.281 0.711 0.320 + 0.345 0.625 0.513 0.687 0.640 0.230 0.578 0.322 0.234 0.672 + 0.517 0.361 0.669 0.299 0.507 0.413 0.774 0.658 0.413 0.428 + + 546 iasi616_metop-a 3366 0.866489E-01 + 0.200 0.420 0.055 0.067 0.229 0.311 0.141 0.453 0.385 0.119 + 0.165 0.088 0.271 0.447 0.263 0.485 0.542 0.178 0.463 0.527 + 0.323 0.448 0.525 0.566 0.553 0.637 0.579 0.752 0.641 0.632 + -0.361 -0.505 -0.521 -0.126 -0.364 -0.340 -0.259 -0.635 -0.516 -0.473 + -0.249 -0.636 -0.248 -0.291 -0.326 -0.062 -0.305 -0.372 -0.497 -0.266 + -0.331 -0.091 -0.611 -0.381 -0.503 -0.348 -0.166 -0.391 -0.086 -0.629 + -0.296 -0.222 -0.111 -0.255 -0.127 -0.459 -0.346 -0.561 -0.308 -0.488 + -0.779 -0.318 -0.600 -0.233 -0.360 -0.448 -0.141 -0.352 -0.442 -0.027 + -0.295 -0.332 -0.243 -0.564 -0.191 -0.369 -0.020 -0.347 -0.489 -0.349 + + 547 iasi616_metop-a 3375 0.865836E-01 + -0.248 -0.109 -0.404 -0.420 -0.297 -0.248 -0.282 -0.145 -0.138 -0.386 + -0.304 -0.426 -0.210 -0.096 -0.261 -0.051 -0.109 -0.439 -0.335 -0.129 + -0.221 -0.175 -0.081 -0.311 -0.166 -0.145 -0.142 -0.122 -0.060 -0.200 + -0.518 -0.695 -0.731 -0.221 -0.656 -0.546 -0.395 -0.798 -0.530 -0.641 + -0.373 -0.910 -0.536 -0.490 -0.527 -0.143 -0.453 -0.586 -0.680 -0.378 + -0.474 -0.213 -0.750 -0.553 -0.582 -0.596 -0.451 -0.461 -0.305 -0.785 + -0.491 -0.368 -0.294 -0.340 -0.273 -0.579 -0.591 -0.870 -0.475 -0.649 + -0.912 -0.437 -0.714 -0.417 -0.625 -0.675 -0.283 -0.546 -0.716 -0.167 + -0.559 -0.474 -0.362 -0.784 -0.373 -0.500 -0.213 -0.638 -0.605 -0.453 + + 548 iasi616_metop-a 3378 0.839071E-01 + 0.029 0.094 0.088 -0.061 -0.216 -0.107 -0.115 0.011 -0.024 -0.176 + -0.172 -0.182 -0.098 0.097 -0.113 -0.024 -0.017 -0.398 -0.225 -0.044 + -0.203 -0.064 -0.050 -0.184 -0.166 -0.150 -0.119 -0.146 -0.058 -0.212 + 0.059 -0.099 0.037 0.297 -0.011 0.070 0.263 -0.027 0.001 -0.174 + -0.108 0.207 -0.059 -0.195 -0.091 0.283 0.059 0.123 -0.131 0.063 + 0.141 0.118 -0.064 0.032 -0.210 0.133 0.214 -0.076 0.210 -0.297 + 0.037 0.000 0.064 -0.088 0.120 -0.207 0.013 -0.145 0.040 -0.044 + -0.303 -0.031 -0.004 0.169 0.154 -0.013 -0.008 0.170 0.050 -0.023 + 0.184 0.106 0.156 -0.189 0.115 0.086 0.224 0.066 -0.216 0.200 + + 549 iasi616_metop-a 3411 0.888569E-01 + 0.021 -0.064 -0.141 -0.109 -0.127 -0.033 0.036 0.116 0.061 -0.021 + 0.020 -0.011 0.146 0.137 0.157 0.304 0.237 -0.074 -0.002 0.102 + 0.152 0.090 0.127 0.063 0.163 0.207 0.160 0.209 0.244 0.178 + -0.432 -0.353 -0.609 0.029 -0.404 -0.281 -0.120 -0.665 -0.440 -0.555 + -0.283 -0.585 -0.328 -0.434 -0.379 -0.080 -0.276 -0.321 -0.508 -0.259 + -0.283 -0.170 -0.517 -0.374 -0.460 -0.240 -0.081 -0.347 -0.232 -0.753 + -0.363 -0.289 -0.085 -0.181 -0.020 -0.394 -0.529 -0.619 -0.167 -0.544 + -0.857 -0.383 -0.512 -0.236 -0.420 -0.395 -0.171 -0.270 -0.402 -0.041 + -0.320 -0.316 -0.207 -0.546 -0.136 -0.308 -0.015 -0.287 -0.488 -0.237 + + 550 iasi616_metop-a 3416 0.539682E-01 + 0.285 0.282 0.315 0.360 0.078 0.136 0.202 0.211 0.203 -0.018 + 0.085 0.062 0.157 0.262 0.020 0.236 0.127 -0.132 -0.110 0.231 + -0.004 0.097 0.078 -0.051 0.022 0.019 -0.006 -0.033 0.156 -0.088 + 0.158 0.098 0.229 0.203 0.314 0.273 0.198 0.007 0.103 0.042 + 0.109 0.322 0.065 0.136 0.169 0.342 -0.054 0.142 0.159 0.219 + 0.089 0.489 0.167 0.003 0.069 0.278 0.131 -0.045 0.468 0.092 + 0.132 0.071 0.260 0.020 0.146 0.075 0.105 -0.001 -0.002 0.210 + 0.170 0.143 0.351 0.268 0.077 0.074 0.163 0.392 0.177 0.088 + 0.541 0.140 0.299 0.157 0.334 0.339 0.243 0.264 0.245 0.359 + + 551 iasi616_metop-a 3432 0.841962E-01 + 0.197 0.083 0.106 0.083 0.214 0.190 0.158 0.229 0.285 0.194 + 0.240 0.156 0.216 0.386 0.341 0.413 0.317 0.109 0.354 0.215 + 0.358 0.332 0.359 0.297 0.367 0.434 0.452 0.408 0.410 0.447 + -0.225 -0.487 -0.475 -0.150 -0.430 -0.219 -0.138 -0.622 -0.320 -0.489 + -0.164 -0.745 -0.278 -0.269 -0.223 0.068 -0.178 -0.437 -0.564 -0.175 + -0.353 -0.047 -0.504 -0.372 -0.400 -0.289 -0.268 -0.319 -0.037 -0.544 + -0.318 -0.183 -0.111 -0.178 -0.084 -0.328 -0.353 -0.647 -0.204 -0.374 + -0.847 -0.128 -0.635 -0.225 -0.451 -0.468 -0.061 -0.324 -0.649 0.005 + -0.166 -0.254 -0.165 -0.570 -0.144 -0.338 0.008 -0.219 -0.378 -0.294 + + 552 iasi616_metop-a 3438 0.894349E-01 + -0.186 -0.134 -0.175 -0.322 -0.295 -0.204 -0.174 -0.085 -0.097 -0.270 + -0.184 -0.300 -0.191 -0.043 -0.216 -0.067 -0.098 -0.345 -0.166 -0.047 + -0.169 -0.056 -0.011 -0.189 -0.051 -0.082 -0.072 -0.010 0.010 -0.172 + -0.465 -0.341 -0.586 0.067 -0.484 -0.297 -0.067 -0.628 -0.479 -0.580 + -0.340 -0.422 -0.232 -0.483 -0.493 -0.075 -0.239 -0.314 -0.504 -0.240 + -0.228 -0.169 -0.457 -0.351 -0.605 -0.170 -0.118 -0.342 -0.270 -0.799 + -0.394 -0.329 -0.083 -0.404 -0.083 -0.494 -0.457 -0.687 -0.325 -0.479 + -0.945 -0.413 -0.406 -0.182 -0.315 -0.388 -0.295 -0.252 -0.298 -0.108 + -0.313 -0.367 -0.208 -0.486 -0.228 -0.285 -0.028 -0.330 -0.717 -0.292 + + 553 iasi616_metop-a 3440 0.885365E-01 + -0.193 -0.284 -0.339 -0.367 -0.333 -0.333 -0.285 -0.208 -0.200 -0.351 + -0.271 -0.347 -0.193 -0.090 -0.324 -0.071 -0.084 -0.479 -0.331 -0.141 + -0.250 -0.184 -0.177 -0.318 -0.169 -0.204 -0.146 -0.174 -0.079 -0.232 + -0.324 -0.558 -0.397 -0.072 -0.447 -0.443 -0.121 -0.454 -0.509 -0.644 + -0.599 -0.214 -0.361 -0.599 -0.504 -0.200 -0.301 -0.398 -0.663 -0.389 + -0.238 -0.151 -0.539 -0.408 -0.585 -0.224 -0.323 -0.456 -0.213 -0.777 + -0.360 -0.378 -0.234 -0.535 -0.285 -0.489 -0.520 -0.620 -0.356 -0.502 + -0.843 -0.534 -0.427 -0.250 -0.259 -0.555 -0.445 -0.149 -0.388 -0.291 + -0.187 -0.433 -0.355 -0.564 -0.298 -0.348 -0.101 -0.433 -0.696 -0.292 + + 554 iasi616_metop-a 3442 0.659320E-01 + -0.433 -0.535 -0.531 -0.455 -0.531 -0.584 -0.456 -0.348 -0.411 -0.597 + -0.436 -0.388 -0.293 -0.363 -0.443 -0.092 -0.227 -0.567 -0.462 -0.237 + -0.313 -0.390 -0.325 -0.376 -0.309 -0.320 -0.283 -0.281 -0.195 -0.331 + -0.584 -0.720 -0.720 -0.399 -0.525 -0.552 -0.601 -0.717 -0.691 -0.626 + -0.777 -0.417 -0.626 -0.585 -0.584 -0.392 -0.663 -0.632 -0.773 -0.536 + -0.588 -0.374 -0.657 -0.717 -0.741 -0.492 -0.639 -0.662 -0.210 -0.561 + -0.629 -0.715 -0.422 -0.755 -0.696 -0.567 -0.480 -0.672 -0.805 -0.602 + -0.625 -0.449 -0.502 -0.457 -0.530 -0.641 -0.476 -0.388 -0.508 -0.559 + -0.384 -0.620 -0.254 -0.539 -0.376 -0.383 -0.397 -0.583 -0.477 -0.388 + + 555 iasi616_metop-a 3444 0.445541E-01 + -0.093 -0.214 -0.124 -0.028 -0.105 -0.262 -0.172 -0.161 -0.269 -0.272 + -0.255 -0.241 -0.210 -0.177 -0.209 -0.184 -0.219 -0.396 -0.284 -0.205 + -0.219 -0.275 -0.279 -0.276 -0.282 -0.315 -0.352 -0.324 -0.255 -0.338 + -0.190 -0.179 -0.041 -0.159 -0.135 0.049 -0.162 -0.254 -0.201 -0.175 + -0.118 -0.089 -0.217 -0.120 -0.030 -0.054 -0.261 -0.118 -0.062 0.021 + -0.001 0.024 -0.007 -0.230 -0.225 -0.111 -0.139 -0.175 0.063 -0.024 + -0.168 -0.237 0.049 -0.202 -0.227 -0.239 -0.073 -0.082 -0.126 -0.108 + 0.068 -0.163 0.139 0.060 -0.100 -0.228 0.062 -0.028 -0.013 -0.055 + 0.202 -0.175 0.051 -0.092 -0.046 -0.028 -0.086 -0.179 -0.060 -0.007 + + 556 iasi616_metop-a 3446 0.760885E-01 + -0.273 -0.362 -0.324 -0.305 -0.370 -0.334 -0.313 -0.104 -0.261 -0.205 + -0.177 -0.181 -0.256 -0.025 -0.230 -0.151 -0.192 -0.280 -0.127 -0.197 + -0.160 -0.099 -0.142 -0.085 -0.061 0.055 -0.020 -0.062 -0.076 0.011 + -0.622 -0.660 -0.570 -0.342 -0.626 -0.564 -0.445 -0.700 -0.728 -0.605 + -0.712 -0.334 -0.551 -0.625 -0.502 -0.374 -0.710 -0.651 -0.802 -0.414 + -0.567 -0.358 -0.603 -0.702 -0.771 -0.445 -0.677 -0.606 -0.110 -0.562 + -0.574 -0.514 -0.515 -0.730 -0.513 -0.609 -0.560 -0.617 -0.740 -0.453 + -0.674 -0.463 -0.542 -0.352 -0.542 -0.677 -0.283 -0.297 -0.501 -0.679 + -0.402 -0.521 -0.284 -0.497 -0.361 -0.299 -0.344 -0.457 -0.585 -0.281 + + 557 iasi616_metop-a 3448 0.507029E-01 + -0.066 -0.297 -0.118 0.070 -0.214 -0.218 -0.187 -0.095 -0.234 -0.289 + -0.246 -0.215 -0.115 -0.120 -0.186 -0.105 -0.286 -0.399 -0.303 -0.181 + -0.142 -0.242 -0.237 -0.218 -0.229 -0.293 -0.396 -0.256 -0.229 -0.305 + -0.075 -0.170 -0.069 -0.162 -0.114 -0.053 -0.100 -0.277 -0.182 -0.127 + -0.035 -0.069 -0.050 -0.210 -0.116 0.004 -0.248 -0.284 -0.222 0.040 + 0.025 0.120 0.023 -0.229 -0.066 -0.147 -0.293 -0.127 -0.128 0.039 + -0.164 -0.115 -0.013 -0.315 -0.189 -0.072 -0.057 -0.169 -0.209 0.010 + 0.145 -0.097 0.169 0.147 -0.051 -0.206 0.167 0.004 -0.034 -0.039 + 0.154 -0.088 0.071 -0.002 0.031 0.078 -0.026 -0.044 -0.059 0.181 + + 558 iasi616_metop-a 3450 0.492039E-01 + 0.498 0.370 0.494 0.476 0.337 0.271 0.291 0.323 0.247 0.266 + 0.204 0.305 0.218 0.350 0.231 0.313 0.181 0.084 0.259 0.273 + 0.220 0.238 0.188 0.288 0.201 0.198 0.174 0.175 0.146 0.217 + 0.371 0.409 0.460 0.372 0.448 0.574 0.429 0.385 0.331 0.308 + 0.464 0.514 0.283 0.298 0.471 0.467 0.167 0.384 0.416 0.436 + 0.541 0.554 0.666 0.325 0.420 0.446 0.445 0.302 0.703 0.478 + 0.405 0.417 0.580 0.274 0.404 0.339 0.380 0.358 0.232 0.484 + 0.547 0.445 0.655 0.589 0.414 0.324 0.565 0.565 0.489 0.461 + 0.611 0.375 0.555 0.412 0.466 0.524 0.455 0.464 0.405 0.659 + + 559 iasi616_metop-a 3452 0.808219E-01 + 0.473 0.346 0.336 0.325 0.296 0.243 0.341 0.472 0.301 0.426 + 0.467 0.433 0.352 0.619 0.468 0.507 0.447 0.328 0.484 0.497 + 0.496 0.488 0.465 0.534 0.508 0.600 0.625 0.574 0.540 0.649 + -0.025 -0.020 0.018 0.225 -0.005 -0.008 0.167 -0.130 -0.126 -0.145 + -0.042 0.200 -0.165 -0.126 0.061 0.189 -0.066 -0.050 -0.076 -0.027 + 0.008 0.141 0.046 -0.105 -0.168 0.158 -0.027 -0.042 0.511 -0.171 + 0.054 0.003 0.035 -0.090 -0.001 -0.169 0.039 -0.052 -0.182 -0.048 + -0.237 0.017 0.124 0.173 -0.029 0.014 0.177 0.307 0.132 -0.094 + 0.255 0.090 0.217 -0.018 0.210 0.203 0.158 0.174 -0.062 0.258 + + 560 iasi616_metop-a 3454 0.791577E-01 + 0.254 0.036 0.034 0.111 -0.013 0.024 0.146 0.170 0.137 0.038 + 0.130 0.109 0.222 0.371 0.160 0.325 0.254 -0.046 0.119 0.156 + 0.178 0.160 0.121 0.140 0.175 0.185 0.159 0.221 0.278 0.243 + -0.043 -0.232 -0.118 0.175 -0.007 -0.093 0.161 -0.177 -0.118 -0.248 + -0.135 0.096 -0.125 -0.237 -0.164 0.155 -0.138 -0.090 -0.255 -0.035 + -0.046 0.029 -0.164 -0.143 -0.235 0.087 -0.079 -0.036 0.301 -0.301 + -0.044 -0.079 -0.024 -0.193 -0.011 -0.225 -0.046 -0.173 -0.019 -0.109 + -0.296 -0.061 -0.067 0.079 -0.025 -0.080 0.054 0.268 0.032 -0.135 + 0.194 0.033 0.015 -0.151 0.084 0.051 0.098 0.017 -0.105 0.036 + + 561 iasi616_metop-a 3458 0.885923E-01 + 0.322 0.190 0.225 0.229 0.133 0.165 0.284 0.278 0.242 0.253 + 0.194 0.196 0.283 0.371 0.298 0.370 0.353 0.019 0.186 0.199 + 0.254 0.155 0.189 0.119 0.226 0.207 0.155 0.180 0.268 0.191 + 0.205 0.225 0.229 0.576 0.205 0.307 0.550 0.092 0.190 0.196 + 0.271 0.276 0.279 0.157 0.207 0.568 0.332 0.334 0.159 0.367 + 0.345 0.607 0.202 0.302 0.100 0.480 0.491 0.328 0.511 -0.142 + 0.248 0.195 0.477 0.187 0.470 0.074 0.266 0.066 0.253 0.200 + -0.170 0.095 0.236 0.485 0.281 0.269 0.304 0.492 0.291 0.293 + 0.335 0.395 0.352 0.157 0.430 0.318 0.558 0.312 -0.060 0.439 + + 562 iasi616_metop-a 3467 0.868875E-01 + 0.416 0.421 0.277 0.318 0.394 0.354 0.382 0.441 0.441 0.225 + 0.278 0.263 0.471 0.477 0.322 0.641 0.579 0.185 0.315 0.403 + 0.365 0.428 0.404 0.362 0.435 0.434 0.423 0.424 0.520 0.398 + 0.154 0.037 -0.032 0.420 -0.063 0.202 0.315 -0.172 0.103 0.016 + 0.347 -0.204 0.103 0.225 0.191 0.575 0.242 0.100 0.030 0.319 + 0.189 0.475 -0.030 0.194 0.095 0.118 0.233 0.227 0.485 -0.129 + 0.235 0.298 0.424 0.287 0.408 0.131 0.042 -0.173 0.222 0.058 + -0.222 0.216 -0.135 0.289 -0.009 0.016 0.421 0.164 -0.071 0.487 + 0.229 0.235 0.244 -0.121 0.249 0.099 0.497 0.082 0.082 0.120 + + 563 iasi616_metop-a 3476 0.826516E-01 + 0.268 0.350 0.233 0.197 0.270 0.313 0.254 0.327 0.461 0.061 + 0.221 0.058 0.300 0.435 0.213 0.478 0.368 0.089 0.314 0.389 + 0.269 0.350 0.443 0.304 0.333 0.442 0.409 0.415 0.468 0.342 + 0.121 -0.239 -0.238 0.120 -0.040 0.175 0.194 -0.232 0.118 -0.121 + 0.200 -0.457 0.058 0.043 0.124 0.454 0.169 -0.103 -0.050 0.188 + 0.043 0.394 -0.092 0.074 -0.129 0.283 0.060 -0.117 0.301 -0.245 + 0.170 0.200 0.213 0.156 0.215 -0.053 0.040 -0.374 0.178 -0.143 + -0.303 0.106 -0.243 0.143 -0.129 -0.159 0.342 -0.014 -0.235 0.360 + 0.105 0.121 0.176 -0.245 0.280 0.025 0.415 0.104 0.072 0.067 + + 564 iasi616_metop-a 3484 0.894477E-01 + 0.453 0.472 0.383 0.336 0.294 0.409 0.359 0.435 0.457 0.295 + 0.289 0.186 0.257 0.546 0.305 0.405 0.481 0.083 0.321 0.455 + 0.283 0.404 0.446 0.337 0.410 0.418 0.271 0.398 0.459 0.307 + 0.329 0.359 0.270 0.736 0.378 0.513 0.702 0.185 0.290 0.202 + 0.437 0.341 0.463 0.364 0.295 0.656 0.425 0.414 0.285 0.495 + 0.479 0.600 0.189 0.383 0.208 0.498 0.596 0.339 0.587 -0.056 + 0.384 0.538 0.657 0.399 0.648 0.284 0.316 0.129 0.400 0.318 + -0.009 0.299 0.382 0.577 0.389 0.343 0.507 0.467 0.392 0.636 + 0.466 0.458 0.453 0.247 0.569 0.354 0.702 0.464 0.107 0.438 + + 565 iasi616_metop-a 3491 0.560640E-01 + 0.488 0.440 0.420 0.459 0.408 0.219 0.383 0.449 0.469 0.228 + 0.340 0.372 0.544 0.520 0.293 0.652 0.565 0.211 0.276 0.662 + 0.444 0.480 0.490 0.428 0.512 0.439 0.590 0.567 0.663 0.445 + 0.102 0.124 0.262 0.149 0.238 0.392 0.213 -0.010 0.184 0.035 + 0.090 0.224 0.029 0.085 0.321 0.274 -0.112 0.231 0.060 0.232 + 0.061 0.365 0.295 -0.015 0.131 0.178 0.183 0.022 0.512 0.175 + 0.255 0.114 0.389 0.012 0.108 0.067 0.154 0.088 0.025 0.196 + 0.196 0.233 0.343 0.259 0.181 0.101 0.289 0.346 0.214 0.152 + 0.508 0.089 0.356 0.213 0.266 0.256 0.202 0.185 0.300 0.302 + + 566 iasi616_metop-a 3497 0.880671E-01 + 0.361 0.202 0.246 0.268 0.263 0.341 0.338 0.373 0.280 0.333 + 0.361 0.213 0.281 0.506 0.375 0.401 0.314 0.256 0.431 0.212 + 0.391 0.333 0.416 0.361 0.412 0.442 0.410 0.386 0.391 0.407 + -0.002 -0.028 -0.087 0.263 -0.139 0.011 0.226 -0.288 -0.026 -0.172 + 0.103 -0.279 0.029 -0.061 0.030 0.259 0.009 0.024 -0.252 0.135 + -0.033 0.330 -0.271 -0.028 -0.109 0.082 0.207 0.028 0.121 -0.319 + 0.012 0.088 0.253 0.097 0.260 -0.080 -0.176 -0.289 0.130 -0.171 + -0.444 0.107 -0.197 0.057 -0.137 -0.134 0.181 0.018 -0.062 0.278 + 0.033 0.044 0.112 -0.216 0.186 0.002 0.294 -0.081 -0.181 -0.001 + + 567 iasi616_metop-a 3499 0.894047E-01 + 0.224 0.244 0.174 0.060 0.037 0.179 0.202 0.216 0.223 0.080 + 0.137 0.043 0.236 0.284 0.088 0.313 0.304 -0.015 0.118 0.291 + 0.129 0.248 0.234 0.088 0.239 0.265 0.285 0.290 0.371 0.179 + -0.043 0.023 -0.112 0.442 -0.009 0.105 0.251 -0.214 -0.133 -0.066 + 0.069 0.029 0.029 -0.085 -0.060 0.309 0.125 0.154 -0.040 0.166 + 0.131 0.269 -0.135 -0.046 -0.215 0.239 0.316 0.023 0.234 -0.401 + -0.018 0.052 0.237 0.014 0.318 -0.098 0.017 -0.182 0.007 -0.074 + -0.415 -0.098 -0.062 0.229 0.052 -0.062 0.050 0.197 0.109 0.229 + 0.114 0.102 0.098 -0.118 0.151 0.083 0.361 0.088 -0.295 0.136 + + 568 iasi616_metop-a 3504 0.801436E-01 + 0.121 0.058 0.041 0.096 0.004 -0.032 0.103 0.115 0.133 -0.029 + 0.054 0.054 0.213 0.286 0.041 0.343 0.264 -0.046 0.036 0.202 + 0.081 0.259 0.201 0.109 0.242 0.243 0.286 0.238 0.337 0.188 + 0.181 -0.009 0.050 0.461 0.007 0.034 0.234 0.014 0.006 -0.071 + -0.077 0.355 0.054 -0.087 -0.001 0.325 0.022 -0.072 0.016 0.104 + 0.106 0.084 0.032 0.021 -0.070 0.290 0.081 -0.049 0.374 -0.119 + 0.127 0.005 0.125 -0.059 0.052 -0.024 0.098 -0.034 0.068 0.113 + -0.113 0.147 0.098 0.218 0.114 -0.065 0.075 0.317 0.150 0.016 + 0.258 0.192 0.226 0.028 0.292 0.246 0.231 0.068 -0.085 0.312 + + 569 iasi616_metop-a 3506 0.406966E-01 + 1.544 1.263 1.544 1.690 1.163 1.239 1.209 1.225 1.189 1.025 + 0.988 1.042 1.068 1.147 0.948 1.112 0.932 0.738 0.745 0.906 + 0.874 0.789 0.719 0.697 0.702 0.662 0.392 0.430 0.623 0.535 + 1.570 1.561 1.676 1.504 1.601 1.753 1.587 1.450 1.558 1.545 + 1.569 1.592 1.528 1.432 1.630 1.426 1.379 1.529 1.634 1.597 + 1.601 1.599 1.640 1.354 1.469 1.566 1.563 1.492 1.607 1.447 + 1.313 1.347 1.552 1.356 1.424 1.382 1.412 1.399 1.453 1.471 + 1.532 1.490 1.851 1.630 1.446 1.416 1.533 1.468 1.471 1.515 + 1.679 1.459 1.614 1.534 1.556 1.477 1.443 1.473 1.577 1.597 + + 570 iasi616_metop-a 3509 0.856369E-01 + 0.842 0.823 0.774 0.841 0.900 0.899 0.930 1.159 0.994 1.078 + 1.133 1.106 1.127 1.224 1.195 1.273 1.283 1.217 1.284 1.302 + 1.345 1.263 1.319 1.353 1.450 1.551 1.678 1.611 1.537 1.614 + -0.117 -0.215 -0.212 0.181 -0.105 -0.165 0.137 -0.262 -0.163 -0.357 + -0.373 -0.037 -0.184 -0.342 -0.173 0.039 -0.179 -0.294 -0.323 -0.127 + -0.124 -0.134 -0.267 -0.260 -0.434 0.071 -0.083 -0.132 0.079 -0.436 + -0.050 -0.216 -0.141 -0.302 -0.027 -0.322 -0.180 -0.247 -0.080 -0.095 + -0.382 -0.087 -0.165 -0.094 -0.075 -0.239 -0.190 0.094 -0.084 -0.140 + 0.101 -0.077 -0.025 -0.180 -0.052 -0.062 0.066 -0.121 -0.356 -0.094 + + 571 iasi616_metop-a 3518 0.887848E-01 + 0.122 -0.070 -0.076 -0.017 -0.024 -0.024 0.076 0.055 0.124 -0.023 + -0.099 -0.090 0.209 0.134 0.098 0.192 0.124 -0.147 -0.116 -0.037 + 0.026 -0.015 -0.076 -0.116 0.000 -0.023 -0.147 -0.023 0.030 -0.022 + -0.099 -0.066 -0.246 0.223 -0.154 0.025 0.256 -0.329 -0.201 -0.275 + 0.038 -0.226 -0.050 -0.060 -0.172 0.175 -0.028 -0.151 -0.279 0.028 + -0.030 0.171 -0.299 -0.106 -0.283 0.050 0.231 -0.119 0.078 -0.511 + -0.091 -0.051 0.223 -0.081 0.199 -0.071 -0.227 -0.435 0.058 -0.204 + -0.559 -0.154 -0.283 0.083 -0.080 -0.173 0.117 0.020 -0.111 0.184 + -0.011 -0.055 0.020 -0.246 0.084 -0.079 0.263 -0.024 -0.307 -0.076 + + 572 iasi616_metop-a 3527 0.887352E-01 + 0.303 0.233 0.232 0.127 0.146 0.172 0.207 0.271 0.280 0.061 + 0.140 0.050 0.238 0.265 0.103 0.344 0.307 -0.041 0.105 0.266 + 0.115 0.210 0.199 0.073 0.209 0.208 0.204 0.178 0.311 0.105 + 0.148 0.167 0.044 0.520 0.147 0.341 0.365 -0.093 0.109 0.053 + 0.334 -0.030 0.190 0.276 0.219 0.423 0.268 0.175 0.004 0.316 + 0.339 0.635 -0.055 0.205 0.089 0.334 0.470 0.206 0.434 -0.210 + 0.200 0.220 0.463 0.332 0.439 0.100 0.065 -0.126 0.321 0.151 + -0.245 0.279 0.088 0.334 0.086 0.190 0.402 0.284 0.093 0.424 + 0.252 0.194 0.280 0.085 0.398 0.136 0.509 0.184 0.043 0.183 + + 573 iasi616_metop-a 3555 0.687806E-01 + 0.072 0.011 0.015 0.051 -0.000 -0.034 0.066 0.140 0.138 -0.025 + 0.078 0.045 0.192 0.297 0.054 0.354 0.252 -0.080 0.057 0.295 + 0.151 0.283 0.285 0.197 0.272 0.309 0.352 0.359 0.472 0.250 + -0.189 -0.155 -0.184 0.079 -0.134 -0.075 -0.011 -0.286 -0.205 -0.171 + -0.241 0.113 -0.169 -0.193 -0.090 0.113 -0.296 -0.160 -0.215 -0.202 + -0.127 0.021 -0.112 -0.276 -0.275 0.093 -0.060 -0.249 0.313 -0.222 + -0.193 -0.230 0.029 -0.166 -0.060 -0.098 -0.100 -0.199 -0.330 0.003 + -0.296 0.001 -0.034 0.057 -0.122 -0.190 -0.027 0.183 -0.039 -0.115 + 0.120 -0.024 0.139 -0.100 0.050 0.017 0.009 -0.008 -0.074 0.120 + + 574 iasi616_metop-a 3575 0.662966E-01 + 0.026 -0.275 -0.167 -0.039 -0.122 -0.155 -0.104 0.027 -0.106 -0.016 + -0.118 0.011 0.004 0.149 -0.091 0.080 -0.156 -0.164 -0.017 -0.040 + 0.039 -0.011 -0.066 -0.009 0.050 0.018 -0.000 -0.008 0.054 0.008 + -0.190 -0.338 -0.446 -0.093 -0.171 -0.173 -0.074 -0.313 -0.200 -0.327 + -0.383 0.135 -0.252 -0.374 -0.242 0.002 -0.410 -0.259 -0.302 -0.126 + -0.120 -0.035 -0.036 -0.222 -0.160 -0.030 -0.229 -0.324 0.302 -0.216 + -0.194 -0.219 -0.065 -0.308 -0.053 -0.153 -0.145 -0.281 -0.228 -0.132 + -0.346 0.061 0.027 0.061 -0.202 -0.302 0.055 0.145 -0.124 -0.245 + -0.017 -0.171 0.105 -0.106 -0.044 0.122 0.013 -0.246 -0.130 0.060 + + 575 iasi616_metop-a 3577 0.333818E-01 + 0.474 0.292 0.468 0.560 0.420 0.323 0.401 0.420 0.251 0.276 + 0.241 0.255 0.251 0.293 0.268 0.273 0.065 0.120 0.148 0.223 + 0.186 0.218 0.117 0.191 0.208 0.108 0.084 0.146 0.150 0.098 + 0.318 0.429 0.555 0.278 0.390 0.687 0.368 0.254 0.429 0.459 + 0.365 0.360 0.273 0.395 0.620 0.499 0.265 0.278 0.548 0.500 + 0.537 0.367 0.596 0.274 0.329 0.322 0.353 0.295 0.556 0.612 + 0.232 0.262 0.560 0.257 0.343 0.342 0.331 0.274 0.230 0.381 + 0.433 0.380 0.716 0.569 0.319 0.295 0.354 0.336 0.350 0.372 + 0.494 0.329 0.328 0.327 0.308 0.480 0.278 0.258 0.296 0.453 + + 576 iasi616_metop-a 3580 0.713069E-01 + -0.220 -0.300 -0.378 -0.267 -0.186 -0.271 -0.264 -0.039 -0.076 -0.112 + -0.071 0.011 -0.011 0.083 0.058 0.083 0.011 -0.016 0.049 0.022 + 0.103 0.168 0.111 0.216 0.190 0.333 0.351 0.321 0.295 0.347 + -0.867 -0.957 -1.070 -0.750 -0.909 -0.897 -0.918 -1.162 -0.973 -1.087 + -1.010 -0.695 -0.925 -1.076 -0.846 -0.706 -1.131 -1.090 -1.039 -0.760 + -0.999 -0.839 -0.857 -0.981 -0.878 -0.833 -0.827 -0.996 -0.488 -0.771 + -0.962 -1.021 -0.607 -0.992 -0.918 -0.841 -0.897 -1.057 -1.152 -0.753 + -0.955 -0.619 -0.828 -0.548 -0.882 -0.978 -0.636 -0.630 -0.795 -0.923 + -0.716 -0.905 -0.493 -0.744 -0.602 -0.599 -0.638 -0.819 -0.792 -0.587 + + 577 iasi616_metop-a 3582 0.401593E-01 + -0.077 -0.196 -0.087 0.089 -0.227 -0.281 -0.178 -0.194 -0.342 -0.279 + -0.336 -0.342 -0.394 -0.284 -0.340 -0.202 -0.447 -0.506 -0.462 -0.356 + -0.438 -0.398 -0.503 -0.349 -0.391 -0.502 -0.590 -0.512 -0.520 -0.529 + -0.097 0.048 0.014 -0.105 0.034 0.157 -0.113 -0.242 -0.132 -0.027 + -0.062 0.086 -0.264 -0.098 -0.066 0.111 -0.230 -0.083 0.077 0.036 + 0.025 -0.029 0.175 -0.149 -0.089 0.014 0.069 -0.142 0.143 0.037 + -0.011 -0.129 0.286 -0.265 -0.154 -0.035 0.003 -0.115 -0.237 0.026 + 0.108 -0.100 0.198 0.137 -0.080 -0.095 0.086 0.110 0.153 -0.027 + 0.108 -0.038 0.115 0.027 -0.052 0.089 -0.087 0.025 -0.024 0.088 + + 578 iasi616_metop-a 3586 0.846345E-01 + 0.042 0.002 -0.020 -0.072 -0.147 -0.033 -0.007 0.055 -0.079 0.068 + 0.043 -0.024 -0.056 0.237 -0.008 0.035 0.004 -0.142 0.073 -0.053 + -0.024 0.100 -0.020 0.026 0.068 0.159 0.144 0.102 0.054 0.145 + -0.019 -0.108 -0.062 0.345 -0.048 -0.163 0.125 -0.229 -0.079 -0.244 + -0.307 0.122 -0.147 -0.216 0.018 0.061 -0.081 -0.120 -0.198 -0.005 + 0.001 -0.035 -0.125 -0.109 -0.181 0.060 -0.067 -0.104 0.224 -0.392 + -0.016 -0.085 0.013 -0.155 0.020 -0.147 -0.071 -0.149 -0.028 0.001 + -0.328 -0.109 -0.114 0.060 -0.018 -0.089 0.041 0.185 0.048 -0.061 + 0.233 0.063 0.151 -0.144 0.160 0.137 0.195 -0.034 -0.285 0.110 + + 579 iasi616_metop-a 3589 0.369951E-01 + 0.627 0.458 0.671 0.694 0.446 0.365 0.585 0.512 0.453 0.345 + 0.290 0.390 0.456 0.477 0.377 0.490 0.379 0.221 0.099 0.395 + 0.321 0.297 0.198 0.305 0.266 0.181 0.106 0.124 0.252 0.120 + 0.432 0.549 0.505 0.435 0.494 0.728 0.350 0.311 0.524 0.496 + 0.518 0.517 0.379 0.401 0.413 0.453 0.317 0.435 0.553 0.485 + 0.573 0.502 0.628 0.414 0.364 0.402 0.462 0.392 0.565 0.637 + 0.287 0.475 0.666 0.249 0.374 0.374 0.516 0.413 0.291 0.600 + 0.659 0.444 0.672 0.560 0.490 0.243 0.662 0.359 0.469 0.438 + 0.563 0.414 0.457 0.406 0.425 0.530 0.409 0.395 0.453 0.494 + + 580 iasi616_metop-a 3599 0.883654E-01 + 0.384 0.294 0.338 0.265 0.307 0.362 0.271 0.431 0.339 0.395 + 0.373 0.382 0.339 0.537 0.436 0.434 0.423 0.324 0.437 0.324 + 0.467 0.512 0.391 0.426 0.528 0.604 0.631 0.584 0.454 0.652 + -0.196 -0.203 -0.126 0.157 -0.171 -0.141 0.186 -0.272 -0.273 -0.270 + -0.090 0.013 -0.111 -0.298 -0.327 0.075 -0.019 -0.055 -0.309 -0.152 + 0.020 0.041 -0.130 -0.094 -0.281 0.027 0.065 -0.038 -0.052 -0.517 + -0.050 -0.084 0.077 -0.248 -0.014 -0.290 -0.181 -0.291 0.006 -0.230 + -0.536 -0.305 -0.200 0.042 -0.137 -0.164 -0.163 0.050 -0.066 -0.077 + 0.010 -0.058 -0.083 -0.360 -0.014 -0.060 0.150 -0.091 -0.353 -0.029 + + 581 iasi616_metop-a 3610 0.819586E-01 + -0.151 -0.114 -0.238 -0.161 -0.090 -0.154 -0.088 -0.080 0.011 -0.292 + -0.136 -0.205 0.056 0.043 -0.069 0.197 0.082 -0.257 -0.148 -0.068 + -0.091 -0.050 -0.042 -0.142 -0.046 -0.016 0.036 0.006 0.067 0.003 + -0.315 -0.580 -0.692 -0.289 -0.431 -0.373 -0.321 -0.697 -0.416 -0.524 + -0.280 -0.832 -0.466 -0.375 -0.364 -0.003 -0.305 -0.561 -0.599 -0.331 + -0.406 -0.162 -0.573 -0.443 -0.556 -0.204 -0.412 -0.579 -0.097 -0.645 + -0.319 -0.286 -0.274 -0.278 -0.244 -0.480 -0.439 -0.809 -0.310 -0.552 + -0.761 -0.318 -0.723 -0.321 -0.612 -0.542 -0.074 -0.427 -0.717 -0.163 + -0.292 -0.362 -0.259 -0.655 -0.216 -0.485 -0.054 -0.373 -0.392 -0.454 + + 582 iasi616_metop-a 3626 0.832163E-01 + -0.075 -0.074 -0.200 -0.164 -0.217 -0.094 -0.084 -0.121 -0.088 -0.370 + -0.288 -0.295 -0.280 0.014 -0.180 -0.066 -0.172 -0.387 -0.148 -0.092 + -0.265 -0.222 -0.054 -0.192 -0.060 -0.068 -0.171 -0.047 -0.044 -0.234 + -0.371 -0.384 -0.262 -0.035 -0.127 0.009 -0.256 -0.403 -0.036 -0.253 + 0.040 -0.348 -0.097 -0.011 -0.193 0.007 -0.014 -0.195 -0.266 -0.155 + -0.267 0.234 -0.162 -0.013 -0.277 -0.085 0.004 -0.276 0.080 -0.360 + -0.311 -0.192 0.101 0.176 -0.022 -0.195 -0.296 -0.525 0.015 -0.186 + -0.480 -0.284 -0.194 -0.062 -0.244 -0.287 0.086 -0.260 -0.416 0.242 + 0.067 -0.017 -0.156 -0.402 -0.094 -0.249 0.140 -0.120 -0.328 -0.157 + + 583 iasi616_metop-a 3638 0.566396E-01 + 0.499 0.379 0.429 0.469 0.353 0.407 0.310 0.412 0.295 0.188 + 0.280 0.237 0.199 0.400 0.261 0.249 0.207 0.077 0.117 0.352 + 0.122 0.247 0.245 0.137 0.204 0.151 0.166 0.233 0.261 0.145 + 0.417 0.319 0.415 0.504 0.373 0.529 0.453 0.326 0.378 0.373 + 0.402 0.512 0.259 0.375 0.468 0.413 0.189 0.476 0.328 0.425 + 0.429 0.620 0.623 0.296 0.265 0.389 0.534 0.295 0.834 0.518 + 0.368 0.354 0.526 0.198 0.333 0.526 0.385 0.313 0.479 0.496 + 0.362 0.501 0.595 0.584 0.380 0.300 0.500 0.492 0.427 0.376 + 0.601 0.285 0.686 0.364 0.608 0.469 0.513 0.484 0.486 0.597 + + 584 iasi616_metop-a 3646 0.885617E-01 + 0.423 0.253 0.245 0.221 0.221 0.357 0.362 0.377 0.388 0.435 + 0.401 0.321 0.384 0.548 0.452 0.500 0.453 0.306 0.439 0.396 + 0.506 0.487 0.461 0.413 0.477 0.593 0.527 0.528 0.502 0.623 + -0.209 -0.151 -0.228 0.164 -0.228 -0.094 0.207 -0.397 -0.321 -0.260 + -0.154 -0.159 -0.158 -0.214 -0.135 0.153 -0.154 0.022 -0.308 -0.003 + 0.059 0.006 -0.302 -0.138 -0.266 0.009 0.064 -0.060 -0.053 -0.616 + -0.168 -0.197 0.025 -0.203 0.108 -0.318 -0.234 -0.315 -0.177 -0.315 + -0.554 -0.224 -0.061 -0.006 -0.191 -0.195 -0.158 0.114 -0.066 -0.020 + 0.065 -0.124 -0.098 -0.226 0.091 -0.110 0.205 -0.145 -0.400 0.064 + + 585 iasi616_metop-a 3653 0.609031E-01 + -0.345 -0.316 -0.307 -0.218 -0.386 -0.417 -0.176 -0.232 -0.247 -0.484 + -0.404 -0.316 -0.086 -0.110 -0.287 0.058 -0.079 -0.324 -0.323 0.033 + -0.139 -0.103 -0.101 -0.170 -0.078 -0.123 0.002 -0.036 0.015 -0.113 + -0.523 -0.663 -0.409 -0.442 -0.431 -0.475 -0.490 -0.589 -0.440 -0.793 + -0.554 -0.332 -0.562 -0.563 -0.537 -0.302 -0.702 -0.553 -0.452 -0.284 + -0.431 -0.254 -0.303 -0.540 -0.430 -0.453 -0.538 -0.713 -0.238 -0.429 + -0.463 -0.519 -0.236 -0.574 -0.441 -0.378 -0.452 -0.505 -0.680 -0.345 + -0.228 -0.396 -0.338 -0.229 -0.326 -0.537 -0.294 -0.247 -0.345 -0.555 + -0.310 -0.470 -0.217 -0.340 -0.292 -0.245 -0.280 -0.360 -0.344 -0.266 + + 586 iasi616_metop-a 3658 0.738872E-01 + -0.495 -0.667 -0.547 -0.490 -0.547 -0.556 -0.492 -0.322 -0.443 -0.443 + -0.414 -0.535 -0.495 -0.303 -0.383 -0.335 -0.535 -0.563 -0.346 -0.489 + -0.340 -0.392 -0.429 -0.359 -0.298 -0.223 -0.277 -0.255 -0.295 -0.293 + -0.688 -0.733 -0.806 -0.430 -0.558 -0.648 -0.601 -0.823 -0.656 -0.843 + -0.755 -0.585 -0.680 -0.730 -0.654 -0.311 -0.740 -0.716 -0.774 -0.566 + -0.684 -0.439 -0.627 -0.837 -0.630 -0.521 -0.713 -0.770 -0.178 -0.590 + -0.785 -0.704 -0.436 -0.816 -0.635 -0.526 -0.565 -0.727 -0.753 -0.582 + -0.768 -0.528 -0.600 -0.470 -0.559 -0.667 -0.550 -0.465 -0.486 -0.695 + -0.406 -0.578 -0.187 -0.566 -0.373 -0.444 -0.253 -0.500 -0.597 -0.345 + + 587 iasi616_metop-a 3661 0.452036E-01 + 0.212 0.077 0.204 0.253 0.027 -0.066 0.097 0.092 -0.021 -0.116 + -0.123 -0.006 -0.145 -0.036 -0.047 -0.043 -0.207 -0.285 -0.220 -0.117 + -0.170 -0.170 -0.244 -0.142 -0.182 -0.313 -0.398 -0.301 -0.244 -0.343 + 0.189 0.248 0.383 0.114 0.235 0.410 0.356 0.031 0.308 0.181 + 0.313 0.210 0.125 0.169 0.025 0.210 0.014 0.197 0.272 0.400 + 0.378 0.260 0.613 0.101 0.289 0.230 0.239 0.015 0.378 0.387 + 0.094 0.107 0.460 0.046 -0.004 0.153 0.250 0.187 0.076 0.350 + 0.304 0.200 0.592 0.480 0.167 0.120 0.299 0.348 0.377 0.155 + 0.309 0.222 0.300 0.272 0.272 0.316 0.243 0.168 0.286 0.336 + + 588 iasi616_metop-a 3673 0.853309E-01 + 0.243 0.194 0.206 0.175 0.147 0.287 0.256 0.351 0.308 0.283 + 0.324 0.268 0.281 0.419 0.249 0.301 0.277 0.176 0.392 0.166 + 0.343 0.335 0.315 0.300 0.359 0.475 0.421 0.385 0.299 0.468 + 0.007 -0.236 -0.192 0.171 -0.256 0.012 0.124 -0.300 -0.069 -0.167 + 0.062 -0.417 0.014 -0.155 -0.055 0.416 0.090 -0.117 -0.313 0.116 + -0.029 0.264 -0.217 0.009 -0.072 -0.028 0.038 0.024 0.217 -0.326 + -0.009 0.046 0.163 0.084 0.204 -0.079 -0.158 -0.356 0.049 -0.163 + -0.478 0.091 -0.293 0.103 -0.128 -0.175 0.280 -0.085 -0.277 0.327 + 0.035 0.083 0.035 -0.320 0.163 -0.038 0.267 -0.062 -0.150 -0.065 + + 589 iasi616_metop-a 3689 0.824888E-01 + 0.057 0.098 -0.081 -0.084 0.006 0.029 -0.010 0.063 0.146 -0.127 + -0.058 -0.144 -0.015 0.171 0.001 0.209 0.117 -0.185 0.104 0.122 + -0.037 0.036 0.181 0.094 0.082 0.117 0.173 0.186 0.178 0.074 + -0.145 -0.331 -0.429 -0.159 -0.325 -0.157 -0.138 -0.465 -0.221 -0.465 + -0.092 -0.644 -0.258 -0.225 -0.183 0.185 -0.089 -0.321 -0.419 -0.102 + -0.218 0.089 -0.342 -0.286 -0.403 -0.104 -0.261 -0.255 0.013 -0.472 + -0.114 -0.126 -0.074 -0.147 -0.039 -0.266 -0.216 -0.605 -0.173 -0.412 + -0.600 -0.113 -0.486 -0.126 -0.383 -0.340 0.071 -0.229 -0.558 0.075 + -0.141 -0.153 -0.119 -0.539 0.010 -0.268 0.148 -0.151 -0.263 -0.273 + + 590 iasi616_metop-a 3700 0.454036E-01 + 0.026 0.004 0.103 0.131 -0.018 -0.096 -0.007 -0.015 -0.011 -0.200 + -0.133 -0.155 -0.106 0.159 -0.034 0.105 0.032 -0.228 -0.156 0.198 + -0.105 0.076 0.133 0.003 -0.012 0.010 0.029 0.067 0.175 -0.063 + -0.029 -0.119 0.049 -0.006 -0.067 0.068 -0.103 -0.209 -0.099 -0.191 + -0.136 0.027 -0.212 -0.090 -0.051 -0.041 -0.278 0.017 0.035 0.002 + -0.022 0.162 0.091 -0.175 -0.226 -0.064 -0.042 -0.175 0.185 -0.028 + -0.108 -0.167 0.120 -0.264 -0.046 -0.009 -0.127 -0.190 -0.146 0.058 + -0.007 0.000 0.129 -0.031 -0.089 -0.163 0.075 0.053 -0.006 0.007 + -0.005 -0.118 0.029 -0.015 0.014 0.073 0.007 0.045 0.010 0.131 + + 591 iasi616_metop-a 3710 0.827257E-01 + -0.037 -0.094 -0.084 -0.093 -0.042 -0.019 -0.171 -0.013 0.003 -0.094 + -0.031 -0.091 -0.069 0.126 -0.003 0.042 0.032 -0.183 0.075 -0.111 + -0.052 -0.005 0.012 -0.047 0.027 0.137 0.096 0.121 -0.003 0.121 + -0.285 -0.620 -0.638 -0.297 -0.452 -0.336 -0.343 -0.714 -0.452 -0.586 + -0.276 -0.898 -0.385 -0.415 -0.403 -0.055 -0.274 -0.572 -0.616 -0.309 + -0.389 -0.211 -0.575 -0.443 -0.558 -0.317 -0.414 -0.512 -0.142 -0.642 + -0.326 -0.311 -0.211 -0.301 -0.201 -0.480 -0.378 -0.783 -0.294 -0.665 + -0.829 -0.319 -0.693 -0.381 -0.599 -0.537 -0.177 -0.427 -0.669 -0.040 + -0.360 -0.349 -0.310 -0.666 -0.157 -0.418 -0.022 -0.376 -0.434 -0.410 + + 592 iasi616_metop-a 3726 0.310898E-01 + 0.266 0.277 0.458 0.426 0.263 0.168 0.273 0.167 0.194 -0.023 + 0.075 0.141 0.142 0.201 0.091 0.320 0.173 -0.135 -0.023 0.287 + -0.021 0.113 0.103 0.134 0.085 -0.018 -0.038 0.066 0.077 -0.060 + 0.314 0.665 0.575 0.183 0.454 0.677 0.137 0.214 0.342 0.385 + 0.504 0.355 0.398 0.261 0.413 0.239 0.269 0.375 0.481 0.463 + 0.411 0.484 0.462 0.153 0.345 0.319 0.513 0.182 0.593 0.584 + 0.318 0.185 0.406 0.186 0.147 0.312 0.474 0.463 0.320 0.247 + 0.390 0.292 0.656 0.422 0.281 0.271 0.440 0.248 0.400 0.322 + 0.517 0.135 0.457 0.352 0.291 0.363 0.222 0.280 0.196 0.356 + + 593 iasi616_metop-a 3763 0.686018E-01 + 0.359 0.211 0.325 0.316 0.422 0.349 0.233 0.381 0.357 0.345 + 0.242 0.225 0.301 0.440 0.351 0.434 0.303 0.293 0.323 0.272 + 0.332 0.363 0.366 0.325 0.380 0.553 0.477 0.431 0.390 0.479 + 0.165 0.072 -0.086 0.147 0.307 0.350 0.181 0.003 0.253 0.059 + 0.238 -0.069 0.044 0.156 0.373 0.409 0.391 -0.049 0.099 0.193 + 0.101 0.356 0.027 0.295 -0.072 0.411 -0.145 0.178 0.475 -0.053 + 0.177 0.315 0.235 0.375 0.409 -0.031 0.115 -0.063 0.385 -0.110 + -0.087 0.228 0.115 0.218 0.303 -0.057 0.186 -0.053 -0.157 0.305 + 0.224 -0.145 0.220 -0.023 0.153 -0.026 0.406 0.307 -0.026 0.015 + + 594 iasi616_metop-a 3814 0.665783E-01 + -0.077 -0.125 -0.287 -0.200 0.078 -0.101 -0.172 0.049 0.029 -0.276 + -0.283 -0.231 -0.054 0.088 -0.171 0.134 0.191 -0.051 0.120 0.177 + -0.089 0.035 0.207 0.224 0.220 0.232 0.117 0.234 0.278 0.203 + -0.524 -0.489 -0.786 -0.503 -0.327 -0.308 -0.576 -0.737 -0.451 -0.552 + -0.488 -0.674 -0.617 -0.427 -0.483 -0.274 -0.276 -0.648 -0.418 -0.345 + -0.631 -0.324 -0.637 -0.319 -0.711 -0.254 -0.768 -0.317 -0.156 -0.612 + -0.457 -0.266 -0.514 -0.269 -0.237 -0.729 -0.497 -0.743 -0.455 -0.734 + -0.705 -0.366 -0.559 -0.433 -0.314 -0.758 -0.593 -0.557 -0.738 -0.355 + -0.392 -0.706 -0.411 -0.691 -0.451 -0.644 -0.265 -0.315 -0.608 -0.625 + + 595 iasi616_metop-a 3841 0.688807E-01 + -0.251 -0.348 -0.490 -0.374 -0.165 -0.343 -0.413 -0.206 -0.265 -0.552 + -0.613 -0.574 -0.355 -0.143 -0.578 -0.245 -0.281 -0.421 -0.347 -0.314 + -0.566 -0.457 -0.296 -0.300 -0.339 -0.250 -0.459 -0.325 -0.298 -0.338 + -0.433 -0.559 -0.668 -0.500 -0.401 -0.196 -0.385 -0.533 -0.370 -0.534 + -0.426 -0.491 -0.532 -0.374 -0.294 -0.108 -0.172 -0.572 -0.455 -0.343 + -0.566 -0.231 -0.488 -0.227 -0.627 -0.180 -0.663 -0.271 0.025 -0.562 + -0.320 -0.205 -0.356 -0.239 -0.217 -0.591 -0.454 -0.668 -0.353 -0.633 + -0.624 -0.372 -0.425 -0.336 -0.265 -0.636 -0.425 -0.447 -0.709 -0.261 + -0.349 -0.651 -0.350 -0.606 -0.571 -0.540 -0.164 -0.301 -0.500 -0.521 + + 596 iasi616_metop-a 3888 0.311201E-01 + 0.331 0.371 0.363 0.349 0.302 0.248 0.222 0.226 0.254 -0.031 + -0.013 0.047 0.159 0.224 -0.002 0.109 0.024 -0.092 0.060 0.286 + -0.079 0.048 0.108 0.120 -0.026 -0.010 -0.153 -0.045 0.040 -0.064 + 0.176 0.419 0.596 0.250 0.445 0.723 0.461 0.359 0.405 0.372 + 0.577 0.498 0.230 0.359 0.543 0.277 0.156 0.299 0.643 0.428 + 0.696 0.477 0.629 0.297 0.362 0.486 0.594 0.161 0.651 0.490 + 0.139 0.430 0.603 0.201 0.208 0.358 0.206 0.340 0.434 0.356 + 0.572 0.316 0.687 0.408 0.457 0.414 0.218 0.162 0.449 0.346 + 0.554 0.365 0.460 0.367 0.325 0.487 0.360 0.198 0.384 0.414 + + 597 iasi616_metop-a 4032 0.484514E-01 + -0.090 -0.089 -0.075 -0.108 0.122 -0.017 -0.107 0.004 0.015 0.091 + -0.040 0.079 -0.055 0.038 0.031 0.147 0.012 0.083 0.112 0.134 + 0.165 0.130 0.239 0.222 0.204 0.323 0.349 0.347 0.301 0.293 + -0.575 -0.447 -0.879 -0.725 -0.688 -0.493 -0.652 -0.744 -0.686 -0.558 + -0.194 -0.470 -0.524 -0.599 -0.583 -0.634 -0.462 -0.530 -0.591 -0.375 + -0.328 -0.652 -0.327 -0.744 -0.404 -0.506 -0.475 -0.934 -0.505 -0.379 + -0.897 -0.668 -0.343 -0.708 -0.690 -0.415 -0.615 -0.483 -0.425 -0.435 + -0.388 -0.491 -0.276 -0.405 -0.507 -0.422 -0.448 -0.560 -0.336 -0.411 + -0.577 -0.722 -0.311 -0.454 -0.500 -0.470 -0.379 -0.711 -0.480 -0.477 + + 598 iasi616_metop-a 4059 0.802807E-01 + -0.195 -0.170 -0.132 -0.196 -0.231 -0.100 -0.334 -0.149 -0.226 -0.216 + -0.335 -0.438 -0.365 -0.074 -0.377 -0.245 -0.351 -0.345 -0.251 -0.538 + -0.346 -0.260 -0.380 -0.368 -0.328 -0.218 -0.413 -0.338 -0.426 -0.267 + -0.250 -0.578 -0.449 -0.052 -0.234 -0.085 -0.170 -0.472 -0.086 -0.313 + -0.186 -0.610 -0.268 -0.262 -0.085 0.155 0.042 -0.423 -0.362 -0.077 + -0.319 0.037 -0.298 -0.062 -0.489 -0.013 -0.219 -0.335 0.372 -0.448 + -0.082 -0.001 -0.064 0.089 -0.034 -0.208 -0.257 -0.554 -0.076 -0.321 + -0.448 -0.138 -0.493 -0.087 -0.237 -0.419 -0.006 -0.240 -0.563 0.090 + -0.135 -0.186 -0.027 -0.431 0.032 -0.264 0.207 -0.250 -0.191 -0.337 + + 599 iasi616_metop-a 4068 0.887156E-01 + -0.030 0.095 -0.121 -0.176 -0.155 -0.004 -0.057 0.010 0.008 -0.137 + -0.169 -0.292 -0.158 0.163 -0.096 0.001 0.058 -0.255 -0.065 0.050 + -0.060 0.011 0.098 0.032 0.036 0.105 -0.096 0.085 0.073 -0.070 + -0.368 -0.296 -0.513 0.115 -0.228 -0.120 -0.098 -0.479 -0.374 -0.419 + -0.299 -0.439 -0.300 -0.414 -0.264 -0.042 -0.120 -0.253 -0.352 -0.167 + -0.228 -0.093 -0.480 -0.145 -0.590 -0.193 -0.000 -0.234 -0.181 -0.716 + -0.344 -0.308 0.061 -0.107 -0.169 -0.260 -0.422 -0.548 -0.142 -0.325 + -0.832 -0.227 -0.335 -0.141 -0.417 -0.417 -0.234 -0.151 -0.222 0.043 + -0.211 -0.256 -0.181 -0.463 -0.115 -0.293 0.061 -0.219 -0.557 -0.214 + + 600 iasi616_metop-a 4082 0.814645E-01 + 0.132 0.067 -0.049 -0.024 0.040 0.069 0.008 0.153 0.089 -0.115 + -0.160 -0.030 0.095 0.132 -0.083 0.243 0.062 -0.197 -0.113 0.073 + -0.084 -0.034 0.088 -0.100 0.039 0.092 0.035 0.009 0.112 -0.075 + 0.028 -0.239 -0.221 0.100 -0.171 0.138 0.114 -0.298 0.111 -0.073 + 0.063 -0.338 -0.118 -0.061 0.019 0.442 0.106 -0.188 -0.060 0.183 + -0.095 0.366 -0.089 0.062 -0.270 0.195 0.039 -0.054 0.395 -0.243 + 0.114 0.064 0.160 0.161 0.175 -0.127 -0.007 -0.380 0.193 -0.210 + -0.383 -0.005 -0.430 0.103 -0.133 -0.261 0.293 -0.083 -0.299 0.354 + 0.038 0.157 0.072 -0.319 0.264 -0.049 0.309 -0.028 -0.030 -0.014 + + 601 iasi616_metop-a 4095 0.820635E-01 + 0.149 0.262 0.110 0.095 0.102 0.189 0.165 0.251 0.245 -0.045 + 0.023 0.042 0.094 0.376 0.133 0.258 0.290 -0.113 0.196 0.301 + 0.034 0.283 0.291 0.319 0.253 0.328 0.193 0.316 0.310 0.143 + 0.113 -0.108 0.109 0.366 0.009 0.074 0.237 -0.105 -0.012 -0.019 + -0.197 0.216 -0.042 -0.085 0.070 0.245 -0.066 0.187 0.166 0.018 + -0.051 0.117 -0.012 0.077 -0.061 0.231 0.181 0.007 0.520 -0.246 + 0.167 0.001 0.173 -0.097 0.006 -0.078 0.054 -0.001 0.174 0.034 + 0.055 0.043 0.197 0.208 0.128 0.047 0.215 0.225 0.289 0.023 + 0.319 0.184 0.328 0.010 0.369 0.107 0.288 -0.022 -0.144 0.296 + + 602 iasi616_metop-a 4160 0.349683E-01 + 0.815 0.616 0.907 1.025 0.761 0.688 0.923 0.675 0.585 0.710 + 0.526 0.650 0.712 0.732 0.742 0.852 0.616 0.517 0.451 0.633 + 0.607 0.663 0.489 0.519 0.492 0.575 0.378 0.331 0.576 0.373 + 0.827 1.425 0.982 0.787 1.049 1.289 0.917 0.919 1.062 0.877 + 1.437 0.881 0.845 0.953 0.899 0.950 0.908 0.901 1.196 1.149 + 0.947 1.049 1.112 0.782 0.904 1.081 1.077 0.743 1.024 0.943 + 0.949 0.846 1.023 0.911 0.867 0.935 0.834 1.123 0.940 1.065 + 0.862 0.966 1.259 1.181 0.811 0.946 1.037 1.018 0.915 1.022 + 1.083 1.154 1.090 1.015 1.203 0.879 0.915 0.967 1.051 0.864 + + 603 iasi616_metop-a 4234 0.879237E-01 + 0.416 0.655 0.350 0.415 0.507 0.532 0.523 0.754 0.614 0.556 + 0.592 0.565 0.603 0.724 0.836 0.725 0.760 0.723 0.802 0.654 + 0.739 0.819 0.768 0.700 0.847 1.043 0.935 0.893 0.830 0.942 + -0.753 -0.601 -0.707 -0.131 -0.680 -0.478 -0.319 -0.755 -0.380 -0.552 + -0.317 -0.800 -0.449 -0.537 -0.526 -0.176 -0.320 -0.428 -0.649 -0.397 + -0.481 -0.202 -0.663 -0.446 -0.550 -0.323 -0.341 -0.447 -0.327 -0.884 + -0.585 -0.369 -0.201 -0.310 -0.335 -0.565 -0.582 -0.740 -0.302 -0.700 + -0.940 -0.369 -0.689 -0.416 -0.639 -0.611 -0.195 -0.502 -0.658 -0.085 + -0.363 -0.438 -0.438 -0.745 -0.256 -0.523 -0.188 -0.475 -0.624 -0.589 + + 604 iasi616_metop-a 4257 0.781171E-01 + -0.165 -0.203 -0.220 -0.201 -0.141 -0.188 -0.247 -0.180 -0.144 -0.403 + -0.412 -0.408 -0.208 -0.024 -0.318 -0.020 -0.229 -0.403 -0.414 -0.149 + -0.307 -0.244 -0.262 -0.337 -0.225 -0.160 -0.280 -0.343 -0.150 -0.373 + -0.268 -0.440 -0.407 -0.081 -0.241 0.049 -0.240 -0.639 -0.132 -0.428 + -0.139 -0.588 -0.316 -0.326 -0.008 0.243 -0.021 -0.510 -0.284 -0.071 + -0.329 -0.039 -0.273 -0.186 -0.460 0.096 -0.169 -0.288 0.261 -0.464 + -0.053 0.047 -0.006 -0.246 -0.032 -0.324 -0.241 -0.527 -0.097 -0.386 + -0.472 -0.177 -0.557 -0.139 -0.239 -0.436 -0.012 -0.258 -0.619 0.045 + -0.188 -0.027 -0.121 -0.481 -0.107 -0.389 0.060 -0.217 -0.184 -0.360 + + 605 iasi616_metop-a 4411 0.855303E-01 + 0.150 0.141 0.032 -0.028 0.076 0.032 0.030 0.175 0.109 0.010 + -0.059 -0.125 -0.067 0.164 -0.065 0.140 0.090 -0.248 0.015 0.092 + -0.020 0.121 0.011 0.017 0.031 0.131 -0.077 0.105 0.071 -0.090 + -0.122 0.017 -0.327 0.221 -0.155 0.128 0.178 -0.302 -0.184 -0.066 + -0.091 0.040 -0.101 -0.050 -0.188 0.164 -0.010 0.056 -0.075 -0.085 + -0.011 0.225 -0.287 0.088 -0.193 0.234 0.309 -0.075 0.086 -0.418 + -0.041 -0.065 0.044 -0.005 0.210 -0.316 -0.115 -0.061 -0.027 -0.050 + -0.456 0.051 -0.093 0.126 -0.036 -0.036 -0.069 0.107 -0.001 0.213 + 0.028 0.146 -0.006 -0.080 0.123 0.024 0.262 0.063 -0.228 0.094 + + 606 iasi616_metop-a 4498 0.793707E-01 + -0.018 -0.029 -0.139 -0.120 0.069 -0.026 0.015 0.104 0.182 -0.189 + -0.211 -0.130 0.048 0.226 -0.118 0.368 0.187 -0.131 -0.036 0.085 + 0.060 -0.016 0.077 0.020 0.134 0.153 0.170 0.060 0.246 0.119 + -0.447 -0.659 -0.789 -0.452 -0.444 -0.417 -0.306 -0.830 -0.492 -0.464 + -0.384 -0.831 -0.445 -0.406 -0.395 0.016 -0.208 -0.574 -0.499 -0.269 + -0.667 -0.206 -0.600 -0.446 -0.704 -0.163 -0.523 -0.489 -0.134 -0.592 + -0.209 -0.304 -0.258 -0.382 -0.168 -0.525 -0.465 -0.755 -0.173 -0.539 + -0.800 -0.410 -0.791 -0.406 -0.466 -0.578 -0.163 -0.450 -0.795 -0.138 + -0.397 -0.376 -0.273 -0.721 -0.291 -0.480 -0.139 -0.500 -0.432 -0.583 + + 607 iasi616_metop-a 4520 0.822295E-01 + -0.175 -0.068 -0.280 -0.229 -0.166 -0.180 -0.260 -0.132 -0.113 -0.306 + -0.320 -0.537 -0.304 0.021 -0.297 -0.115 -0.218 -0.483 -0.112 -0.094 + -0.395 -0.211 -0.118 -0.103 -0.156 -0.123 -0.229 -0.089 -0.084 -0.235 + -0.307 -0.625 -0.684 -0.240 -0.383 -0.339 -0.280 -0.763 -0.320 -0.448 + -0.201 -0.857 -0.305 -0.340 -0.271 0.101 -0.213 -0.501 -0.492 -0.312 + -0.391 -0.266 -0.571 -0.524 -0.622 -0.374 -0.340 -0.574 -0.127 -0.585 + -0.385 -0.250 -0.156 -0.315 -0.084 -0.479 -0.358 -0.791 -0.246 -0.493 + -0.670 -0.232 -0.701 -0.227 -0.443 -0.556 -0.176 -0.507 -0.729 0.051 + -0.317 -0.313 -0.286 -0.638 -0.052 -0.504 0.015 -0.433 -0.394 -0.423 + + 608 iasi616_metop-a 4552 0.637107E-01 + 0.064 -0.068 -0.056 0.059 0.152 -0.044 -0.072 0.008 -0.048 -0.261 + -0.205 -0.261 -0.097 0.147 -0.242 0.157 -0.022 -0.241 -0.145 0.064 + -0.204 -0.105 0.053 -0.126 -0.049 0.024 -0.106 0.002 0.030 -0.118 + -0.044 -0.071 -0.289 0.054 0.105 0.216 -0.178 -0.222 0.056 -0.077 + 0.003 -0.219 -0.205 -0.076 0.177 0.231 0.274 -0.288 -0.011 0.076 + -0.264 0.087 -0.188 0.090 -0.098 0.250 -0.347 0.084 0.243 -0.205 + 0.076 0.229 -0.043 0.028 0.201 -0.212 -0.050 -0.258 0.131 -0.387 + -0.226 0.068 -0.013 0.128 0.122 -0.204 -0.047 -0.217 -0.270 0.021 + -0.011 -0.258 0.069 -0.279 -0.092 -0.140 0.233 0.150 -0.112 -0.147 + + 609 iasi616_metop-a 4567 0.593086E-01 + 0.218 0.048 0.028 0.055 0.326 0.195 -0.051 0.250 0.182 -0.132 + -0.156 -0.111 0.134 0.281 -0.119 0.192 0.182 0.048 0.158 0.190 + -0.060 0.081 0.140 0.179 0.127 0.298 0.101 0.191 0.217 0.140 + 0.154 0.010 -0.282 0.008 0.149 0.176 -0.108 -0.192 -0.088 0.113 + 0.191 -0.193 -0.144 -0.003 0.070 0.168 0.219 -0.137 0.086 0.090 + -0.007 0.133 -0.161 0.077 -0.202 0.331 -0.215 0.010 0.292 -0.146 + 0.058 0.391 -0.079 0.027 0.281 -0.179 0.232 -0.167 0.142 -0.395 + -0.214 0.028 -0.022 0.038 0.118 -0.191 -0.069 -0.159 -0.210 0.002 + -0.072 -0.210 0.071 -0.248 -0.046 -0.140 0.104 0.208 -0.260 -0.127 + + 610 iasi616_metop-a 4608 0.794446E-01 + 0.096 0.101 -0.097 -0.047 0.202 0.084 -0.077 0.222 0.158 -0.085 + -0.239 -0.151 0.102 0.162 -0.122 0.106 0.137 -0.110 0.107 0.086 + -0.159 -0.008 0.039 0.109 0.070 0.213 0.035 0.126 0.126 0.070 + -0.152 -0.467 -0.437 -0.202 -0.225 -0.014 -0.120 -0.557 -0.162 -0.313 + -0.162 -0.651 -0.362 -0.295 -0.204 0.170 -0.151 -0.362 -0.339 -0.109 + -0.262 -0.175 -0.422 -0.142 -0.452 -0.096 -0.342 -0.274 0.117 -0.524 + -0.147 -0.126 -0.084 -0.227 -0.063 -0.420 -0.247 -0.607 -0.020 -0.378 + -0.591 -0.322 -0.509 -0.187 -0.278 -0.409 0.003 -0.403 -0.521 -0.005 + -0.176 -0.350 -0.090 -0.470 -0.009 -0.387 0.074 -0.157 -0.143 -0.276 + + 611 iasi616_metop-a 4646 0.535650E-01 + 0.280 0.204 0.215 0.247 0.390 0.121 0.200 0.261 0.213 -0.019 + 0.175 -0.030 0.099 0.320 0.033 0.272 0.142 -0.042 0.163 0.241 + 0.040 0.118 0.309 0.207 0.167 0.234 0.051 0.155 0.234 0.047 + 0.329 0.465 0.211 0.249 0.579 0.427 0.282 0.174 0.321 0.534 + 0.429 0.114 0.192 0.436 0.348 0.647 0.507 0.312 0.236 0.185 + 0.281 0.275 0.238 0.326 0.359 0.632 0.056 0.380 0.549 0.062 + 0.252 0.431 0.139 0.481 0.536 0.112 0.473 0.151 0.430 0.027 + 0.206 0.491 0.354 0.330 0.464 0.165 0.134 0.064 0.182 0.336 + 0.303 0.138 0.431 0.106 0.239 0.050 0.460 0.711 0.011 0.179 + + 612 iasi616_metop-a 4698 0.453302E-01 + 0.553 0.524 0.460 0.492 0.643 0.540 0.580 0.674 0.634 0.312 + 0.225 0.363 0.554 0.534 0.283 0.504 0.506 0.377 0.497 0.478 + 0.327 0.405 0.524 0.591 0.486 0.684 0.404 0.460 0.567 0.519 + 0.388 0.496 0.471 0.419 0.642 0.479 0.323 0.325 0.299 0.563 + 0.539 0.355 0.178 0.721 0.313 0.613 0.465 0.377 0.182 0.455 + 0.478 0.578 0.318 0.390 0.612 0.670 0.096 0.548 0.535 0.133 + 0.363 0.601 0.310 0.488 0.814 0.274 0.482 0.271 0.536 0.036 + 0.377 0.510 0.519 0.465 0.450 0.350 0.324 0.243 0.425 0.444 + 0.310 0.348 0.545 0.246 0.497 0.267 0.375 0.758 0.243 0.148 + + 613 iasi616_metop-a 4808 0.682483E-01 + 0.449 0.248 0.226 0.235 0.647 0.337 0.265 0.392 0.545 0.215 + 0.057 0.202 0.421 0.373 0.120 0.392 0.447 0.309 0.456 0.434 + 0.203 0.171 0.392 0.425 0.437 0.518 0.363 0.364 0.525 0.426 + 0.027 -0.228 -0.510 -0.004 0.090 0.178 -0.164 -0.245 -0.012 -0.185 + 0.063 -0.302 -0.239 -0.086 0.049 0.321 0.344 -0.169 -0.009 0.085 + -0.225 0.151 -0.156 0.240 -0.213 0.147 -0.343 0.079 0.371 -0.153 + 0.010 0.142 0.057 -0.018 0.217 -0.150 0.041 -0.270 0.205 -0.377 + -0.173 -0.036 -0.002 0.136 0.113 -0.224 -0.059 0.011 -0.316 0.122 + -0.082 -0.187 -0.024 -0.194 -0.072 -0.189 0.219 0.132 -0.182 0.012 + + 614 iasi616_metop-a 4849 0.400104E-01 + 0.176 0.198 0.058 0.078 0.243 0.168 0.089 0.298 0.132 -0.043 + -0.078 -0.062 0.199 0.281 0.047 0.278 0.263 0.023 0.161 0.271 + 0.033 0.197 0.285 0.361 0.202 0.284 0.075 0.264 0.330 0.200 + -0.143 -0.024 0.122 -0.056 0.196 -0.023 -0.063 -0.142 -0.064 0.037 + 0.201 -0.099 -0.337 0.371 0.055 0.190 0.087 -0.125 -0.244 -0.052 + -0.137 0.074 -0.157 -0.099 0.124 0.160 -0.321 0.111 0.075 -0.181 + -0.002 0.248 -0.234 -0.003 0.336 -0.150 0.119 -0.018 0.125 -0.294 + 0.095 0.155 -0.047 -0.002 -0.133 -0.049 0.102 -0.124 0.215 -0.180 + -0.127 0.035 0.021 -0.195 -0.031 0.161 0.112 0.248 -0.110 -0.145 + + 615 iasi616_metop-a 4920 0.383913E-01 + 0.242 0.241 0.118 0.027 0.166 0.159 0.144 0.145 0.299 -0.046 + -0.039 -0.004 0.208 0.030 -0.026 0.104 0.118 0.019 0.166 0.099 + -0.066 -0.004 0.005 0.163 0.184 0.141 -0.083 -0.062 0.226 0.100 + -0.086 0.023 0.166 -0.058 0.131 0.088 0.030 -0.117 0.007 0.133 + 0.231 0.001 -0.250 0.328 0.041 0.187 0.036 -0.011 -0.131 0.013 + -0.109 -0.045 -0.081 -0.022 0.154 0.382 -0.216 0.148 0.005 -0.041 + 0.038 0.209 -0.149 0.049 0.332 -0.024 0.167 -0.050 0.159 -0.327 + 0.283 0.095 -0.087 0.037 -0.060 -0.011 0.190 -0.058 0.353 -0.167 + -0.194 0.116 0.083 -0.201 -0.083 0.171 0.191 0.366 -0.157 -0.122 + + 616 iasi616_metop-a 4939 0.527687E-01 + 0.136 0.036 0.029 -0.023 0.182 0.050 0.040 0.013 0.285 -0.107 + -0.089 -0.150 0.155 0.006 -0.070 0.030 0.100 -0.017 0.096 0.204 + -0.026 -0.157 0.052 0.151 0.092 0.108 -0.085 -0.129 0.115 0.040 + -0.063 -0.138 -0.155 -0.006 -0.016 -0.087 -0.246 -0.191 -0.173 0.082 + -0.017 -0.173 -0.226 0.062 -0.216 0.175 0.010 -0.303 -0.219 -0.066 + -0.157 -0.098 -0.176 -0.047 0.051 0.141 -0.315 0.042 0.038 -0.400 + -0.159 0.117 -0.241 -0.073 0.283 -0.346 0.111 -0.311 0.144 -0.309 + 0.068 0.076 -0.061 -0.043 -0.042 -0.204 -0.113 -0.210 -0.069 -0.041 + -0.100 -0.215 -0.006 -0.250 -0.068 -0.162 -0.005 0.239 -0.345 -0.233 + + 617 iasi616_metop-a 4947 0.331010E-01 + 0.146 0.010 -0.025 -0.143 0.107 0.007 -0.028 -0.013 0.206 -0.148 + -0.316 -0.111 0.035 0.025 -0.076 0.021 0.002 -0.115 0.067 0.044 + -0.133 -0.042 0.047 0.110 0.059 0.136 -0.080 -0.076 0.079 0.020 + -0.357 -0.290 -0.318 -0.312 -0.242 -0.191 -0.277 -0.444 -0.271 -0.038 + -0.044 -0.415 -0.493 0.122 -0.193 -0.173 -0.434 -0.376 -0.340 -0.174 + -0.285 -0.326 -0.407 -0.485 -0.301 0.191 -0.594 -0.096 -0.222 -0.238 + -0.283 -0.229 -0.562 -0.219 0.040 -0.349 -0.119 -0.225 -0.207 -0.610 + 0.111 -0.053 -0.325 -0.029 -0.219 -0.227 -0.112 -0.144 0.152 -0.246 + -0.314 -0.009 -0.193 -0.359 -0.184 -0.018 0.022 0.193 -0.337 -0.291 + + 618 iasi616_metop-a 4967 0.416679E-01 + -0.165 -0.228 -0.332 -0.278 -0.165 -0.211 -0.153 -0.234 -0.064 -0.276 + -0.269 -0.375 -0.137 -0.329 -0.348 -0.097 -0.153 -0.271 -0.204 -0.123 + -0.216 -0.380 -0.164 -0.168 -0.160 -0.158 -0.407 -0.332 -0.098 -0.179 + -0.522 -0.485 -0.267 -0.468 -0.324 -0.361 -0.564 -0.561 -0.497 -0.282 + -0.368 -0.517 -0.646 0.012 -0.490 -0.325 -0.320 -0.521 -0.571 -0.503 + -0.440 -0.384 -0.437 -0.532 -0.421 -0.089 -0.649 -0.322 -0.345 -0.567 + -0.370 -0.276 -0.565 -0.250 -0.051 -0.654 -0.335 -0.473 -0.366 -0.743 + -0.377 -0.363 -0.485 -0.391 -0.430 -0.628 -0.396 -0.580 -0.187 -0.548 + -0.554 -0.440 -0.384 -0.606 -0.396 -0.496 -0.372 -0.110 -0.707 -0.561 + + 619 iasi616_metop-a 4991 0.482104E-01 + -0.190 -0.291 -0.329 -0.368 -0.200 -0.260 -0.322 -0.237 -0.160 -0.493 + -0.512 -0.461 -0.241 -0.316 -0.449 -0.315 -0.319 -0.370 -0.181 -0.239 + -0.433 -0.480 -0.346 -0.228 -0.293 -0.225 -0.446 -0.374 -0.240 -0.335 + -0.378 -0.255 -0.325 -0.385 -0.255 -0.266 -0.552 -0.445 -0.486 -0.304 + -0.374 -0.519 -0.479 -0.201 -0.383 -0.234 -0.206 -0.562 -0.440 -0.338 + -0.293 -0.177 -0.450 -0.327 -0.185 -0.067 -0.511 -0.234 -0.190 -0.434 + -0.322 -0.179 -0.641 -0.196 0.001 -0.477 -0.227 -0.488 -0.251 -0.564 + -0.329 -0.231 -0.373 -0.259 -0.378 -0.554 -0.365 -0.585 -0.269 -0.351 + -0.273 -0.524 -0.161 -0.458 -0.286 -0.608 -0.290 -0.005 -0.563 -0.617 + + 620 iasi616_metop-a 4996 0.551848E-01 + -0.233 -0.374 -0.424 -0.388 -0.157 -0.323 -0.375 -0.337 -0.132 -0.504 + -0.531 -0.465 -0.214 -0.338 -0.478 -0.306 -0.208 -0.411 -0.173 -0.231 + -0.452 -0.429 -0.256 -0.266 -0.290 -0.137 -0.351 -0.366 -0.250 -0.328 + -0.402 -0.352 -0.615 -0.501 -0.228 -0.381 -0.400 -0.552 -0.603 -0.437 + -0.365 -0.593 -0.520 -0.498 -0.503 -0.118 -0.245 -0.686 -0.519 -0.428 + -0.515 -0.248 -0.599 -0.376 -0.395 -0.153 -0.610 -0.374 -0.175 -0.484 + -0.457 -0.209 -0.612 -0.410 -0.014 -0.601 -0.249 -0.649 -0.399 -0.686 + -0.500 -0.242 -0.387 -0.349 -0.434 -0.474 -0.425 -0.606 -0.588 -0.416 + -0.455 -0.602 -0.307 -0.673 -0.340 -0.578 -0.251 -0.159 -0.605 -0.532 + + 621 iasi616_metop-a 5015 0.331621E-01 + -0.223 -0.309 -0.313 -0.431 -0.128 -0.222 -0.276 -0.174 -0.183 -0.510 + -0.471 -0.465 -0.254 -0.268 -0.391 -0.333 -0.300 -0.426 -0.267 -0.206 + -0.448 -0.384 -0.310 -0.289 -0.366 -0.201 -0.457 -0.392 -0.268 -0.349 + -0.494 -0.407 -0.478 -0.381 -0.352 -0.415 -0.306 -0.581 -0.457 -0.170 + -0.235 -0.526 -0.740 -0.057 -0.182 -0.500 -0.493 -0.543 -0.538 -0.447 + -0.619 -0.579 -0.572 -0.625 -0.396 -0.078 -0.732 -0.346 -0.427 -0.385 + -0.446 -0.439 -0.648 -0.382 -0.209 -0.542 -0.210 -0.388 -0.379 -0.828 + -0.052 -0.235 -0.424 -0.212 -0.263 -0.514 -0.131 -0.292 -0.088 -0.523 + -0.565 -0.051 -0.331 -0.431 -0.289 -0.359 -0.145 -0.077 -0.500 -0.404 + + 622 iasi616_metop-a 5028 0.487075E-01 + -0.182 -0.304 -0.388 -0.337 -0.120 -0.245 -0.228 -0.273 -0.103 -0.426 + -0.439 -0.395 -0.157 -0.389 -0.337 -0.322 -0.237 -0.353 -0.376 -0.187 + -0.350 -0.477 -0.331 -0.253 -0.313 -0.351 -0.513 -0.502 -0.207 -0.318 + -0.372 -0.448 -0.305 -0.432 -0.362 -0.375 -0.547 -0.555 -0.530 -0.288 + -0.277 -0.488 -0.619 -0.194 -0.541 -0.366 -0.379 -0.584 -0.522 -0.456 + -0.509 -0.278 -0.466 -0.590 -0.320 -0.161 -0.656 -0.409 -0.361 -0.589 + -0.270 -0.304 -0.587 -0.320 -0.049 -0.634 -0.516 -0.493 -0.302 -0.714 + -0.307 -0.319 -0.313 -0.381 -0.434 -0.427 -0.249 -0.459 -0.191 -0.539 + -0.578 -0.328 -0.315 -0.620 -0.290 -0.438 -0.168 -0.072 -0.531 -0.613 + + 623 iasi616_metop-a 5056 0.563158E-01 + -0.229 -0.377 -0.396 -0.372 -0.106 -0.314 -0.303 -0.450 -0.127 -0.500 + -0.493 -0.519 -0.286 -0.299 -0.503 -0.382 -0.220 -0.333 -0.202 -0.194 + -0.382 -0.423 -0.230 -0.258 -0.301 -0.279 -0.406 -0.475 -0.282 -0.287 + -0.472 -0.427 -0.564 -0.551 -0.381 -0.172 -0.551 -0.547 -0.520 -0.316 + -0.333 -0.580 -0.589 -0.401 -0.424 -0.224 -0.143 -0.636 -0.434 -0.286 + -0.278 -0.375 -0.621 -0.237 -0.434 -0.232 -0.765 -0.381 -0.101 -0.588 + -0.449 -0.141 -0.540 -0.311 -0.076 -0.587 -0.213 -0.653 -0.401 -0.672 + -0.620 -0.208 -0.403 -0.414 -0.279 -0.591 -0.571 -0.689 -0.633 -0.382 + -0.456 -0.568 -0.352 -0.546 -0.515 -0.668 -0.236 -0.198 -0.690 -0.418 + + 624 iasi616_metop-a 5128 0.356764E-01 + -0.259 -0.261 -0.218 -0.303 -0.080 -0.215 -0.250 -0.089 -0.220 -0.430 + -0.523 -0.396 -0.227 -0.179 -0.344 -0.244 -0.275 -0.405 -0.244 -0.212 + -0.405 -0.279 -0.285 -0.168 -0.284 -0.231 -0.329 -0.285 -0.228 -0.222 + -0.519 -0.456 -0.393 -0.396 -0.187 -0.326 -0.493 -0.494 -0.371 -0.226 + -0.046 -0.463 -0.593 0.005 -0.274 -0.186 -0.290 -0.540 -0.339 -0.321 + -0.483 -0.504 -0.373 -0.506 -0.392 0.002 -0.577 -0.354 -0.351 -0.413 + -0.218 -0.294 -0.462 -0.298 0.014 -0.430 -0.191 -0.436 -0.156 -0.673 + -0.003 -0.202 -0.298 -0.149 -0.345 -0.396 -0.074 -0.362 -0.036 -0.445 + -0.519 -0.072 -0.214 -0.471 -0.203 -0.099 -0.112 -0.002 -0.539 -0.433 + + 625 iasi616_metop-a 5130 0.306491E-01 + -0.220 -0.246 -0.322 -0.335 -0.128 -0.123 -0.301 -0.405 -0.070 -0.363 + -0.443 -0.338 -0.193 -0.281 -0.348 -0.278 -0.222 -0.396 -0.258 -0.166 + -0.259 -0.406 -0.290 -0.268 -0.274 -0.241 -0.390 -0.523 -0.223 -0.207 + -0.499 -0.414 -0.475 -0.528 -0.299 -0.541 -0.407 -0.617 -0.481 -0.341 + -0.234 -0.464 -0.687 -0.171 -0.399 -0.376 -0.544 -0.519 -0.523 -0.302 + -0.525 -0.552 -0.686 -0.728 -0.580 -0.142 -0.675 -0.321 -0.558 -0.440 + -0.355 -0.602 -0.788 -0.345 -0.179 -0.422 -0.225 -0.558 -0.386 -0.818 + 0.046 -0.224 -0.458 -0.372 -0.471 -0.446 -0.097 -0.335 -0.041 -0.378 + -0.676 -0.126 -0.367 -0.349 -0.323 -0.183 -0.185 -0.030 -0.650 -0.387 + + 626 iasi616_metop-a 5144 0.262870E-01 + -0.415 -0.503 -0.500 -0.528 -0.459 -0.381 -0.480 -0.492 -0.266 -0.478 + -0.643 -0.493 -0.461 -0.569 -0.508 -0.455 -0.418 -0.603 -0.532 -0.392 + -0.470 -0.602 -0.496 -0.463 -0.464 -0.458 -0.599 -0.613 -0.370 -0.408 + -0.782 -0.846 -0.813 -0.807 -0.605 -1.018 -0.810 -0.953 -0.677 -0.678 + -0.748 -0.936 -0.899 -0.566 -0.873 -0.905 -1.027 -0.930 -0.783 -0.612 + -0.720 -0.774 -0.921 -0.966 -1.153 -0.750 -1.088 -0.702 -0.852 -0.854 + -0.794 -0.811 -1.025 -0.630 -0.705 -0.797 -0.335 -0.980 -0.755 -1.191 + -0.497 -0.498 -0.817 -0.823 -0.571 -0.820 -0.524 -0.624 -0.452 -1.040 + -0.955 -0.552 -0.729 -0.647 -0.703 -0.367 -0.454 -0.336 -0.943 -0.878 + + 627 iasi616_metop-a 5170 0.355478E-01 + -0.509 -0.576 -0.499 -0.573 -0.360 -0.503 -0.459 -0.633 -0.410 -0.664 + -0.572 -0.640 -0.483 -0.621 -0.745 -0.546 -0.563 -0.630 -0.622 -0.423 + -0.517 -0.605 -0.565 -0.576 -0.489 -0.607 -0.795 -0.832 -0.544 -0.562 + -0.802 -0.847 -0.880 -0.739 -0.583 -0.643 -0.589 -0.904 -0.721 -0.652 + -0.527 -0.787 -0.959 -0.472 -0.618 -0.721 -0.734 -0.933 -0.758 -0.715 + -0.836 -0.819 -0.842 -0.987 -0.637 -0.387 -1.066 -0.593 -0.696 -0.785 + -0.581 -0.702 -0.886 -0.706 -0.484 -0.835 -0.561 -0.681 -0.711 -1.122 + -0.361 -0.599 -0.840 -0.622 -0.730 -0.868 -0.525 -0.651 -0.444 -0.752 + -0.883 -0.491 -0.661 -0.654 -0.701 -0.483 -0.522 -0.348 -0.718 -0.680 + + 628 iasi616_metop-a 5178 0.368890E-01 + -0.595 -0.669 -0.649 -0.681 -0.475 -0.554 -0.497 -0.644 -0.407 -0.800 + -0.660 -0.668 -0.435 -0.672 -0.665 -0.539 -0.639 -0.632 -0.615 -0.490 + -0.590 -0.714 -0.652 -0.632 -0.538 -0.568 -0.683 -0.656 -0.464 -0.460 + -0.827 -0.765 -0.864 -0.860 -0.782 -0.683 -0.846 -0.913 -0.752 -0.729 + -0.594 -0.837 -1.066 -0.476 -0.675 -0.871 -0.752 -0.923 -0.899 -0.875 + -0.895 -0.864 -0.858 -0.899 -0.739 -0.489 -1.066 -0.704 -0.814 -0.845 + -0.600 -0.592 -1.087 -0.608 -0.575 -0.935 -0.548 -0.771 -0.799 -1.067 + -0.457 -0.538 -0.748 -0.687 -0.858 -0.916 -0.449 -0.754 -0.392 -0.909 + -0.948 -0.664 -0.801 -0.930 -0.826 -0.752 -0.577 -0.431 -0.996 -0.892 + + 629 iasi616_metop-a 5183 0.423996E-01 + -0.625 -0.642 -0.744 -0.715 -0.536 -0.638 -0.658 -0.641 -0.469 -0.846 + -0.780 -0.722 -0.546 -0.725 -0.736 -0.667 -0.628 -0.651 -0.706 -0.553 + -0.639 -0.823 -0.640 -0.617 -0.625 -0.587 -0.806 -0.793 -0.564 -0.633 + -0.697 -0.629 -0.548 -0.750 -0.558 -0.627 -0.923 -0.766 -0.828 -0.561 + -0.620 -0.751 -0.922 -0.188 -0.592 -0.611 -0.530 -0.847 -0.733 -0.766 + -0.699 -0.499 -0.643 -0.622 -0.552 -0.285 -0.956 -0.433 -0.446 -0.813 + -0.613 -0.443 -0.866 -0.506 -0.270 -0.810 -0.598 -0.760 -0.463 -0.802 + -0.609 -0.566 -0.576 -0.503 -0.707 -0.838 -0.316 -0.786 -0.639 -0.762 + -0.780 -0.841 -0.635 -0.826 -0.581 -0.693 -0.646 -0.307 -0.875 -0.745 + + 630 iasi616_metop-a 5188 0.766968E-01 + -0.206 -0.405 -0.472 -0.421 -0.239 -0.414 -0.479 -0.536 -0.192 -0.498 + -0.647 -0.603 -0.400 -0.429 -0.604 -0.548 -0.495 -0.619 -0.409 -0.459 + -0.570 -0.783 -0.521 -0.571 -0.517 -0.478 -0.610 -0.692 -0.538 -0.494 + -0.385 -0.762 -0.635 -0.480 -0.202 -0.290 -0.360 -0.724 -0.227 -0.360 + -0.323 -0.644 -0.464 -0.385 -0.149 -0.068 -0.086 -0.490 -0.600 -0.248 + -0.415 -0.143 -0.426 -0.378 -0.689 -0.344 -0.482 -0.270 -0.078 -0.451 + -0.319 -0.118 -0.054 -0.267 -0.220 -0.544 -0.122 -0.632 0.186 -0.389 + -0.679 -0.406 -0.638 -0.287 -0.441 -0.689 -0.184 -0.258 -0.586 -0.222 + -0.380 -0.189 -0.188 -0.529 -0.461 -0.538 0.008 -0.406 -0.194 -0.286 + + 631 iasi616_metop-a 5191 0.796248E-01 + 0.054 0.251 0.014 0.295 0.139 0.137 -0.027 0.222 0.182 -0.209 + -0.116 -0.247 -0.029 0.177 -0.069 0.310 0.112 -0.268 -0.013 0.135 + -0.046 0.059 0.044 0.052 -0.021 0.026 -0.085 0.050 0.094 -0.040 + 0.022 0.025 0.106 0.367 -0.083 0.154 0.261 -0.237 0.579 0.270 + 0.505 0.268 -0.111 0.519 0.398 0.751 -0.119 0.302 0.101 0.207 + 0.512 0.394 0.370 0.344 0.307 0.507 0.490 0.134 0.209 -0.040 + 0.503 0.232 0.384 0.214 0.523 0.240 0.297 -0.014 0.328 0.227 + 0.136 0.271 0.430 0.034 0.278 0.062 0.147 0.362 0.278 0.254 + 0.214 0.262 0.274 -0.113 0.331 -0.024 0.228 0.307 0.154 0.564 + + 632 iasi616_metop-a 5368 0.291508E-01 + 0.126 0.122 -0.005 0.003 0.214 0.028 0.206 0.054 0.186 0.002 + 0.154 0.072 0.254 0.448 0.394 0.385 0.241 0.152 0.155 0.302 + 0.331 0.417 0.445 0.257 0.314 0.475 0.555 0.392 0.494 0.233 + -0.427 -0.456 -0.423 -0.277 -0.247 -0.525 -0.379 -0.587 -0.393 -0.296 + -0.224 -0.437 -0.673 -0.043 -0.372 -0.352 -0.481 -0.524 -0.435 -0.222 + -0.407 -0.587 -0.556 -0.653 -0.652 -0.266 -0.691 -0.257 -0.558 -0.507 + -0.323 -0.549 -0.661 -0.398 -0.203 -0.469 -0.177 -0.430 -0.298 -0.913 + -0.020 -0.214 -0.437 -0.302 -0.189 -0.575 -0.128 -0.189 -0.022 -0.627 + -0.597 -0.102 -0.428 -0.433 -0.334 -0.037 -0.087 -0.149 -0.489 -0.314 + + 633 iasi616_metop-a 5371 0.427218E-01 + -0.180 -0.143 -0.242 -0.255 -0.147 -0.230 -0.163 -0.202 -0.041 -0.303 + -0.256 -0.333 -0.151 -0.325 -0.401 -0.179 -0.161 -0.291 -0.317 -0.161 + -0.244 -0.392 -0.231 -0.181 -0.191 -0.215 -0.504 -0.427 -0.163 -0.229 + -0.314 -0.335 -0.192 -0.224 -0.146 -0.392 -0.469 -0.281 -0.387 -0.208 + -0.317 -0.322 -0.589 -0.062 -0.424 -0.144 -0.198 -0.466 -0.445 -0.259 + -0.319 -0.270 -0.406 -0.293 -0.243 -0.101 -0.575 -0.096 -0.160 -0.593 + -0.235 -0.014 -0.456 -0.248 -0.022 -0.465 -0.157 -0.358 -0.261 -0.555 + -0.227 -0.218 -0.362 -0.214 -0.315 -0.465 -0.266 -0.334 -0.090 -0.456 + -0.438 -0.289 -0.199 -0.564 -0.289 -0.320 -0.244 -0.015 -0.456 -0.374 + + 634 iasi616_metop-a 5379 0.369258E-01 + -0.194 -0.213 -0.285 -0.345 -0.130 -0.220 -0.252 -0.131 -0.071 -0.409 + -0.490 -0.327 -0.111 -0.303 -0.316 -0.243 -0.256 -0.321 -0.185 -0.123 + -0.353 -0.353 -0.282 -0.126 -0.195 -0.186 -0.395 -0.274 -0.177 -0.229 + -0.492 -0.368 -0.315 -0.418 -0.326 -0.375 -0.466 -0.514 -0.487 -0.238 + -0.174 -0.427 -0.743 -0.063 -0.376 -0.322 -0.320 -0.524 -0.559 -0.528 + -0.518 -0.449 -0.506 -0.554 -0.356 -0.052 -0.649 -0.324 -0.371 -0.398 + -0.294 -0.281 -0.552 -0.320 -0.124 -0.543 -0.267 -0.440 -0.268 -0.788 + -0.198 -0.304 -0.446 -0.376 -0.435 -0.483 -0.204 -0.472 -0.159 -0.590 + -0.545 -0.193 -0.406 -0.473 -0.401 -0.327 -0.286 -0.044 -0.532 -0.556 + + 635 iasi616_metop-a 5381 0.356110E-01 + -0.345 -0.271 -0.403 -0.468 -0.259 -0.242 -0.344 -0.337 -0.187 -0.454 + -0.442 -0.432 -0.258 -0.417 -0.468 -0.363 -0.378 -0.452 -0.272 -0.305 + -0.466 -0.477 -0.358 -0.355 -0.336 -0.315 -0.472 -0.530 -0.309 -0.292 + -0.653 -0.547 -0.539 -0.539 -0.453 -0.511 -0.724 -0.570 -0.550 -0.364 + -0.364 -0.573 -0.758 -0.222 -0.606 -0.392 -0.460 -0.741 -0.655 -0.606 + -0.644 -0.603 -0.658 -0.714 -0.479 -0.205 -0.804 -0.438 -0.528 -0.541 + -0.476 -0.473 -0.714 -0.433 -0.295 -0.651 -0.366 -0.549 -0.436 -0.907 + -0.303 -0.539 -0.542 -0.359 -0.474 -0.638 -0.362 -0.475 -0.259 -0.656 + -0.765 -0.343 -0.525 -0.685 -0.536 -0.400 -0.347 -0.102 -0.679 -0.569 + + 636 iasi616_metop-a 5383 0.383187E-01 + -0.468 -0.334 -0.450 -0.518 -0.331 -0.388 -0.431 -0.447 -0.265 -0.515 + -0.479 -0.545 -0.366 -0.527 -0.570 -0.426 -0.442 -0.544 -0.388 -0.372 + -0.465 -0.580 -0.472 -0.415 -0.424 -0.428 -0.617 -0.568 -0.377 -0.415 + -0.689 -0.546 -0.400 -0.464 -0.437 -0.593 -0.573 -0.595 -0.623 -0.554 + -0.515 -0.524 -0.827 -0.302 -0.587 -0.356 -0.427 -0.775 -0.660 -0.617 + -0.592 -0.606 -0.702 -0.695 -0.392 -0.256 -0.775 -0.409 -0.441 -0.605 + -0.504 -0.348 -0.657 -0.521 -0.282 -0.666 -0.403 -0.629 -0.522 -0.851 + -0.365 -0.520 -0.571 -0.516 -0.655 -0.725 -0.419 -0.552 -0.230 -0.673 + -0.687 -0.459 -0.495 -0.748 -0.614 -0.522 -0.385 -0.219 -0.845 -0.588 + + 637 iasi616_metop-a 5397 0.356181E-01 + -0.101 -0.184 -0.238 -0.328 -0.078 -0.247 -0.284 -0.264 -0.067 -0.437 + -0.442 -0.329 -0.215 -0.385 -0.462 -0.300 -0.332 -0.485 -0.293 -0.246 + -0.404 -0.458 -0.454 -0.284 -0.388 -0.396 -0.580 -0.557 -0.302 -0.372 + -0.362 -0.146 -0.308 -0.256 -0.144 -0.216 -0.282 -0.403 -0.315 -0.064 + -0.014 -0.292 -0.542 0.120 -0.100 -0.181 -0.210 -0.244 -0.321 -0.292 + -0.353 -0.243 -0.267 -0.373 -0.311 0.070 -0.478 -0.080 -0.267 -0.172 + -0.148 -0.145 -0.386 -0.067 0.042 -0.330 -0.070 -0.158 -0.115 -0.568 + 0.095 -0.078 -0.282 -0.086 -0.265 -0.243 -0.018 -0.208 0.010 -0.224 + -0.383 -0.070 -0.227 -0.285 -0.194 -0.097 -0.056 0.147 -0.354 -0.333 + + 638 iasi616_metop-a 5399 0.297239E-01 + -0.041 -0.053 -0.090 -0.153 0.040 -0.019 -0.085 -0.178 0.029 -0.145 + -0.212 -0.188 -0.084 -0.155 -0.167 -0.157 -0.168 -0.262 -0.066 -0.047 + -0.207 -0.202 -0.147 -0.191 -0.161 -0.089 -0.319 -0.345 -0.110 -0.088 + -0.308 -0.227 -0.209 -0.296 -0.134 -0.290 -0.271 -0.425 -0.241 -0.005 + -0.055 -0.330 -0.532 0.100 -0.165 -0.262 -0.353 -0.349 -0.225 -0.117 + -0.319 -0.323 -0.326 -0.505 -0.499 -0.024 -0.438 -0.154 -0.401 -0.262 + -0.201 -0.368 -0.569 -0.257 -0.004 -0.245 -0.023 -0.258 -0.023 -0.836 + 0.184 0.128 -0.241 -0.198 -0.183 -0.316 0.069 -0.116 0.057 -0.248 + -0.389 -0.046 -0.287 -0.192 -0.133 0.026 0.063 0.051 -0.258 -0.204 + + 639 iasi616_metop-a 5401 0.264364E-01 + -0.097 -0.008 -0.193 -0.163 -0.020 -0.082 -0.151 -0.203 0.128 -0.079 + -0.245 -0.171 -0.077 -0.183 -0.211 -0.144 -0.025 -0.166 -0.165 -0.029 + -0.114 -0.214 -0.145 -0.210 -0.124 -0.078 -0.332 -0.387 -0.021 -0.080 + -0.420 -0.221 -0.364 -0.217 -0.055 -0.538 -0.305 -0.523 -0.225 -0.128 + -0.185 -0.500 -0.628 -0.083 -0.282 -0.414 -0.391 -0.388 -0.253 -0.156 + -0.201 -0.437 -0.445 -0.551 -0.580 -0.095 -0.525 -0.371 -0.418 -0.489 + -0.099 -0.311 -0.659 -0.280 -0.086 -0.232 -0.043 -0.329 -0.106 -0.825 + 0.009 0.028 -0.223 -0.367 -0.065 -0.364 0.024 -0.142 0.007 -0.589 + -0.414 -0.096 -0.321 -0.235 -0.128 0.049 0.046 0.106 -0.287 -0.247 + + 640 iasi616_metop-a 5403 0.244118E-01 + -0.113 -0.044 -0.135 -0.251 -0.019 -0.045 -0.161 -0.209 0.059 -0.099 + -0.278 -0.204 -0.159 -0.207 -0.228 -0.150 -0.028 -0.245 -0.264 -0.074 + -0.158 -0.261 -0.134 -0.217 -0.159 -0.076 -0.373 -0.446 -0.040 -0.167 + -0.311 -0.223 -0.453 -0.220 -0.133 -0.561 -0.204 -0.532 -0.180 -0.169 + -0.254 -0.575 -0.576 -0.147 -0.358 -0.585 -0.410 -0.465 -0.160 -0.195 + -0.151 -0.353 -0.601 -0.504 -0.609 -0.130 -0.610 -0.284 -0.543 -0.359 + -0.249 -0.402 -0.540 -0.289 -0.064 -0.319 0.059 -0.345 -0.248 -0.825 + -0.085 0.039 -0.311 -0.530 -0.171 -0.436 -0.049 -0.255 0.033 -0.474 + -0.480 -0.196 -0.373 -0.250 -0.110 0.015 0.015 0.236 -0.220 -0.313 + + 641 iasi616_metop-a 5405 0.225485E-01 + -0.188 -0.089 -0.130 -0.383 0.017 -0.071 -0.194 -0.251 0.031 -0.153 + -0.221 -0.237 -0.201 -0.206 -0.307 -0.148 -0.103 -0.247 -0.289 -0.122 + -0.181 -0.190 -0.180 -0.175 -0.184 -0.139 -0.382 -0.394 -0.046 -0.177 + -0.335 -0.314 -0.556 -0.235 -0.142 -0.723 -0.297 -0.630 -0.251 -0.267 + -0.410 -0.634 -0.611 -0.444 -0.489 -0.722 -0.624 -0.551 -0.196 -0.287 + -0.289 -0.375 -0.682 -0.440 -0.555 -0.244 -0.742 -0.336 -0.664 -0.526 + -0.253 -0.475 -0.605 -0.348 -0.170 -0.391 -0.121 -0.417 -0.370 -0.827 + -0.062 -0.001 -0.416 -0.611 -0.272 -0.470 -0.103 -0.386 0.083 -0.556 + -0.499 -0.428 -0.313 -0.326 -0.159 -0.018 -0.014 0.058 -0.169 -0.420 + + 642 iasi616_metop-a 5446 0.159738E-01 + -0.447 -0.230 -0.471 -0.656 -0.084 -0.357 -0.404 -0.576 -0.190 -0.344 + -0.344 -0.395 -0.383 -0.420 -0.459 -0.455 -0.139 -0.376 -0.365 -0.252 + -0.329 -0.326 -0.251 -0.340 -0.234 -0.231 -0.426 -0.473 -0.152 -0.316 + -0.700 -0.639 -0.894 -0.538 -0.242 -0.929 -0.728 -0.579 -0.682 -0.437 + -0.728 -0.611 -0.652 -0.579 -0.519 -1.024 -0.650 -0.626 -0.391 -0.439 + -0.188 -0.650 -0.764 -0.742 -0.897 -0.546 -0.980 -0.643 -0.769 -0.599 + -0.570 -0.601 -0.812 -0.367 -0.374 -0.479 -0.431 -0.525 -0.734 -1.047 + -0.448 -0.489 -0.668 -0.810 -0.430 -0.705 -0.306 -0.402 -0.170 -0.512 + -0.714 -0.613 -0.555 -0.706 -0.601 -0.406 -0.562 -0.127 -0.522 -0.635 + + 643 iasi616_metop-a 5455 0.260590E-01 + -0.158 -0.303 -0.247 -0.413 -0.099 -0.217 -0.425 -0.385 -0.214 -0.381 + -0.586 -0.295 -0.392 -0.214 -0.444 -0.511 -0.292 -0.341 -0.420 -0.306 + -0.324 -0.422 -0.417 -0.392 -0.455 -0.395 -0.704 -0.673 -0.372 -0.409 + -0.572 -0.377 -0.467 -0.259 -0.215 -0.698 -0.399 -0.573 -0.328 -0.256 + -0.292 -0.529 -0.675 -0.161 -0.448 -0.453 -0.570 -0.549 -0.422 -0.241 + -0.334 -0.466 -0.628 -0.616 -0.729 -0.209 -0.676 -0.315 -0.575 -0.593 + -0.209 -0.397 -0.760 -0.394 -0.152 -0.286 -0.018 -0.458 -0.222 -0.783 + -0.108 -0.017 -0.325 -0.477 -0.201 -0.490 -0.085 -0.129 -0.151 -0.627 + -0.502 -0.138 -0.315 -0.315 -0.294 0.104 -0.073 0.078 -0.314 -0.340 + + 644 iasi616_metop-a 5472 0.169909E-01 + -0.518 -0.262 -0.635 -0.745 -0.227 -0.481 -0.517 -0.561 -0.269 -0.424 + -0.388 -0.468 -0.402 -0.496 -0.602 -0.368 -0.320 -0.504 -0.465 -0.261 + -0.384 -0.449 -0.362 -0.405 -0.304 -0.287 -0.571 -0.520 -0.214 -0.331 + -0.838 -0.859 -1.005 -0.802 -0.576 -1.135 -0.909 -0.735 -0.872 -0.604 + -0.922 -0.872 -0.799 -0.758 -0.736 -1.128 -0.814 -0.829 -0.597 -0.638 + -0.388 -0.868 -0.925 -0.844 -0.951 -0.744 -1.173 -0.791 -0.913 -0.775 + -0.707 -0.775 -0.899 -0.621 -0.635 -0.668 -0.511 -0.686 -0.815 -1.076 + -0.641 -0.620 -0.847 -0.880 -0.799 -0.802 -0.446 -0.566 -0.283 -0.830 + -0.948 -0.835 -0.752 -0.833 -0.705 -0.818 -0.654 -0.319 -0.739 -0.784 + + 645 iasi616_metop-a 5480 0.246612E-01 + -0.486 -0.505 -0.500 -0.578 -0.381 -0.486 -0.603 -0.645 -0.452 -0.553 + -0.731 -0.552 -0.643 -0.564 -0.724 -0.759 -0.459 -0.633 -0.654 -0.528 + -0.603 -0.676 -0.652 -0.655 -0.707 -0.672 -0.877 -0.902 -0.595 -0.662 + -0.735 -0.727 -0.850 -0.534 -0.464 -1.010 -0.709 -0.876 -0.556 -0.517 + -0.611 -0.855 -0.953 -0.553 -0.723 -0.808 -0.780 -0.899 -0.627 -0.479 + -0.537 -0.792 -0.948 -0.800 -0.933 -0.495 -0.944 -0.613 -0.894 -0.764 + -0.566 -0.687 -0.920 -0.679 -0.468 -0.651 -0.304 -0.653 -0.570 -0.982 + -0.340 -0.360 -0.659 -0.808 -0.549 -0.773 -0.402 -0.562 -0.309 -0.969 + -0.817 -0.546 -0.693 -0.524 -0.487 -0.290 -0.305 -0.259 -0.617 -0.503 + + 646 iasi616_metop-a 5483 0.306439E-01 + -0.340 -0.337 -0.350 -0.443 -0.176 -0.325 -0.341 -0.418 -0.296 -0.470 + -0.467 -0.502 -0.353 -0.403 -0.528 -0.409 -0.412 -0.480 -0.477 -0.390 + -0.422 -0.513 -0.426 -0.421 -0.441 -0.421 -0.701 -0.669 -0.366 -0.425 + -0.573 -0.503 -0.515 -0.477 -0.331 -0.546 -0.552 -0.628 -0.418 -0.378 + -0.267 -0.586 -0.763 -0.227 -0.506 -0.435 -0.596 -0.670 -0.573 -0.367 + -0.558 -0.610 -0.667 -0.697 -0.634 -0.251 -0.787 -0.355 -0.592 -0.591 + -0.533 -0.494 -0.751 -0.458 -0.302 -0.608 -0.283 -0.571 -0.453 -0.975 + -0.048 -0.324 -0.551 -0.285 -0.383 -0.660 -0.266 -0.358 -0.130 -0.620 + -0.652 -0.278 -0.484 -0.530 -0.467 -0.241 -0.215 -0.201 -0.602 -0.398 + + 647 iasi616_metop-a 5485 0.396749E-01 + -0.312 -0.292 -0.364 -0.370 -0.271 -0.326 -0.215 -0.321 -0.189 -0.427 + -0.384 -0.424 -0.249 -0.392 -0.421 -0.307 -0.260 -0.368 -0.348 -0.255 + -0.327 -0.523 -0.346 -0.321 -0.272 -0.338 -0.568 -0.514 -0.283 -0.296 + -0.478 -0.452 -0.328 -0.342 -0.269 -0.479 -0.581 -0.440 -0.521 -0.321 + -0.356 -0.390 -0.732 -0.192 -0.506 -0.196 -0.291 -0.587 -0.587 -0.429 + -0.491 -0.487 -0.573 -0.475 -0.294 -0.123 -0.659 -0.207 -0.360 -0.610 + -0.362 -0.180 -0.641 -0.402 -0.174 -0.480 -0.344 -0.504 -0.333 -0.613 + -0.251 -0.469 -0.443 -0.320 -0.522 -0.555 -0.272 -0.522 -0.217 -0.623 + -0.621 -0.306 -0.351 -0.582 -0.477 -0.305 -0.238 -0.107 -0.515 -0.423 + + 648 iasi616_metop-a 5492 0.445459E-01 + -0.099 -0.108 -0.238 -0.217 -0.123 -0.177 -0.214 -0.143 -0.008 -0.345 + -0.369 -0.282 -0.122 -0.220 -0.373 -0.191 -0.242 -0.298 -0.192 -0.143 + -0.359 -0.384 -0.252 -0.164 -0.206 -0.216 -0.412 -0.357 -0.213 -0.270 + -0.221 -0.166 -0.099 -0.085 -0.023 -0.184 -0.311 -0.103 -0.197 0.043 + -0.134 -0.144 -0.441 0.076 -0.226 0.104 0.008 -0.264 -0.363 -0.078 + -0.194 -0.116 -0.213 -0.144 0.052 0.075 -0.411 0.043 0.017 -0.382 + -0.152 0.169 -0.275 -0.045 0.208 -0.257 -0.133 -0.222 -0.091 -0.352 + -0.216 -0.093 -0.126 -0.029 -0.119 -0.309 -0.192 -0.173 -0.037 -0.175 + -0.195 -0.269 -0.061 -0.400 -0.119 -0.275 -0.084 0.198 -0.402 -0.284 + + 649 iasi616_metop-a 5497 0.638761E-01 + -0.098 -0.333 -0.317 -0.225 -0.011 -0.231 -0.329 -0.139 -0.020 -0.425 + -0.459 -0.364 -0.065 -0.235 -0.376 -0.216 -0.127 -0.304 -0.095 -0.036 + -0.327 -0.339 -0.196 -0.100 -0.183 -0.078 -0.265 -0.196 -0.114 -0.224 + -0.405 -0.491 -0.569 -0.564 -0.345 -0.317 -0.505 -0.752 -0.509 -0.429 + -0.243 -0.743 -0.512 -0.512 -0.416 -0.286 -0.272 -0.606 -0.422 -0.506 + -0.476 -0.371 -0.510 -0.553 -0.533 -0.361 -0.571 -0.545 -0.230 -0.556 + -0.401 -0.451 -0.537 -0.368 -0.177 -0.669 -0.408 -0.680 -0.327 -0.772 + -0.609 -0.310 -0.413 -0.428 -0.357 -0.525 -0.381 -0.654 -0.619 -0.387 + -0.450 -0.665 -0.278 -0.600 -0.314 -0.684 -0.269 -0.218 -0.487 -0.568 + + 650 iasi616_metop-a 5502 0.258862E-01 + -0.105 -0.077 -0.162 -0.279 -0.086 -0.131 -0.223 -0.180 -0.185 -0.299 + -0.440 -0.447 -0.229 -0.054 -0.282 -0.244 -0.204 -0.411 -0.209 -0.195 + -0.358 -0.274 -0.186 -0.293 -0.281 -0.132 -0.310 -0.399 -0.213 -0.203 + -0.190 -0.168 -0.246 -0.044 0.040 -0.349 -0.193 -0.350 -0.075 -0.065 + -0.089 -0.367 -0.463 -0.008 -0.261 -0.407 -0.362 -0.319 -0.114 -0.083 + -0.018 -0.253 -0.418 -0.333 -0.461 -0.011 -0.439 -0.153 -0.377 -0.438 + -0.121 -0.273 -0.491 -0.193 0.126 -0.105 0.180 -0.156 -0.034 -0.603 + 0.099 0.223 -0.201 -0.259 -0.023 -0.249 0.134 -0.048 0.101 -0.368 + -0.291 -0.057 -0.251 -0.100 -0.009 0.180 0.160 0.267 -0.037 -0.144 + + 651 iasi616_metop-a 5507 0.195584E-01 + -0.151 0.045 -0.204 -0.304 0.104 -0.084 -0.118 -0.182 0.078 -0.104 + -0.120 -0.150 -0.108 -0.195 -0.267 -0.092 -0.041 -0.153 -0.139 -0.015 + -0.108 -0.091 -0.075 -0.101 -0.058 -0.056 -0.321 -0.308 0.009 -0.059 + -0.365 -0.379 -0.673 -0.300 -0.042 -0.701 -0.397 -0.575 -0.330 -0.241 + -0.571 -0.493 -0.524 -0.331 -0.271 -0.845 -0.519 -0.472 -0.224 -0.309 + -0.062 -0.408 -0.608 -0.450 -0.554 -0.414 -0.771 -0.438 -0.635 -0.303 + -0.355 -0.345 -0.575 -0.214 -0.202 -0.371 -0.153 -0.458 -0.522 -0.832 + -0.170 -0.240 -0.420 -0.686 -0.290 -0.456 -0.059 -0.217 0.119 -0.488 + -0.482 -0.405 -0.401 -0.446 -0.234 -0.353 -0.238 -0.039 -0.257 -0.369 + + 652 iasi616_metop-a 5509 0.206040E-01 + -0.156 -0.159 -0.094 -0.383 0.018 -0.113 -0.280 -0.302 -0.225 -0.282 + -0.356 -0.275 -0.289 -0.276 -0.417 -0.390 -0.104 -0.245 -0.315 -0.172 + -0.250 -0.251 -0.212 -0.327 -0.244 -0.177 -0.424 -0.519 -0.167 -0.264 + -0.302 -0.490 -0.601 -0.243 -0.055 -0.654 -0.318 -0.564 -0.263 -0.163 + -0.550 -0.527 -0.520 -0.337 -0.429 -0.752 -0.534 -0.531 -0.262 -0.301 + -0.085 -0.444 -0.647 -0.432 -0.550 -0.328 -0.770 -0.408 -0.722 -0.457 + -0.385 -0.370 -0.554 -0.193 -0.193 -0.282 -0.042 -0.447 -0.510 -0.818 + -0.028 -0.226 -0.424 -0.602 -0.212 -0.469 -0.122 -0.257 0.027 -0.621 + -0.536 -0.358 -0.352 -0.418 -0.185 -0.262 -0.109 -0.017 -0.157 -0.378 + + 653 iasi616_metop-a 5517 0.190175E-01 + -0.137 -0.091 -0.176 -0.426 0.041 -0.155 -0.299 -0.293 -0.083 -0.201 + -0.291 -0.196 -0.269 -0.266 -0.422 -0.301 -0.096 -0.230 -0.323 -0.106 + -0.225 -0.198 -0.196 -0.289 -0.198 -0.241 -0.419 -0.434 -0.137 -0.272 + -0.339 -0.417 -0.618 -0.325 -0.014 -0.622 -0.311 -0.544 -0.300 -0.199 + -0.514 -0.477 -0.433 -0.303 -0.240 -0.865 -0.481 -0.432 -0.255 -0.287 + -0.049 -0.297 -0.625 -0.418 -0.573 -0.299 -0.754 -0.413 -0.692 -0.415 + -0.317 -0.366 -0.567 -0.201 -0.162 -0.362 -0.196 -0.413 -0.460 -0.778 + -0.137 -0.161 -0.334 -0.583 -0.293 -0.428 0.005 -0.271 0.115 -0.356 + -0.477 -0.325 -0.425 -0.446 -0.209 -0.227 -0.147 0.004 -0.218 -0.338 + + 654 iasi616_metop-a 5528 0.578624E-01 + 0.085 -0.148 -0.091 -0.145 0.240 -0.171 -0.178 -0.110 0.016 -0.287 + -0.222 -0.184 -0.076 -0.092 -0.463 -0.209 -0.002 -0.070 -0.125 -0.095 + -0.092 -0.194 -0.080 -0.162 -0.112 -0.140 -0.355 -0.400 -0.148 -0.195 + -0.268 -0.152 -0.231 -0.261 -0.046 0.029 -0.291 -0.437 -0.320 -0.200 + -0.107 -0.326 -0.373 -0.243 -0.207 -0.073 -0.035 -0.377 -0.414 -0.211 + -0.171 -0.063 -0.294 -0.214 -0.153 -0.037 -0.406 -0.164 -0.018 -0.422 + -0.240 0.112 -0.293 -0.177 0.128 -0.425 -0.090 -0.482 -0.055 -0.456 + -0.352 -0.106 -0.203 -0.163 -0.208 -0.243 -0.202 -0.346 -0.259 -0.107 + -0.233 -0.344 -0.101 -0.337 -0.173 -0.274 -0.081 0.106 -0.391 -0.444 + + 655 iasi616_metop-a 5558 0.261629E-01 + -0.148 -0.141 -0.281 -0.449 -0.057 -0.103 -0.286 -0.172 -0.071 -0.250 + -0.412 -0.291 -0.201 -0.083 -0.239 -0.163 -0.097 -0.353 -0.103 -0.004 + -0.285 -0.156 -0.138 -0.140 -0.177 -0.015 -0.187 -0.208 -0.046 -0.110 + -0.538 -0.460 -0.607 -0.341 -0.258 -0.569 -0.386 -0.676 -0.335 -0.273 + -0.354 -0.629 -0.740 -0.413 -0.528 -0.728 -0.596 -0.584 -0.337 -0.298 + -0.169 -0.477 -0.750 -0.709 -0.769 -0.235 -0.749 -0.538 -0.710 -0.478 + -0.329 -0.449 -0.642 -0.378 -0.144 -0.429 -0.147 -0.469 -0.291 -1.095 + -0.177 -0.098 -0.417 -0.574 -0.322 -0.596 -0.272 -0.279 -0.190 -0.645 + -0.531 -0.370 -0.539 -0.326 -0.181 -0.200 -0.113 -0.030 -0.318 -0.483 + + 656 iasi616_metop-a 5697 0.290540E-01 + -0.431 -0.537 -0.708 -0.761 -0.262 -0.534 -0.531 -0.663 -0.280 -0.630 + -0.450 -0.439 -0.346 -0.638 -0.510 -0.539 -0.266 -0.429 -0.597 -0.364 + -0.293 -0.403 -0.336 -0.420 -0.380 -0.396 -0.574 -0.602 -0.205 -0.351 + -0.735 -0.735 -0.801 -0.673 -0.434 -0.620 -0.656 -0.870 -0.346 -0.629 + -0.507 -0.878 -0.685 -0.674 -0.557 -1.214 -0.691 -0.692 -0.526 -0.746 + -0.118 -0.663 -0.817 -1.019 -1.092 -0.459 -0.741 -0.680 -0.926 -0.591 + -0.485 -0.834 -0.811 -0.448 -0.215 -0.822 -0.469 -0.499 -0.630 -1.356 + -0.386 -0.593 -0.467 -0.691 -0.570 -0.756 -0.250 -0.599 -0.185 -0.618 + -0.459 -0.809 -0.636 -0.744 -0.294 -0.707 -0.379 -0.303 -0.625 -0.939 + + 657 iasi616_metop-a 5714 0.243659E-01 + -0.501 -0.619 -0.685 -0.798 -0.502 -0.549 -0.626 -0.791 -0.388 -0.585 + -0.630 -0.688 -0.683 -0.792 -0.603 -0.919 -0.462 -0.608 -0.823 -0.750 + -0.549 -0.602 -0.565 -0.874 -0.692 -0.813 -0.931 -1.108 -0.675 -0.803 + -0.585 -0.796 -0.852 -0.442 -0.416 -0.682 -0.614 -0.786 -0.392 -0.442 + -0.496 -0.621 -0.825 -0.498 -0.644 -0.807 -0.868 -0.749 -0.543 -0.488 + -0.108 -0.565 -0.869 -0.578 -0.935 -0.359 -0.979 -0.694 -0.796 -0.601 + -0.547 -0.490 -0.765 -0.367 -0.320 -0.586 -0.404 -0.574 -0.874 -1.156 + -0.340 -0.468 -0.423 -0.769 -0.442 -0.740 -0.403 -0.320 -0.150 -0.597 + -0.580 -0.612 -0.653 -0.653 -0.483 -0.498 -0.405 -0.241 -0.616 -0.626 + + 658 iasi616_metop-a 5749 0.358218E-01 + 0.070 0.009 0.047 -0.075 0.095 -0.049 -0.052 -0.161 -0.040 -0.191 + -0.245 -0.154 -0.174 -0.170 -0.335 -0.467 -0.202 -0.254 -0.466 -0.344 + -0.265 -0.404 -0.263 -0.408 -0.438 -0.517 -0.852 -0.740 -0.413 -0.503 + -0.156 -0.088 -0.071 0.117 0.129 -0.048 -0.171 -0.176 0.212 0.183 + 0.098 -0.050 -0.139 0.113 -0.162 -0.113 -0.018 -0.247 -0.067 -0.038 + 0.260 0.014 -0.178 -0.378 -0.467 0.073 -0.359 0.085 -0.103 -0.169 + 0.023 -0.077 -0.280 0.075 0.272 -0.290 0.134 -0.027 -0.089 -0.677 + 0.281 0.062 -0.041 0.050 0.002 -0.211 0.120 -0.002 0.305 -0.184 + -0.208 0.033 -0.034 -0.117 0.026 0.056 0.239 0.397 0.013 -0.114 + + 659 iasi616_metop-a 5766 0.194927E-01 + 0.246 0.326 0.108 0.095 0.365 0.170 0.204 0.104 0.430 0.256 + 0.249 0.238 0.133 0.177 0.070 0.101 0.360 0.202 0.088 0.379 + 0.309 0.263 0.279 0.217 0.240 0.134 0.075 0.049 0.371 0.184 + 0.250 0.438 0.146 0.469 0.694 0.243 0.254 0.103 0.737 0.441 + 0.466 0.314 0.332 0.419 0.321 -0.096 0.047 0.313 0.509 0.290 + 0.753 0.269 0.023 0.031 0.014 0.581 -0.078 0.189 0.104 0.354 + 0.183 0.273 -0.034 0.584 0.712 0.242 0.376 0.382 0.273 -0.297 + 0.561 0.481 0.417 0.241 0.363 0.083 0.377 0.536 0.641 0.423 + 0.317 0.152 0.374 0.375 0.294 0.372 0.460 0.624 0.262 0.199 + + 660 iasi616_metop-a 5785 0.156269E-01 + 0.303 0.224 0.267 0.154 0.391 0.337 0.241 0.286 0.403 0.279 + 0.179 0.264 0.168 0.285 0.258 0.137 0.374 0.328 0.146 0.263 + 0.372 0.391 0.408 0.266 0.306 0.286 0.087 -0.011 0.373 0.197 + -0.022 -0.124 -0.212 0.104 0.286 -0.041 0.055 -0.235 0.082 0.199 + 0.040 -0.153 -0.198 0.194 -0.163 -0.383 -0.253 -0.210 0.024 0.065 + 0.357 0.094 -0.300 -0.121 -0.284 0.172 -0.411 -0.086 -0.336 -0.004 + -0.003 0.001 -0.185 0.274 0.266 -0.004 0.181 -0.021 -0.041 -0.469 + 0.157 0.209 -0.008 -0.169 0.033 -0.132 0.151 0.134 0.325 -0.222 + -0.092 -0.027 -0.081 0.121 0.131 0.057 0.235 0.362 0.157 -0.136 + + 661 iasi616_metop-a 5798 0.102113E-01 + -0.160 0.014 -0.295 -0.323 0.129 -0.090 -0.191 -0.082 0.113 -0.039 + 0.020 -0.075 -0.047 -0.068 -0.272 -0.166 0.194 -0.035 -0.154 0.041 + 0.075 0.161 0.038 -0.003 0.135 0.094 -0.118 -0.116 0.160 0.115 + -0.368 -0.208 -0.701 -0.243 0.025 -0.573 -0.400 -0.314 -0.270 -0.398 + -0.460 -0.180 -0.330 -0.220 -0.333 -0.672 -0.431 -0.410 -0.204 -0.203 + -0.045 -0.412 -0.478 -0.532 -0.609 -0.284 -0.792 -0.416 -0.548 -0.266 + -0.460 -0.438 -0.563 -0.115 -0.098 -0.144 -0.163 -0.360 -0.611 -0.689 + -0.218 -0.147 -0.407 -0.431 -0.270 -0.554 -0.244 -0.088 -0.013 -0.383 + -0.419 -0.371 -0.437 -0.455 -0.364 -0.377 -0.372 -0.101 -0.346 -0.330 + + 662 iasi616_metop-a 5799 0.113504E-01 + -0.111 -0.068 -0.259 -0.294 -0.004 -0.226 -0.350 -0.285 0.003 -0.241 + -0.278 -0.150 -0.266 -0.182 -0.328 -0.370 -0.011 -0.176 -0.352 -0.228 + -0.115 -0.088 -0.187 -0.307 -0.280 -0.188 -0.476 -0.533 -0.233 -0.240 + -0.142 -0.028 -0.429 -0.075 0.192 -0.133 -0.141 -0.081 -0.072 -0.166 + -0.251 0.048 -0.207 -0.115 -0.116 -0.592 -0.316 -0.154 0.023 0.022 + 0.412 -0.221 -0.407 -0.415 -0.473 0.032 -0.685 -0.190 -0.408 -0.159 + -0.407 -0.095 -0.493 0.156 0.071 -0.042 0.006 -0.170 -0.351 -0.648 + -0.108 -0.036 -0.295 -0.303 -0.028 -0.411 -0.220 0.204 0.102 -0.134 + -0.299 -0.207 -0.237 -0.267 -0.265 -0.188 -0.236 0.162 -0.264 -0.106 + + 663 iasi616_metop-a 5801 0.168813E-01 + 0.332 0.261 0.195 0.158 0.322 0.155 0.057 0.159 0.332 0.092 + 0.014 0.242 0.046 0.060 0.121 -0.050 0.245 0.085 -0.015 0.138 + 0.196 0.075 0.160 0.010 -0.030 -0.017 -0.265 -0.276 0.120 -0.051 + 0.227 0.337 0.164 0.558 0.651 0.384 0.293 0.238 0.652 0.442 + 0.480 0.115 0.223 0.467 0.331 -0.015 0.121 0.096 0.445 0.365 + 0.790 0.331 0.013 -0.063 -0.039 0.554 -0.151 0.229 -0.054 0.327 + 0.338 0.143 -0.048 0.477 0.615 0.163 0.412 0.443 0.226 -0.438 + 0.413 0.469 0.543 0.059 0.304 0.156 0.360 0.408 0.613 0.317 + 0.290 0.109 0.441 0.453 0.321 0.404 0.406 0.819 0.299 0.211 + + 664 iasi616_metop-a 5817 0.175513E-01 + 0.457 0.430 0.310 0.237 0.579 0.341 0.362 0.359 0.684 0.376 + 0.431 0.438 0.471 0.413 0.291 0.098 0.652 0.451 0.193 0.405 + 0.523 0.490 0.509 0.326 0.355 0.334 0.164 0.109 0.490 0.207 + 0.462 0.581 0.219 0.511 0.765 0.549 0.257 0.093 0.747 0.517 + 0.534 0.433 0.340 0.302 0.423 -0.148 0.255 0.244 0.711 0.429 + 0.810 0.388 0.079 0.032 0.008 0.552 -0.110 0.310 0.053 0.497 + 0.302 0.267 -0.008 0.652 0.701 0.309 0.435 0.363 0.292 -0.419 + 0.603 0.381 0.461 0.198 0.374 0.037 0.328 0.510 0.577 0.389 + 0.328 0.207 0.376 0.347 0.328 0.295 0.575 0.604 0.235 0.235 + + 665 iasi616_metop-a 5833 0.132340E-01 + 0.359 0.369 0.189 0.186 0.428 0.224 0.192 0.344 0.409 0.403 + 0.320 0.272 0.288 0.268 0.199 0.037 0.504 0.410 0.142 0.287 + 0.434 0.487 0.428 0.211 0.291 0.250 0.081 -0.049 0.340 0.143 + 0.165 0.286 -0.046 0.272 0.573 0.225 -0.129 0.043 0.366 0.277 + 0.126 0.254 -0.016 0.157 0.149 -0.294 -0.066 0.004 0.324 0.314 + 0.598 -0.042 -0.195 -0.177 -0.251 0.288 -0.513 -0.013 -0.078 0.185 + 0.063 0.066 -0.179 0.414 0.447 0.205 0.211 0.109 -0.089 -0.409 + 0.225 0.213 0.156 -0.006 0.268 -0.252 0.129 0.354 0.345 0.179 + 0.049 -0.035 0.009 0.160 -0.009 0.112 0.071 0.511 0.042 0.105 + + 666 iasi616_metop-a 5834 0.204702E-01 + 0.706 0.566 0.481 0.486 0.651 0.400 0.411 0.370 0.600 0.417 + 0.290 0.529 0.389 0.339 0.459 0.185 0.502 0.425 0.212 0.356 + 0.496 0.467 0.450 0.333 0.263 0.170 0.061 0.036 0.356 0.195 + 0.732 0.908 0.556 0.830 1.083 0.853 0.470 0.484 1.043 0.888 + 0.868 0.546 0.667 0.709 0.743 0.142 0.355 0.511 1.017 0.566 + 1.085 0.596 0.299 0.172 0.199 0.852 0.140 0.598 0.371 0.594 + 0.547 0.496 0.180 0.728 1.001 0.401 0.687 0.679 0.673 -0.005 + 0.973 0.647 0.816 0.486 0.730 0.447 0.564 0.650 0.882 0.562 + 0.615 0.596 0.749 0.631 0.486 0.479 0.745 0.985 0.545 0.480 + + 667 iasi616_metop-a 5836 0.466908E-02 + 0.129 0.141 0.026 -0.014 0.339 0.062 0.133 0.328 0.463 0.281 + 0.382 0.280 0.354 0.300 0.295 0.160 0.515 0.448 0.116 0.400 + 0.522 0.570 0.510 0.394 0.483 0.441 0.281 0.201 0.445 0.367 + -0.156 -0.102 -0.590 -0.154 0.302 -0.236 -0.467 -0.125 -0.121 -0.193 + -0.372 0.016 -0.137 -0.154 -0.326 -0.641 -0.475 -0.403 -0.084 -0.079 + -0.081 -0.478 -0.259 -0.469 -0.564 -0.207 -0.749 -0.487 -0.403 -0.194 + -0.426 -0.296 -0.558 0.147 -0.279 -0.115 -0.256 -0.245 -0.513 -0.824 + 0.070 -0.186 -0.495 -0.440 -0.008 -0.691 -0.291 -0.049 -0.089 -0.243 + -0.525 -0.221 -0.426 -0.638 -0.296 -0.375 -0.499 -0.077 -0.273 -0.358 + + 668 iasi616_metop-a 5849 0.837071E-02 + -0.185 -0.130 -0.424 -0.401 -0.039 -0.288 -0.387 -0.355 -0.107 -0.243 + -0.434 -0.229 -0.326 -0.218 -0.317 -0.563 -0.144 -0.251 -0.421 -0.309 + -0.287 -0.186 -0.270 -0.286 -0.398 -0.396 -0.610 -0.583 -0.287 -0.325 + -0.424 -0.432 -0.676 -0.163 0.041 -0.568 -0.413 -0.349 0.017 -0.314 + -0.374 -0.183 -0.345 -0.300 -0.317 -0.560 -0.458 -0.297 -0.111 -0.039 + 0.231 -0.517 -0.669 -0.327 -0.605 -0.090 -0.719 -0.315 -0.533 -0.215 + -0.439 -0.235 -0.540 -0.100 -0.054 -0.114 -0.291 -0.349 -0.431 -0.751 + -0.179 -0.181 -0.288 -0.337 -0.285 -0.524 -0.206 -0.159 0.074 -0.410 + -0.369 -0.350 -0.392 -0.399 -0.352 -0.249 -0.281 -0.117 -0.369 -0.183 + + 669 iasi616_metop-a 5851 0.244260E-01 + 0.370 0.112 0.212 0.209 0.383 0.137 0.097 0.073 0.270 -0.039 + -0.059 0.235 0.128 0.010 0.037 -0.130 0.105 -0.005 -0.098 -0.004 + 0.192 -0.023 0.089 -0.011 -0.117 -0.222 -0.420 -0.291 -0.017 -0.198 + 0.177 0.219 0.303 0.393 0.530 0.291 0.242 0.042 0.647 0.456 + 0.471 0.185 0.180 0.393 0.232 -0.081 0.116 0.038 0.297 0.105 + 0.586 0.223 -0.040 -0.173 -0.141 0.431 -0.041 0.162 0.075 0.206 + 0.315 0.082 -0.014 0.425 0.508 -0.044 0.342 0.297 0.254 -0.547 + 0.463 0.187 0.422 0.134 0.307 0.137 0.418 0.217 0.494 0.187 + 0.356 0.145 0.324 0.142 0.291 0.247 0.457 0.620 0.442 0.028 + + 670 iasi616_metop-a 5852 0.147287E-01 + 0.124 0.292 -0.054 -0.087 0.326 0.203 0.098 0.147 0.362 0.277 + 0.368 0.152 0.106 0.188 0.167 0.072 0.395 0.347 0.098 0.314 + 0.376 0.408 0.381 0.153 0.320 0.260 0.175 0.038 0.398 0.277 + -0.074 -0.101 -0.272 0.222 0.235 -0.099 -0.074 -0.092 0.266 0.200 + 0.033 -0.046 -0.059 0.044 -0.031 -0.364 -0.129 0.041 0.266 0.137 + 0.500 -0.013 -0.257 -0.199 -0.299 0.334 -0.407 -0.143 -0.320 0.079 + -0.046 0.007 -0.312 0.244 0.286 0.014 -0.024 0.095 -0.422 -0.406 + 0.261 0.127 -0.025 -0.136 0.036 -0.211 0.096 0.278 0.331 -0.009 + -0.093 -0.089 -0.013 0.018 0.082 -0.068 0.081 0.276 -0.060 -0.050 + + 671 iasi616_metop-a 5865 0.760777E-02 + -0.195 -0.164 -0.268 -0.368 -0.055 -0.240 -0.282 -0.121 0.186 -0.121 + -0.238 -0.153 -0.082 -0.041 -0.240 -0.223 0.136 0.015 -0.318 0.027 + 0.067 0.092 -0.012 -0.032 -0.103 0.025 -0.338 -0.213 -0.014 -0.064 + -0.336 -0.070 -0.499 -0.274 0.298 -0.283 -0.598 -0.145 -0.223 -0.414 + -0.361 -0.018 -0.252 -0.314 -0.492 -0.693 -0.473 -0.449 -0.262 -0.023 + -0.237 -0.504 -0.222 -0.572 -0.658 -0.329 -0.943 -0.439 -0.652 -0.305 + -0.525 -0.243 -0.499 -0.002 -0.466 -0.144 -0.290 -0.415 -0.568 -0.771 + 0.025 -0.040 -0.554 -0.380 -0.100 -0.872 -0.343 -0.165 -0.122 -0.480 + -0.549 -0.421 -0.444 -0.746 -0.329 -0.429 -0.466 -0.219 -0.495 -0.350 + + 672 iasi616_metop-a 5869 0.128020E-01 + -0.324 -0.175 -0.507 -0.472 -0.220 -0.280 -0.475 -0.307 -0.194 -0.455 + -0.505 -0.184 -0.285 -0.277 -0.332 -0.485 -0.146 -0.317 -0.388 -0.192 + -0.327 -0.162 -0.271 -0.394 -0.436 -0.403 -0.669 -0.551 -0.331 -0.482 + -0.133 0.004 -0.451 -0.155 0.264 -0.282 -0.484 -0.120 -0.118 -0.275 + -0.343 -0.042 -0.185 -0.115 -0.328 -0.663 -0.387 -0.310 -0.117 -0.027 + -0.036 -0.321 -0.313 -0.471 -0.575 -0.214 -0.748 -0.386 -0.548 -0.193 + -0.533 -0.198 -0.527 0.079 -0.200 -0.118 -0.263 -0.267 -0.579 -0.834 + -0.073 -0.154 -0.468 -0.316 -0.042 -0.692 -0.315 -0.094 -0.041 -0.324 + -0.474 -0.240 -0.317 -0.410 -0.280 -0.211 -0.410 0.028 -0.386 -0.363 + + 673 iasi616_metop-a 5881 0.391279E-01 + 0.455 0.223 0.227 0.238 0.537 0.082 0.124 0.151 0.291 -0.123 + 0.002 0.113 0.155 0.061 0.037 -0.135 0.114 -0.064 -0.118 -0.051 + 0.011 -0.126 -0.024 0.083 -0.106 -0.239 -0.415 -0.327 -0.122 -0.249 + -0.023 -0.059 0.073 0.044 0.139 -0.057 -0.144 -0.215 0.019 0.059 + 0.296 -0.140 -0.189 0.022 -0.012 0.004 0.052 -0.171 -0.028 -0.217 + 0.007 0.030 -0.112 -0.316 -0.089 -0.057 -0.231 -0.042 -0.061 -0.248 + 0.076 -0.052 -0.234 0.025 0.306 -0.352 -0.008 -0.150 0.134 -0.525 + 0.002 0.030 -0.024 -0.045 -0.138 -0.024 0.090 -0.139 0.150 -0.120 + 0.012 -0.049 0.019 -0.305 0.184 -0.028 0.147 0.253 0.026 -0.300 + + 674 iasi616_metop-a 5884 0.277290E-01 + 0.556 0.559 0.480 0.343 0.472 0.501 0.543 0.147 0.620 0.306 + 0.267 0.333 0.352 0.353 0.374 0.206 0.423 0.251 0.439 0.410 + 0.297 0.350 0.377 0.247 0.243 0.354 0.196 0.048 0.436 0.312 + 0.631 0.686 0.607 0.909 0.910 0.747 0.614 0.556 1.070 0.875 + 0.849 0.638 0.664 0.936 0.621 0.532 0.462 0.374 0.796 0.508 + 1.090 0.698 0.259 0.401 0.473 0.873 0.238 0.684 0.600 0.572 + 0.694 0.726 0.280 0.908 0.865 0.305 0.825 0.718 0.658 0.093 + 0.921 0.489 0.870 0.638 0.682 0.475 0.708 0.650 0.892 0.561 + 0.688 0.512 0.657 0.695 0.574 0.743 0.817 0.958 0.875 0.665 + + 675 iasi616_metop-a 5897 -0.235258E-02 + 0.034 0.150 -0.077 -0.099 0.329 0.153 0.103 0.281 0.524 0.296 + 0.384 0.353 0.299 0.263 0.281 0.330 0.531 0.456 0.131 0.590 + 0.614 0.577 0.481 0.514 0.620 0.566 0.406 0.437 0.624 0.510 + -0.460 -0.222 -0.658 -0.411 0.053 -0.530 -0.600 -0.306 -0.310 -0.541 + -0.507 -0.320 -0.246 -0.348 -0.434 -0.782 -0.663 -0.630 -0.367 -0.331 + -0.309 -0.676 -0.504 -0.646 -0.688 -0.506 -0.876 -0.638 -0.750 -0.376 + -0.487 -0.465 -0.683 -0.202 -0.440 -0.333 -0.399 -0.440 -0.578 -0.962 + -0.384 -0.418 -0.590 -0.546 -0.257 -0.889 -0.494 -0.308 -0.246 -0.552 + -0.746 -0.519 -0.560 -0.648 -0.517 -0.570 -0.557 -0.336 -0.628 -0.665 + + 676 iasi616_metop-a 5900 0.201086E-01 + 0.665 0.509 0.297 0.433 0.535 0.277 0.276 0.168 0.520 0.104 + -0.026 0.236 0.214 0.044 0.064 -0.204 0.275 0.046 -0.111 0.051 + 0.014 0.013 0.039 -0.117 -0.151 -0.277 -0.472 -0.473 -0.066 -0.233 + 0.867 1.071 0.794 1.044 1.255 1.309 0.584 0.585 1.299 0.839 + 0.976 0.701 0.991 0.915 0.611 0.264 0.475 0.648 1.085 0.701 + 1.212 0.712 0.363 0.348 0.402 1.000 0.250 0.806 0.366 0.725 + 0.633 0.588 0.448 0.953 1.069 0.589 0.733 0.819 0.661 -0.005 + 1.017 0.751 0.880 0.575 0.758 0.454 0.559 0.769 0.863 0.761 + 0.835 0.683 0.790 0.892 0.641 0.539 0.865 1.161 0.663 0.617 + + 677 iasi616_metop-a 5916 0.185408E-01 + 0.776 0.768 0.693 0.614 0.872 0.685 0.690 0.682 0.945 0.799 + 0.854 0.918 0.704 0.776 0.753 0.550 0.987 0.793 0.492 0.679 + 0.846 0.901 0.860 0.613 0.735 0.638 0.545 0.480 0.831 0.590 + 0.604 0.746 0.582 0.862 0.888 0.771 0.439 0.377 0.986 0.704 + 0.723 0.439 0.673 0.830 0.558 0.173 0.247 0.364 0.760 0.519 + 0.959 0.486 0.146 0.167 0.242 0.730 0.061 0.613 0.249 0.516 + 0.456 0.460 0.177 0.764 0.880 0.296 0.629 0.726 0.477 -0.195 + 0.822 0.597 0.561 0.548 0.538 0.363 0.473 0.554 0.789 0.477 + 0.552 0.492 0.756 0.626 0.505 0.482 0.753 0.866 0.394 0.540 + + 678 iasi616_metop-a 5932 0.172105E-01 + 0.820 0.630 0.595 0.635 0.870 0.555 0.650 0.705 0.910 0.700 + 0.685 0.747 0.647 0.595 0.636 0.435 0.823 0.651 0.370 0.703 + 0.793 0.759 0.800 0.580 0.641 0.459 0.405 0.379 0.707 0.399 + 0.728 0.905 0.595 1.026 1.164 1.046 0.591 0.346 1.106 0.808 + 0.802 0.606 0.740 0.836 0.399 0.031 0.392 0.406 0.995 0.512 + 1.108 0.449 0.229 0.087 0.239 0.803 0.064 0.654 0.173 0.675 + 0.379 0.410 0.219 0.933 1.019 0.440 0.522 0.806 0.575 -0.209 + 0.819 0.604 0.711 0.447 0.641 0.357 0.565 0.576 0.780 0.599 + 0.665 0.362 0.596 0.637 0.555 0.341 0.735 0.738 0.606 0.523 + + 679 iasi616_metop-a 5948 0.218333E-01 + 0.664 0.688 0.473 0.526 0.772 0.405 0.546 0.700 0.839 0.606 + 0.591 0.668 0.558 0.564 0.591 0.338 0.838 0.644 0.382 0.575 + 0.727 0.863 0.772 0.494 0.658 0.496 0.455 0.322 0.723 0.443 + 0.632 0.795 0.345 0.849 1.029 0.738 0.341 0.311 0.971 0.665 + 0.599 0.548 0.433 0.629 0.309 -0.122 0.157 0.313 0.849 0.513 + 0.849 0.403 0.121 0.021 0.022 0.647 -0.123 0.321 0.198 0.471 + 0.444 0.385 0.098 0.801 0.798 0.370 0.643 0.504 0.165 -0.357 + 0.814 0.575 0.483 0.163 0.498 0.113 0.607 0.607 0.610 0.481 + 0.434 0.314 0.437 0.456 0.388 0.290 0.554 0.831 0.362 0.346 + + 680 iasi616_metop-a 5963 0.309062E-01 + 0.607 0.554 0.471 0.397 0.604 0.401 0.460 0.427 0.545 0.415 + 0.398 0.426 0.421 0.450 0.468 0.260 0.614 0.529 0.369 0.364 + 0.478 0.553 0.541 0.344 0.435 0.301 0.257 0.117 0.529 0.317 + 0.400 0.291 0.238 0.547 0.602 0.568 0.213 0.171 0.736 0.459 + 0.438 0.217 0.263 0.512 0.277 -0.015 0.054 0.017 0.467 0.240 + 0.661 0.240 -0.060 0.028 -0.165 0.530 -0.181 0.213 0.103 0.375 + 0.355 0.166 0.060 0.479 0.672 0.073 0.428 0.503 0.335 -0.315 + 0.671 0.504 0.586 0.312 0.339 0.133 0.429 0.501 0.650 0.271 + 0.280 0.106 0.516 0.403 0.336 0.455 0.544 0.701 0.307 0.223 + + 681 iasi616_metop-a 5968 0.277960E-01 + 0.229 0.124 0.111 0.084 0.291 0.203 0.146 0.115 0.315 0.254 + 0.122 0.205 0.194 0.181 0.094 -0.015 0.314 0.182 0.017 0.220 + 0.317 0.192 0.299 0.106 0.290 0.190 -0.028 -0.095 0.318 0.143 + -0.357 -0.234 -0.364 -0.050 -0.097 -0.427 -0.200 -0.392 -0.071 -0.025 + -0.168 -0.288 -0.440 0.035 -0.315 -0.287 -0.366 -0.317 -0.302 -0.027 + -0.125 -0.361 -0.610 -0.350 -0.525 -0.099 -0.570 -0.273 -0.378 -0.254 + -0.095 -0.207 -0.369 -0.177 0.054 -0.121 0.106 -0.129 -0.120 -0.624 + 0.062 0.078 -0.099 -0.247 -0.150 -0.314 -0.028 0.053 0.153 -0.387 + -0.328 -0.056 -0.174 -0.178 -0.020 0.179 0.097 0.210 -0.118 -0.146 + + 682 iasi616_metop-a 5978 0.389876E-01 + 0.134 0.056 0.028 0.019 0.293 0.072 0.033 0.051 0.214 -0.061 + -0.068 -0.011 0.087 -0.061 -0.195 -0.036 0.069 -0.025 -0.044 0.118 + 0.036 -0.081 -0.028 0.030 0.025 -0.086 -0.318 -0.235 0.116 -0.041 + -0.319 -0.100 -0.196 -0.054 -0.034 -0.149 -0.184 -0.373 -0.067 0.120 + 0.054 -0.262 -0.443 -0.106 -0.170 -0.240 -0.075 -0.326 -0.147 -0.311 + -0.002 -0.243 -0.277 -0.458 -0.523 -0.142 -0.360 -0.160 -0.301 -0.158 + -0.019 -0.278 -0.456 -0.195 0.285 -0.460 0.132 -0.124 -0.139 -0.836 + 0.275 -0.084 -0.127 -0.117 -0.041 -0.412 0.191 -0.215 0.147 -0.320 + -0.332 -0.057 -0.174 -0.301 0.107 -0.035 0.194 0.219 -0.018 -0.247 + + 683 iasi616_metop-a 5988 0.645769E-02 + -0.321 -0.130 -0.403 -0.567 0.046 -0.266 -0.162 -0.312 0.133 -0.247 + -0.211 -0.209 -0.023 -0.195 -0.180 -0.103 0.160 -0.145 -0.064 0.110 + 0.074 0.024 0.077 -0.015 0.021 -0.003 -0.083 -0.169 0.169 -0.006 + -0.409 -0.197 -0.476 -0.342 0.307 -0.499 -0.592 -0.333 -0.358 -0.444 + -0.483 -0.120 -0.366 -0.410 -0.510 -0.883 -0.452 -0.351 -0.334 -0.351 + -0.360 -0.599 -0.409 -0.724 -0.608 -0.317 -0.966 -0.738 -0.700 -0.283 + -0.601 -0.336 -0.546 -0.288 -0.562 -0.315 -0.356 -0.429 -0.689 -0.918 + -0.065 -0.085 -0.583 -0.594 -0.181 -0.847 -0.375 -0.069 -0.147 -0.488 + -0.757 -0.435 -0.451 -0.852 -0.560 -0.515 -0.467 -0.185 -0.566 -0.616 + + 684 iasi616_metop-a 5992 0.503099E-02 + -0.552 -0.419 -0.750 -0.780 -0.322 -0.502 -0.635 -0.424 -0.118 -0.582 + -0.690 -0.439 -0.349 -0.387 -0.405 -0.547 -0.215 -0.449 -0.453 -0.400 + -0.416 -0.350 -0.414 -0.601 -0.634 -0.433 -0.759 -0.723 -0.496 -0.614 + -0.423 -0.239 -0.481 -0.495 0.318 -0.463 -0.605 -0.442 -0.339 -0.488 + -0.547 -0.084 -0.468 -0.488 -0.463 -0.904 -0.522 -0.448 -0.339 -0.379 + -0.433 -0.609 -0.380 -0.639 -0.644 -0.438 -0.980 -0.762 -0.772 -0.406 + -0.528 -0.379 -0.570 -0.292 -0.612 -0.314 -0.397 -0.478 -0.573 -0.887 + -0.300 -0.278 -0.679 -0.605 -0.295 -0.845 -0.552 -0.181 -0.172 -0.494 + -0.677 -0.422 -0.555 -0.937 -0.636 -0.738 -0.526 -0.154 -0.632 -0.668 + + 685 iasi616_metop-a 5994 0.465690E-02 + -0.482 -0.386 -0.686 -0.744 -0.289 -0.573 -0.618 -0.425 -0.155 -0.573 + -0.630 -0.463 -0.391 -0.402 -0.390 -0.637 -0.211 -0.559 -0.393 -0.433 + -0.417 -0.357 -0.447 -0.633 -0.661 -0.479 -0.784 -0.803 -0.607 -0.597 + -0.321 -0.137 -0.480 -0.401 0.311 -0.300 -0.647 -0.331 -0.246 -0.440 + -0.488 -0.161 -0.418 -0.377 -0.450 -0.866 -0.407 -0.422 -0.267 -0.311 + -0.375 -0.551 -0.323 -0.604 -0.570 -0.491 -1.000 -0.706 -0.639 -0.356 + -0.573 -0.353 -0.537 -0.235 -0.496 -0.326 -0.414 -0.482 -0.589 -0.926 + -0.161 -0.241 -0.691 -0.745 -0.350 -0.828 -0.447 -0.173 -0.219 -0.465 + -0.769 -0.409 -0.573 -0.967 -0.611 -0.666 -0.497 -0.068 -0.579 -0.637 + + 686 iasi616_metop-a 5997 0.612630E-02 + -0.477 -0.363 -0.662 -0.731 -0.264 -0.489 -0.568 -0.425 -0.208 -0.514 + -0.628 -0.418 -0.344 -0.388 -0.404 -0.609 -0.241 -0.584 -0.459 -0.470 + -0.438 -0.397 -0.422 -0.700 -0.686 -0.466 -0.822 -0.792 -0.553 -0.599 + -0.346 -0.183 -0.443 -0.385 0.366 -0.464 -0.509 -0.315 -0.326 -0.522 + -0.429 -0.149 -0.445 -0.375 -0.478 -0.814 -0.485 -0.369 -0.280 -0.319 + -0.400 -0.542 -0.283 -0.623 -0.448 -0.360 -0.936 -0.588 -0.736 -0.359 + -0.487 -0.298 -0.552 -0.269 -0.461 -0.310 -0.426 -0.438 -0.477 -0.847 + -0.313 0.065 -0.600 -0.674 -0.223 -0.787 -0.478 -0.156 -0.129 -0.380 + -0.676 -0.495 -0.467 -0.893 -0.506 -0.706 -0.474 -0.258 -0.626 -0.511 + + 687 iasi616_metop-a 6003 0.351287E-01 + 0.030 -0.242 -0.203 -0.156 0.165 -0.188 -0.239 -0.236 -0.009 -0.394 + -0.398 -0.173 -0.157 -0.179 -0.253 -0.417 -0.247 -0.452 -0.269 -0.388 + -0.283 -0.400 -0.329 -0.491 -0.492 -0.587 -0.827 -0.698 -0.355 -0.415 + -0.385 -0.263 -0.404 -0.348 -0.248 -0.376 -0.496 -0.554 -0.195 -0.225 + -0.124 -0.549 -0.486 -0.233 -0.314 -0.463 -0.386 -0.348 -0.334 -0.438 + -0.273 -0.337 -0.333 -0.612 -0.537 -0.235 -0.456 -0.414 -0.436 -0.455 + -0.257 -0.539 -0.485 -0.316 0.044 -0.462 -0.219 -0.364 -0.148 -1.126 + 0.001 -0.184 -0.337 -0.334 -0.239 -0.508 -0.118 -0.282 -0.014 -0.530 + -0.447 -0.218 -0.346 -0.456 -0.066 -0.241 0.049 -0.001 -0.223 -0.466 + + 688 iasi616_metop-a 6008 0.135588E-01 + -0.233 -0.067 -0.421 -0.564 -0.060 -0.140 -0.232 -0.369 0.069 -0.264 + -0.242 -0.241 -0.099 -0.299 -0.320 -0.273 0.016 -0.222 -0.218 -0.024 + -0.040 -0.125 -0.063 -0.252 -0.138 -0.087 -0.354 -0.439 -0.050 -0.152 + -0.193 -0.067 -0.424 -0.158 0.295 -0.176 -0.610 -0.119 -0.102 -0.220 + -0.416 -0.031 -0.155 -0.200 -0.207 -0.675 -0.337 -0.453 -0.074 -0.016 + 0.010 -0.403 -0.271 -0.478 -0.538 -0.181 -0.859 -0.379 -0.391 -0.181 + -0.493 -0.168 -0.516 0.151 -0.108 -0.034 -0.201 -0.202 -0.400 -0.692 + 0.054 -0.014 -0.421 -0.195 -0.179 -0.582 -0.267 0.035 0.046 -0.259 + -0.464 -0.258 -0.268 -0.359 -0.334 -0.367 -0.364 -0.006 -0.383 -0.338 + + 689 iasi616_metop-a 6023 0.131415E-01 + -0.102 -0.052 -0.272 -0.272 -0.002 -0.145 -0.242 -0.105 0.051 -0.284 + -0.330 -0.018 -0.062 -0.095 -0.142 -0.309 0.121 -0.070 -0.160 -0.043 + -0.129 0.012 -0.134 -0.142 -0.260 -0.163 -0.435 -0.372 -0.161 -0.262 + -0.074 0.223 -0.161 0.072 0.546 -0.084 -0.338 0.069 0.060 -0.121 + -0.231 0.120 -0.090 -0.027 -0.222 -0.587 -0.361 -0.254 -0.019 0.182 + 0.043 -0.327 -0.295 -0.407 -0.394 -0.151 -0.700 -0.252 -0.397 -0.004 + -0.316 -0.083 -0.429 0.137 -0.289 -0.059 -0.144 -0.124 -0.397 -0.687 + 0.206 0.139 -0.422 -0.125 0.033 -0.512 -0.379 0.099 0.131 -0.121 + -0.334 -0.182 -0.248 -0.461 -0.297 -0.252 -0.354 0.068 -0.269 -0.255 + + 690 iasi616_metop-a 6026 0.189370E-01 + 0.160 0.076 -0.148 -0.130 0.224 -0.025 -0.125 -0.011 0.035 -0.017 + -0.185 0.049 -0.022 -0.071 -0.129 -0.284 0.124 -0.079 -0.201 -0.069 + -0.000 0.086 -0.040 -0.137 -0.211 -0.209 -0.491 -0.392 -0.108 -0.215 + 0.076 0.051 -0.262 0.168 0.362 -0.317 -0.059 -0.027 0.293 0.053 + -0.108 0.062 0.063 0.228 -0.086 -0.422 -0.174 0.043 0.219 0.127 + 0.345 -0.105 -0.305 -0.328 -0.306 0.226 -0.569 -0.159 -0.156 0.038 + -0.182 -0.057 -0.304 0.186 0.190 -0.068 0.095 0.011 -0.197 -0.537 + 0.212 0.107 -0.076 -0.199 -0.096 -0.332 0.248 0.181 0.382 -0.007 + -0.108 -0.150 -0.055 -0.088 -0.035 -0.084 -0.032 0.399 0.041 0.041 + + 691 iasi616_metop-a 6039 0.296631E-01 + 0.526 0.389 0.304 0.289 0.560 0.271 0.267 0.311 0.529 0.209 + 0.237 0.339 0.278 0.260 0.239 0.078 0.483 0.373 0.209 0.369 + 0.364 0.282 0.350 0.207 0.141 0.149 0.010 -0.080 0.294 0.087 + 0.632 0.721 0.350 0.795 0.906 0.906 0.307 0.218 0.851 0.615 + 0.610 0.392 0.453 0.513 0.420 -0.103 0.173 0.543 0.760 0.408 + 0.762 0.213 0.140 -0.063 0.045 0.593 -0.064 0.353 0.127 0.579 + 0.334 0.296 -0.021 0.708 0.798 0.259 0.440 0.573 0.383 -0.278 + 0.667 0.460 0.548 0.352 0.498 0.063 0.582 0.507 0.624 0.496 + 0.378 0.247 0.531 0.367 0.369 0.338 0.593 0.840 0.470 0.251 + + 692 iasi616_metop-a 6053 0.207415E-01 + 0.285 0.405 0.231 0.129 0.397 0.351 0.285 0.265 0.498 0.391 + 0.360 0.360 0.337 0.422 0.262 0.087 0.542 0.401 0.286 0.338 + 0.461 0.530 0.475 0.296 0.393 0.329 0.231 0.093 0.471 0.224 + 0.282 0.307 -0.084 0.406 0.676 0.346 -0.054 0.248 0.482 0.149 + 0.130 0.309 0.111 0.421 -0.122 -0.249 -0.085 0.227 0.350 0.404 + 0.583 -0.063 -0.094 -0.185 -0.240 0.288 -0.583 0.202 -0.031 0.162 + -0.016 0.101 -0.149 0.403 0.333 0.306 0.278 0.150 -0.154 -0.444 + 0.355 0.131 -0.051 0.022 0.229 -0.346 0.173 0.414 0.358 0.159 + 0.036 0.099 -0.022 0.069 -0.041 0.054 -0.010 0.374 0.042 0.028 + + 693 iasi616_metop-a 6056 0.128652E-01 + 0.106 0.043 -0.098 -0.106 0.213 -0.015 -0.051 0.091 0.267 0.096 + -0.061 0.177 0.149 0.114 0.005 -0.003 0.359 0.106 -0.045 0.204 + 0.196 0.279 0.156 0.148 -0.003 0.133 -0.177 -0.056 0.159 -0.002 + -0.007 0.244 -0.226 -0.093 0.496 0.047 -0.351 -0.023 0.112 -0.143 + -0.182 0.106 0.013 0.098 -0.171 -0.671 -0.353 -0.178 0.086 0.117 + 0.011 -0.293 -0.178 -0.373 -0.447 -0.159 -0.751 -0.268 -0.381 0.083 + -0.323 -0.119 -0.336 0.102 -0.113 0.007 -0.086 -0.260 -0.442 -0.597 + 0.141 0.151 -0.372 -0.279 -0.184 -0.502 -0.342 -0.035 0.058 -0.196 + -0.441 -0.125 -0.332 -0.412 -0.254 -0.176 -0.338 0.133 -0.217 -0.198 + + 694 iasi616_metop-a 6067 0.307714E-01 + -0.158 -0.101 -0.346 -0.238 0.040 -0.109 -0.343 -0.261 -0.140 -0.324 + -0.428 -0.164 -0.224 -0.221 -0.255 -0.418 -0.195 -0.296 -0.219 -0.305 + -0.171 -0.119 -0.185 -0.422 -0.353 -0.292 -0.532 -0.511 -0.241 -0.238 + -0.514 -0.628 -0.627 -0.339 -0.338 -0.595 -0.682 -0.549 -0.390 -0.346 + -0.430 -0.611 -0.638 -0.502 -0.784 -0.610 -0.562 -0.813 -0.592 -0.348 + -0.264 -0.688 -0.807 -0.676 -0.901 -0.458 -0.858 -0.524 -0.725 -0.411 + -0.466 -0.510 -0.693 -0.418 -0.256 -0.381 -0.293 -0.403 -0.632 -1.132 + -0.248 -0.546 -0.553 -0.425 -0.396 -0.678 -0.220 -0.293 -0.147 -0.633 + -0.594 -0.516 -0.505 -0.702 -0.283 -0.390 -0.164 -0.325 -0.388 -0.484 + + 695 iasi616_metop-a 6071 0.181151E-01 + -0.336 -0.202 -0.391 -0.445 -0.091 -0.298 -0.407 -0.420 -0.059 -0.306 + -0.230 -0.225 -0.213 -0.398 -0.455 -0.438 -0.095 -0.323 -0.484 -0.079 + -0.124 -0.244 -0.246 -0.253 -0.233 -0.281 -0.523 -0.440 -0.210 -0.380 + -0.214 -0.154 -0.425 -0.119 0.168 -0.304 -0.262 -0.184 -0.014 -0.084 + -0.191 -0.002 -0.169 -0.102 -0.253 -0.542 -0.325 -0.040 -0.052 0.067 + 0.302 -0.359 -0.408 -0.377 -0.467 -0.039 -0.673 -0.212 -0.374 -0.056 + -0.270 -0.071 -0.517 0.090 0.032 0.101 -0.029 -0.169 -0.438 -0.621 + 0.011 -0.033 -0.212 -0.202 -0.064 -0.433 -0.089 0.077 0.109 -0.229 + -0.320 -0.142 -0.260 -0.263 -0.265 -0.220 -0.167 0.087 -0.247 -0.156 + + 696 iasi616_metop-a 6082 0.225511E-01 + 0.114 0.279 -0.022 0.002 0.251 0.060 -0.129 0.024 0.129 0.057 + -0.108 0.038 -0.041 0.054 -0.126 -0.276 0.165 0.031 -0.054 0.089 + 0.167 0.154 0.054 0.036 -0.068 0.004 -0.318 -0.276 0.043 -0.030 + 0.012 0.268 -0.154 0.430 0.508 0.308 -0.219 0.137 0.352 0.051 + 0.022 0.265 0.061 0.293 -0.093 -0.296 -0.197 0.115 0.265 0.278 + 0.504 -0.096 -0.204 -0.303 -0.356 0.222 -0.741 -0.006 -0.160 0.076 + -0.059 0.144 -0.250 0.247 0.293 0.254 0.142 -0.043 -0.163 -0.644 + 0.312 0.117 0.028 -0.093 0.102 -0.239 0.167 0.374 0.283 0.079 + -0.070 -0.055 -0.059 0.002 -0.175 -0.014 -0.088 0.276 -0.112 0.047 + + 697 iasi616_metop-a 6085 0.182243E-01 + 0.252 0.280 0.065 0.045 0.258 0.160 0.030 0.237 0.250 0.100 + -0.009 0.300 0.179 0.124 0.016 0.020 0.302 0.164 -0.024 0.214 + 0.273 0.300 0.212 0.213 0.112 0.158 -0.173 -0.026 0.185 0.021 + 0.118 0.346 -0.076 0.333 0.691 0.288 0.106 0.169 0.307 0.153 + 0.166 0.423 0.138 0.377 -0.055 -0.403 -0.151 0.215 0.277 0.352 + 0.382 -0.059 -0.150 -0.227 -0.355 0.232 -0.611 -0.021 -0.148 0.133 + -0.016 0.079 -0.186 0.439 0.247 0.180 0.211 0.091 -0.088 -0.498 + 0.149 0.215 -0.084 -0.057 0.195 -0.338 0.046 0.359 0.320 0.043 + -0.053 -0.033 -0.057 -0.099 -0.002 -0.045 -0.123 0.291 -0.048 0.119 + + 698 iasi616_metop-a 6098 0.346037E-01 + 0.943 0.821 0.719 0.738 0.848 0.598 0.664 0.609 0.830 0.516 + 0.495 0.588 0.604 0.584 0.588 0.363 0.757 0.601 0.405 0.554 + 0.617 0.558 0.602 0.497 0.327 0.293 0.148 0.167 0.504 0.313 + 0.921 1.226 0.907 1.189 1.353 1.612 0.711 0.722 1.419 1.053 + 1.170 0.781 1.158 1.253 0.695 0.370 0.613 0.996 1.135 0.756 + 1.291 0.895 0.442 0.394 0.375 1.004 0.332 0.758 0.590 0.935 + 0.775 0.707 0.465 1.125 1.243 0.637 0.902 1.134 0.835 0.122 + 1.171 0.722 1.050 0.733 0.877 0.601 0.899 0.800 1.065 0.889 + 0.880 0.773 0.892 0.895 0.913 0.691 0.982 1.278 0.948 0.764 + + 699 iasi616_metop-a 6112 0.374435E-01 + 1.189 1.010 0.996 0.960 1.112 0.871 1.017 0.909 1.223 0.941 + 1.169 1.168 0.983 0.881 0.998 0.759 1.168 0.953 0.809 1.031 + 1.181 1.086 1.082 0.813 1.059 0.730 0.800 0.711 1.089 0.829 + 0.770 1.054 0.933 1.070 1.329 1.228 0.836 0.629 1.401 1.121 + 1.146 0.757 1.041 1.089 0.904 0.419 0.624 0.760 1.155 0.675 + 1.236 0.777 0.528 0.326 0.457 0.995 0.434 0.774 0.736 0.920 + 0.845 0.686 0.615 1.128 1.199 0.537 0.874 1.004 0.873 -0.002 + 1.151 0.795 1.014 0.851 0.820 0.665 0.844 0.723 1.224 0.841 + 0.950 0.756 0.977 0.904 0.815 0.786 1.080 1.376 0.815 0.671 + + 700 iasi616_metop-a 6126 0.379419E-01 + 0.795 0.851 0.972 0.736 1.090 0.655 0.914 0.804 1.095 0.918 + 1.261 0.808 0.864 0.746 0.969 0.645 1.045 0.927 0.665 0.850 + 0.977 0.907 1.023 0.796 0.950 0.710 0.809 0.545 0.879 0.736 + 0.483 0.858 0.604 0.899 1.048 0.683 0.647 0.404 1.226 0.659 + 0.990 0.591 0.702 0.938 0.613 0.224 0.559 0.521 0.886 0.413 + 1.061 0.605 0.105 0.014 0.110 0.787 0.182 0.556 0.322 0.689 + 0.644 0.451 0.427 0.862 0.951 0.220 0.677 0.719 0.403 -0.155 + 0.872 0.632 0.834 0.619 0.718 0.452 0.599 0.563 0.974 0.578 + 0.794 0.445 0.458 0.715 0.607 0.499 0.718 1.042 0.666 0.400 + + 701 iasi616_metop-a 6135 0.179898E-01 + -0.284 -0.131 -0.515 -0.427 -0.075 -0.018 -0.209 0.042 0.055 -0.014 + -0.046 0.076 0.082 0.135 -0.087 -0.238 0.366 0.092 -0.007 0.274 + 0.257 0.545 0.304 0.084 0.131 0.189 0.215 0.075 0.353 0.230 + -0.508 -0.180 -0.712 -0.299 0.105 -0.483 -0.507 -0.307 -0.273 -0.455 + -0.539 -0.303 -0.306 -0.303 -0.500 -0.798 -0.510 -0.272 -0.212 -0.094 + 0.009 -0.601 -0.540 -0.589 -0.691 -0.333 -0.998 -0.582 -0.584 -0.260 + -0.439 -0.343 -0.566 -0.028 -0.246 -0.141 -0.334 -0.344 -0.594 -0.907 + -0.034 -0.194 -0.618 -0.482 -0.330 -0.732 -0.446 -0.164 -0.149 -0.698 + -0.571 -0.468 -0.508 -0.631 -0.289 -0.435 -0.500 -0.174 -0.391 -0.432 + + 702 iasi616_metop-a 6140 0.361405E-01 + 0.780 0.602 0.527 0.599 0.591 0.376 0.386 0.294 0.616 0.191 + 0.145 0.390 0.254 0.176 0.225 0.043 0.354 0.206 0.005 0.104 + 0.274 0.176 0.237 0.115 -0.124 -0.188 -0.371 -0.231 0.073 -0.044 + 0.864 1.147 0.841 0.991 1.268 1.179 0.756 0.646 1.304 0.917 + 1.104 0.749 1.036 1.176 0.607 0.423 0.624 0.799 1.124 0.707 + 1.242 0.759 0.320 0.394 0.393 0.852 0.326 0.752 0.689 0.831 + 0.668 0.649 0.356 1.041 0.989 0.411 0.912 0.965 0.709 0.134 + 1.135 0.615 0.812 0.767 0.878 0.521 0.653 0.816 1.081 0.790 + 0.903 0.611 0.789 0.753 0.751 0.615 0.986 1.371 0.936 0.666 + + 703 iasi616_metop-a 6149 0.187108E-01 + 0.109 0.133 -0.121 -0.062 0.472 0.178 0.074 0.379 0.463 0.380 + 0.408 0.301 0.351 0.351 0.339 0.291 0.526 0.513 0.242 0.425 + 0.633 0.727 0.585 0.425 0.678 0.454 0.471 0.396 0.661 0.577 + -0.392 -0.352 -0.744 -0.262 0.010 -0.409 -0.500 -0.321 -0.270 -0.516 + -0.453 -0.173 -0.408 -0.427 -0.537 -0.720 -0.629 -0.429 -0.223 -0.170 + -0.014 -0.656 -0.662 -0.695 -0.750 -0.430 -0.962 -0.462 -0.580 -0.464 + -0.452 -0.432 -0.645 -0.029 -0.294 -0.293 -0.369 -0.364 -0.688 -0.923 + -0.131 -0.146 -0.545 -0.414 -0.297 -0.809 -0.457 -0.183 -0.147 -0.613 + -0.619 -0.308 -0.436 -0.606 -0.336 -0.438 -0.472 -0.235 -0.502 -0.432 + + 704 iasi616_metop-a 6154 0.415524E-01 + 0.566 0.458 0.400 0.578 0.503 0.257 0.233 0.206 0.457 0.033 + 0.135 0.272 0.192 0.038 0.139 -0.146 0.278 0.084 -0.014 -0.033 + 0.231 0.070 0.114 0.003 -0.134 -0.248 -0.519 -0.351 -0.036 -0.195 + 0.367 0.725 0.723 0.750 1.072 0.712 0.633 0.389 0.995 0.765 + 0.766 0.553 0.725 0.724 0.499 0.253 0.461 0.434 0.836 0.481 + 0.961 0.430 0.150 0.138 0.132 0.687 0.177 0.625 0.409 0.545 + 0.484 0.507 0.301 0.800 0.875 0.316 0.581 0.579 0.667 -0.115 + 0.927 0.449 0.582 0.600 0.665 0.527 0.609 0.487 0.904 0.643 + 0.681 0.530 0.641 0.368 0.631 0.599 0.661 1.033 0.601 0.422 + + 705 iasi616_metop-a 6158 0.250332E-01 + 0.124 0.241 -0.015 -0.015 0.370 0.115 0.100 0.151 0.386 0.276 + 0.426 0.290 0.201 0.348 0.252 0.139 0.451 0.376 0.199 0.391 + 0.468 0.599 0.528 0.351 0.514 0.276 0.433 0.303 0.581 0.366 + -0.510 -0.387 -0.741 -0.239 -0.107 -0.505 -0.563 -0.552 -0.308 -0.372 + -0.496 -0.120 -0.490 -0.514 -0.471 -0.723 -0.738 -0.417 -0.324 -0.244 + -0.112 -0.601 -0.597 -0.680 -0.809 -0.521 -0.923 -0.449 -0.786 -0.421 + -0.390 -0.359 -0.596 -0.080 0.031 -0.057 -0.471 -0.411 -0.775 -1.014 + -0.172 -0.312 -0.546 -0.369 -0.300 -0.659 -0.244 -0.049 -0.027 -0.547 + -0.538 -0.525 -0.591 -0.577 -0.385 -0.402 -0.360 -0.284 -0.489 -0.527 + + 706 iasi616_metop-a 6161 0.371295E-01 + -0.241 -0.316 -0.346 -0.432 -0.107 -0.331 -0.479 -0.478 -0.273 -0.479 + -0.477 -0.274 -0.360 -0.448 -0.444 -0.608 -0.298 -0.392 -0.452 -0.467 + -0.287 -0.415 -0.271 -0.465 -0.426 -0.470 -0.590 -0.510 -0.284 -0.361 + -0.640 -0.468 -0.772 -0.466 -0.331 -0.693 -0.553 -0.543 -0.218 -0.273 + -0.517 -0.543 -0.655 -0.600 -0.567 -0.720 -0.714 -0.388 -0.571 -0.486 + -0.097 -0.685 -0.671 -0.950 -0.919 -0.464 -0.751 -0.445 -0.585 -0.317 + -0.526 -0.599 -0.542 -0.282 -0.135 -0.393 -0.265 -0.448 -0.561 -1.157 + -0.244 -0.422 -0.558 -0.558 -0.374 -0.632 -0.199 -0.366 -0.113 -0.735 + -0.487 -0.383 -0.473 -0.674 -0.426 -0.247 -0.153 -0.276 -0.434 -0.566 + + 707 iasi616_metop-a 6168 0.492453E-01 + 0.067 0.167 0.232 0.162 0.288 0.062 0.063 -0.076 0.082 -0.042 + 0.047 -0.015 0.013 -0.114 -0.121 -0.287 0.029 -0.139 -0.195 -0.189 + -0.062 -0.216 -0.092 -0.226 -0.168 -0.315 -0.482 -0.380 -0.114 -0.155 + 0.237 0.161 0.280 0.434 0.324 0.312 -0.007 0.120 0.482 0.309 + 0.333 0.281 0.091 0.415 -0.079 0.131 0.153 -0.197 0.133 0.262 + 0.353 0.278 -0.021 -0.101 -0.225 0.161 -0.196 0.312 0.099 0.039 + 0.155 0.186 -0.186 0.202 0.455 -0.015 0.211 0.168 0.088 -0.149 + 0.386 0.247 0.125 0.404 0.094 0.083 0.156 0.132 0.447 0.111 + 0.059 0.315 0.348 0.093 0.157 0.334 0.356 0.652 0.290 0.203 + + 708 iasi616_metop-a 6174 0.407008E-01 + -0.090 -0.104 -0.323 -0.229 0.063 -0.197 -0.157 -0.105 0.067 -0.084 + 0.001 0.106 -0.010 -0.011 -0.009 0.019 0.122 0.120 0.040 0.207 + 0.070 0.185 0.148 0.243 0.170 0.084 0.172 0.329 0.388 0.203 + -0.769 -0.672 -0.739 -0.631 -0.348 -0.786 -0.605 -0.854 -0.440 -0.488 + -0.582 -0.674 -0.688 -0.814 -0.531 -0.923 -0.656 -0.569 -0.511 -0.520 + -0.175 -0.834 -0.688 -1.048 -0.883 -0.628 -0.705 -0.445 -0.832 -0.445 + -0.536 -0.753 -0.684 -0.470 -0.190 -0.581 -0.432 -0.551 -0.567 -1.261 + -0.256 -0.518 -0.543 -0.527 -0.517 -0.802 -0.236 -0.539 -0.216 -0.682 + -0.384 -0.689 -0.607 -0.807 -0.407 -0.507 -0.264 -0.342 -0.453 -0.731 + + 709 iasi616_metop-a 6182 0.469623E-01 + 0.212 -0.035 0.093 -0.007 0.379 -0.121 0.088 -0.208 0.081 -0.229 + -0.030 -0.079 -0.043 -0.292 -0.133 -0.405 -0.002 -0.270 -0.278 -0.248 + -0.047 -0.284 -0.057 -0.341 -0.176 -0.421 -0.379 -0.435 -0.185 -0.320 + 0.052 0.165 0.325 0.149 0.184 0.070 0.214 -0.082 0.349 0.247 + 0.403 -0.070 0.140 0.337 0.152 -0.172 0.026 -0.091 0.207 0.002 + 0.394 -0.013 0.041 -0.382 -0.258 0.142 -0.191 0.168 0.039 0.149 + 0.046 -0.176 -0.011 0.238 0.484 -0.166 0.210 0.154 0.250 -0.488 + 0.376 0.159 0.275 0.001 0.198 0.140 0.259 -0.109 0.439 0.180 + 0.341 -0.035 0.235 -0.013 0.265 0.124 0.409 0.601 0.227 -0.096 + + 710 iasi616_metop-a 6187 0.377325E-01 + -0.067 -0.215 -0.268 -0.321 0.130 -0.328 0.025 -0.195 0.136 -0.162 + 0.160 -0.048 0.102 -0.053 0.175 -0.109 0.191 0.085 0.025 0.057 + 0.245 0.156 0.371 0.062 0.189 0.067 0.335 0.138 0.364 0.159 + -0.707 -0.413 -0.642 -0.662 -0.142 -0.467 -0.598 -0.840 -0.254 -0.438 + -0.402 -0.695 -0.422 -0.716 -0.386 -1.060 -0.655 -0.411 -0.320 -0.580 + -0.099 -0.737 -0.567 -1.012 -0.687 -0.429 -0.582 -0.586 -0.703 -0.301 + -0.405 -0.851 -0.628 -0.269 0.061 -0.507 -0.292 -0.343 -0.359 -1.212 + -0.288 -0.337 -0.376 -0.454 -0.402 -0.710 0.019 -0.411 -0.127 -0.575 + -0.248 -0.605 -0.465 -0.605 -0.253 -0.578 -0.081 -0.221 -0.386 -0.665 + + 711 iasi616_metop-a 6205 0.396234E-01 + -0.538 -0.370 -0.626 -0.732 -0.278 -0.562 -0.525 -0.708 -0.379 -0.486 + -0.323 -0.587 -0.501 -0.621 -0.465 -0.784 -0.366 -0.437 -0.599 -0.654 + -0.387 -0.437 -0.308 -0.670 -0.472 -0.605 -0.525 -0.762 -0.351 -0.399 + -1.018 -0.654 -1.047 -0.530 -0.427 -0.685 -0.800 -0.631 -0.460 -0.615 + -0.665 -0.617 -0.704 -0.948 -0.808 -0.873 -0.759 -0.477 -0.561 -0.443 + -0.322 -0.863 -0.897 -0.774 -1.052 -0.634 -0.881 -0.306 -0.820 -0.454 + -0.780 -0.734 -0.689 -0.338 -0.339 -0.404 -0.519 -0.532 -0.740 -1.088 + -0.382 -0.531 -0.806 -0.366 -0.817 -0.844 -0.297 -0.332 -0.277 -0.777 + -0.565 -0.580 -0.722 -0.861 -0.596 -0.426 -0.385 -0.390 -0.673 -0.584 + + 712 iasi616_metop-a 6209 0.433897E-01 + -0.491 -0.416 -0.605 -0.581 -0.250 -0.518 -0.645 -0.616 -0.474 -0.599 + -0.468 -0.449 -0.625 -0.628 -0.686 -0.588 -0.561 -0.544 -0.756 -0.513 + -0.558 -0.536 -0.496 -0.489 -0.622 -0.689 -0.783 -0.543 -0.528 -0.473 + -0.758 -0.565 -0.732 -0.362 -0.401 -0.684 -0.624 -0.651 -0.423 -0.557 + -0.613 -0.532 -0.522 -0.671 -0.658 -0.826 -0.580 -0.552 -0.559 -0.318 + -0.266 -0.797 -0.726 -0.832 -0.886 -0.526 -0.746 -0.352 -0.814 -0.383 + -0.552 -0.592 -0.662 -0.307 -0.253 -0.354 -0.604 -0.421 -0.573 -0.961 + -0.320 -0.458 -0.666 -0.357 -0.631 -0.611 -0.207 -0.401 -0.250 -0.608 + -0.536 -0.354 -0.487 -0.689 -0.526 -0.372 -0.266 -0.327 -0.656 -0.505 + + 713 iasi616_metop-a 6213 0.446989E-01 + -0.457 -0.395 -0.558 -0.541 -0.311 -0.508 -0.517 -0.554 -0.465 -0.501 + -0.408 -0.385 -0.503 -0.510 -0.585 -0.541 -0.410 -0.462 -0.594 -0.525 + -0.461 -0.468 -0.427 -0.408 -0.531 -0.493 -0.586 -0.427 -0.407 -0.448 + -0.937 -0.562 -0.771 -0.584 -0.499 -0.651 -0.632 -0.721 -0.490 -0.564 + -0.633 -0.582 -0.626 -0.652 -0.808 -0.769 -0.674 -0.585 -0.620 -0.479 + -0.365 -0.669 -0.866 -0.896 -0.887 -0.538 -0.789 -0.423 -0.742 -0.476 + -0.678 -0.677 -0.805 -0.401 -0.405 -0.246 -0.665 -0.530 -0.649 -1.060 + -0.496 -0.441 -0.715 -0.503 -0.639 -0.733 -0.229 -0.405 -0.282 -0.633 + -0.450 -0.346 -0.595 -0.728 -0.504 -0.414 -0.260 -0.295 -0.634 -0.625 + + 714 iasi616_metop-a 6317 0.425822E-01 + -0.547 -0.595 -0.638 -0.658 -0.384 -0.697 -0.669 -0.699 -0.429 -0.601 + -0.448 -0.460 -0.591 -0.595 -0.582 -0.673 -0.478 -0.572 -0.595 -0.517 + -0.585 -0.468 -0.487 -0.536 -0.562 -0.589 -0.599 -0.467 -0.291 -0.442 + -0.880 -0.767 -0.949 -0.792 -0.462 -0.959 -0.764 -0.826 -0.564 -0.673 + -0.674 -0.754 -0.865 -0.915 -0.690 -1.074 -0.907 -0.735 -0.550 -0.649 + -0.503 -0.986 -0.899 -1.113 -0.967 -0.566 -0.784 -0.666 -0.867 -0.551 + -0.643 -0.907 -0.810 -0.724 -0.373 -0.555 -0.673 -0.608 -0.632 -1.314 + -0.420 -0.589 -0.679 -0.731 -0.747 -0.852 -0.287 -0.557 -0.296 -0.823 + -0.699 -0.736 -0.619 -0.855 -0.500 -0.748 -0.321 -0.570 -0.631 -0.865 + + 715 iasi616_metop-a 6339 0.310400E-01 + -1.490 -1.528 -1.569 -1.604 -0.281 -0.866 -1.074 -1.167 -0.439 -0.763 + -0.602 -0.735 -0.659 -0.874 -0.710 -0.874 -0.531 -0.833 -0.786 -0.634 + -0.575 -0.727 -0.481 -0.665 -0.550 -0.755 -0.691 -0.738 -0.479 -0.623 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 716 iasi616_metop-a 6342 0.411258E-01 + -0.884 -1.160 -0.990 -0.969 -1.119 -1.459 -0.889 -0.984 -1.153 -1.595 + -0.972 -1.192 -0.996 -1.411 -1.115 -1.366 -0.963 -1.506 -0.920 -1.335 + -1.096 -1.413 -1.546 -1.840 -1.204 -1.536 -1.974 -2.419 -2.062 -2.295 + -1.330 -1.129 -1.307 -1.389 -1.070 -1.265 -1.196 -1.588 -1.189 -1.107 + -1.195 -1.454 -1.167 -1.009 -1.205 -1.556 -1.072 -1.378 -1.029 -1.511 + -1.050 -1.172 -1.337 -1.573 -1.437 -1.305 -1.294 -1.424 -1.323 -1.251 + -1.265 -1.427 -1.265 -1.143 -0.952 -1.408 -0.987 -1.240 -1.062 -1.510 + -1.055 -1.091 -1.274 -1.319 -1.382 -1.436 -1.072 -1.430 -1.045 -1.187 + -1.127 -1.252 -1.249 -1.125 -0.903 -1.368 -0.896 -1.056 -0.892 -1.530 + + 717 iasi616_metop-a 6366 0.413954E-01 + -0.954 -1.065 -0.877 -1.047 -1.170 -1.226 -0.972 -1.087 -1.036 -1.382 + -0.996 -1.252 -0.942 -1.147 -1.027 -1.267 -0.951 -1.233 -0.945 -1.136 + -1.006 -1.065 -0.927 -1.218 -0.978 -1.129 -0.805 -0.983 -0.922 -0.881 + -1.256 -1.230 -0.938 -1.293 -1.098 -1.287 -0.904 -1.466 -1.033 -1.261 + -1.252 -1.394 -1.206 -1.092 -1.070 -1.805 -1.231 -1.284 -1.088 -1.327 + -1.091 -1.003 -1.410 -1.597 -1.297 -1.374 -1.073 -1.581 -1.270 -1.379 + -1.190 -1.458 -1.287 -1.287 -0.784 -1.620 -1.123 -1.232 -1.059 -1.415 + -1.243 -0.861 -1.046 -1.425 -1.450 -1.345 -1.060 -1.638 -1.149 -1.168 + -1.128 -1.448 -0.992 -1.059 -0.998 -1.347 -0.832 -0.910 -0.851 -1.485 + + 718 iasi616_metop-a 6381 0.477295E-01 + -1.124 -0.824 -1.060 -1.106 -1.095 -0.931 -0.943 -1.047 -1.159 -0.934 + -1.045 -1.071 -1.117 -0.949 -1.013 -1.211 -1.002 -0.890 -0.917 -1.080 + -1.110 -0.935 -0.864 -1.001 -0.752 -0.892 -0.768 -0.932 -0.697 -0.731 + -1.360 -1.366 -1.328 -1.099 -1.366 -1.072 -1.335 -1.273 -1.248 -1.195 + -1.627 -0.964 -1.346 -1.076 -1.539 -1.272 -1.481 -1.431 -1.442 -1.086 + -1.173 -1.317 -1.664 -1.279 -1.548 -1.186 -1.536 -1.138 -1.464 -1.298 + -1.375 -0.890 -1.371 -1.315 -1.071 -1.262 -1.406 -1.313 -1.371 -1.160 + -1.315 -1.038 -1.572 -0.867 -1.303 -1.442 -1.457 -1.230 -1.073 -1.260 + -1.472 -0.949 -1.189 -1.170 -1.255 -0.912 -0.932 -1.096 -1.330 -1.211 + + 719 iasi616_metop-a 6391 0.454923E-01 + -0.920 -0.970 -0.845 -0.786 -1.001 -1.156 -1.169 -0.750 -0.953 -1.118 + -1.009 -0.880 -1.045 -1.061 -1.103 -0.856 -0.859 -1.001 -1.004 -0.918 + -1.007 -0.848 -0.911 -0.772 -0.898 -0.937 -0.798 -0.595 -0.806 -0.883 + -1.159 -1.041 -1.058 -1.121 -0.853 -1.164 -1.124 -1.188 -1.085 -1.138 + -0.995 -1.122 -1.119 -1.037 -0.987 -1.296 -1.301 -1.331 -1.235 -1.069 + -1.164 -1.029 -1.059 -1.478 -1.089 -1.076 -1.099 -1.230 -1.108 -1.298 + -1.035 -1.087 -1.163 -1.181 -0.946 -1.238 -1.042 -1.243 -1.042 -1.168 + -1.108 -0.948 -1.102 -1.064 -1.093 -1.123 -0.881 -1.200 -0.992 -1.308 + -0.884 -1.103 -1.052 -0.861 -0.539 -0.950 -0.900 -0.914 -0.885 -1.085 + + 720 iasi616_metop-a 6489 -0.609950E-02 + 0.473 0.507 0.983 0.830 0.212 0.407 0.396 -0.057 0.245 0.145 + 0.127 -0.115 -0.003 0.079 -0.170 -0.293 -0.188 -0.174 -0.103 -0.136 + -0.387 -0.172 -0.048 -0.261 -0.327 -0.304 -0.168 -0.333 -0.215 -0.272 + 2.614 2.885 2.410 2.107 2.457 2.087 2.269 2.359 2.186 2.056 + 2.449 2.356 1.975 1.987 1.974 2.210 2.467 2.308 2.099 1.959 + 2.168 2.737 2.070 2.479 1.962 1.928 2.381 2.183 1.653 2.428 + 2.085 2.065 1.914 2.375 2.287 2.227 1.900 2.201 2.052 2.344 + 2.060 2.144 2.222 2.039 2.296 2.328 2.324 1.940 2.239 2.179 + 2.517 2.124 2.220 2.535 2.764 2.338 2.161 2.316 2.038 1.761 + + 721 iasi616_metop-a 6962 0.583118E-01 + 1.176 0.869 0.886 1.265 1.481 0.898 1.495 1.489 1.394 1.277 + 1.357 1.802 1.807 1.641 1.867 2.166 1.939 1.868 2.291 2.272 + 1.951 2.014 2.244 2.051 2.484 2.239 2.953 2.663 2.668 2.418 + -0.173 0.106 -0.512 -0.236 0.048 -0.424 -0.105 -0.555 0.079 -0.332 + -0.062 -0.477 -0.309 0.101 -0.261 -0.059 -0.461 -1.010 -0.326 -0.492 + -0.435 -0.757 0.095 -0.451 -0.415 -0.530 -0.344 -0.277 -0.796 -0.021 + -0.225 -0.058 -0.341 -0.085 -0.410 -0.164 -0.023 0.156 -0.596 -0.551 + -0.282 0.324 -0.105 -0.159 -0.084 -0.246 0.053 -0.100 -0.077 -0.151 + -0.501 -0.484 -0.002 -0.170 0.185 -0.264 0.151 -0.222 -0.546 -0.284 + + 722 iasi616_metop-a 6966 0.667236E-01 + -0.521 -0.549 -0.258 -0.155 -0.433 -0.058 -0.104 0.043 -0.441 -0.368 + -0.410 -0.259 -0.129 -0.357 -0.440 -0.238 -0.099 -0.179 -0.289 -0.345 + -0.402 -0.271 -0.186 -0.446 -0.300 -0.227 -0.453 -0.725 -0.318 -0.108 + -0.858 -0.537 -0.671 -0.418 -0.504 -0.699 -1.172 -1.181 -0.740 -0.653 + -1.203 -0.573 -0.769 -1.244 -0.601 -0.969 -0.760 -0.930 -0.650 -0.728 + -0.984 -0.824 -0.983 -0.876 -0.841 -0.269 -0.794 -0.998 -0.112 -0.923 + -1.163 -1.075 -0.959 -0.802 -0.997 -0.705 -0.868 -0.456 -0.424 -0.842 + -0.769 -0.505 -0.805 -0.897 -0.661 -0.838 -0.643 -0.634 -0.979 -0.230 + -0.949 -1.117 -0.521 -0.562 -0.656 -0.829 -0.737 -0.915 -0.648 -0.925 + + 723 iasi616_metop-a 6970 0.638624E-01 + -0.476 -0.650 -0.489 -0.303 -0.271 -0.490 -0.493 -0.457 -0.472 -0.696 + -0.360 -0.582 -0.630 -0.628 -0.439 -0.668 -0.484 -0.675 -0.521 -0.665 + -0.381 -0.742 -0.691 -0.586 -0.290 -0.510 -0.450 -0.460 -0.414 -0.392 + -0.462 -0.992 -0.676 -0.899 -0.269 -0.705 -0.503 -0.848 -0.574 -0.717 + -0.909 -0.744 -0.456 -0.314 -0.545 -1.267 -0.353 -1.365 -0.347 -0.729 + -0.795 -0.467 -0.458 -1.277 -0.901 -0.660 -0.479 -1.179 -0.790 -0.531 + -0.683 -1.244 -0.585 -0.643 -0.815 -1.199 -0.729 -0.785 -0.586 -1.243 + -0.633 -0.578 -0.473 -1.304 -0.722 -0.796 -0.666 -1.116 -0.558 -0.750 + -0.423 -0.940 -0.657 -0.569 -0.124 -0.912 -0.423 -0.668 -0.682 -0.707 + + 724 iasi616_metop-a 6975 0.648313E-01 + -0.420 -0.687 -0.467 -0.750 -0.467 -0.866 -0.701 -0.793 -0.317 -0.698 + -0.391 -0.689 -0.776 -0.725 -0.647 -0.701 -0.423 -0.728 -0.383 -0.653 + -0.587 -0.459 -0.410 -0.540 -0.408 -0.696 -0.322 -0.610 -0.336 -0.454 + -0.785 -1.121 -0.787 -0.669 -0.877 -0.502 -1.282 -0.963 -0.824 -0.784 + -0.927 -1.048 -0.602 -0.804 -0.941 -1.117 -1.086 -1.264 -0.648 -0.734 + -1.037 -0.876 -0.887 -1.122 -1.113 -0.820 -0.871 -0.779 -0.636 -0.783 + -1.087 -1.079 -0.937 -1.077 -0.845 -0.701 -0.625 -0.647 -0.741 -1.062 + -0.833 -0.765 -1.096 -0.985 -1.200 -1.005 -0.608 -0.931 -0.917 -0.668 + -0.665 -0.937 -0.979 -1.010 -0.414 -0.933 -0.880 -0.725 -0.728 -0.942 + + 725 iasi616_metop-a 6977 0.627702E-01 + -0.694 -0.544 -0.691 -0.415 -0.979 -0.652 -0.722 -0.721 -0.719 -0.686 + -0.680 -0.666 -0.826 -0.643 -0.828 -0.945 -0.628 -0.473 -0.653 -0.689 + -0.730 -0.433 -0.593 -0.619 -0.606 -0.699 -0.648 -0.707 -0.711 -0.600 + -0.848 -0.577 -0.758 -0.485 -0.503 -0.476 -0.906 -0.231 -0.552 -0.634 + -0.935 -0.406 -0.815 -0.642 -1.031 -0.498 -0.597 -0.894 -0.824 -0.484 + -0.514 -0.557 -0.977 -0.686 -0.919 -0.857 -1.072 -0.524 -0.926 -0.876 + -0.931 -0.515 -0.799 -0.527 -0.635 -0.674 -0.609 -0.700 -0.778 -0.808 + -0.640 -0.745 -0.930 -0.534 -0.693 -0.696 -0.819 -0.306 -0.830 -0.644 + -0.783 -0.454 -0.808 -0.711 -0.621 -0.293 -0.528 -0.698 -0.890 -0.441 + + 726 iasi616_metop-a 6982 0.559717E-01 + -0.779 -0.786 -0.995 -0.677 -0.962 -0.829 -0.939 -0.578 -0.960 -0.730 + -0.951 -0.557 -0.855 -0.604 -0.986 -0.790 -0.729 -0.630 -0.786 -0.682 + -0.784 -0.603 -0.726 -0.462 -0.722 -0.643 -0.750 -0.425 -0.558 -0.280 + -0.925 -1.097 -1.128 -0.953 -1.068 -1.105 -1.141 -1.006 -0.914 -0.769 + -1.311 -0.906 -1.164 -1.013 -1.116 -1.432 -1.197 -1.201 -0.965 -0.952 + -1.006 -1.129 -1.274 -1.116 -1.355 -1.129 -1.235 -1.106 -1.324 -1.091 + -1.217 -1.252 -1.190 -0.972 -1.022 -1.181 -0.999 -1.070 -1.121 -1.503 + -1.100 -0.975 -1.079 -1.123 -1.084 -1.072 -1.096 -1.148 -0.949 -1.129 + -1.291 -1.158 -1.302 -1.186 -1.037 -0.977 -0.920 -0.822 -0.908 -1.074 + + 727 iasi616_metop-a 6985 0.522913E-01 + -1.201 -1.114 -0.981 -1.109 -1.071 -1.157 -1.263 -0.971 -1.156 -1.224 + -1.057 -0.959 -1.014 -1.039 -1.244 -1.239 -1.002 -1.033 -1.134 -0.976 + -1.062 -1.006 -1.002 -1.041 -1.071 -1.061 -0.993 -0.955 -0.950 -0.899 + -1.173 -1.256 -1.058 -1.084 -1.073 -1.316 -1.255 -1.027 -1.059 -1.023 + -1.322 -1.250 -1.445 -1.074 -1.276 -1.473 -1.261 -1.454 -1.067 -1.244 + -0.999 -1.110 -1.592 -1.329 -1.267 -1.415 -1.488 -1.296 -1.436 -1.243 + -1.220 -1.210 -1.265 -1.216 -1.192 -1.248 -1.148 -1.111 -1.291 -1.577 + -1.172 -1.204 -1.299 -1.155 -1.223 -1.469 -0.969 -1.210 -0.977 -1.363 + -1.155 -1.112 -1.181 -1.273 -1.130 -1.126 -1.001 -1.022 -1.149 -1.333 + + 728 iasi616_metop-a 6987 0.466420E-01 + -1.255 -1.140 -1.259 -1.253 -1.152 -1.279 -1.145 -1.237 -0.970 -1.105 + -1.052 -1.073 -1.080 -1.072 -1.172 -1.312 -1.004 -1.052 -1.094 -1.194 + -1.032 -0.972 -0.996 -1.053 -0.994 -1.007 -1.044 -0.970 -0.835 -0.904 + -0.404 -0.263 0.085 0.143 0.013 -0.024 0.191 0.174 0.484 0.190 + 0.380 0.595 0.321 0.409 0.528 0.244 0.319 0.558 0.810 0.803 + 0.763 0.624 0.470 0.699 0.633 0.810 0.415 0.759 0.713 0.783 + 0.408 0.545 0.825 0.721 0.831 0.451 0.627 0.584 0.364 0.167 + 0.484 0.724 0.295 0.433 0.418 0.332 0.256 0.365 0.501 0.148 + 0.203 0.080 0.126 -0.072 -0.104 -0.202 0.111 0.038 -0.472 -0.294 + + 729 iasi616_metop-a 6989 0.463968E-01 + -0.889 -0.758 -1.154 -0.978 -0.886 -1.076 -1.154 -0.956 -0.926 -0.944 + -0.939 -1.056 -1.032 -1.063 -1.318 -1.321 -1.121 -0.993 -1.384 -1.466 + -1.292 -1.195 -1.329 -1.319 -1.323 -1.189 -1.426 -1.300 -1.184 -1.232 + -1.453 -1.446 -1.591 -1.511 -1.055 -1.603 -1.548 -1.268 -1.222 -1.440 + -1.613 -1.369 -1.403 -1.420 -1.520 -1.755 -1.469 -1.464 -1.276 -1.343 + -1.215 -1.330 -1.822 -1.559 -1.730 -1.467 -1.648 -1.224 -1.376 -1.364 + -1.507 -1.489 -1.513 -1.474 -1.122 -1.266 -1.425 -1.270 -1.414 -1.938 + -1.282 -1.231 -1.559 -1.282 -1.454 -1.679 -1.324 -1.135 -1.256 -1.335 + -1.352 -1.495 -1.358 -1.533 -1.308 -1.405 -1.232 -1.131 -1.396 -1.454 + + 730 iasi616_metop-a 6991 0.441015E-01 + -1.454 -1.345 -1.572 -1.397 -1.397 -1.560 -1.576 -1.530 -1.400 -1.418 + -1.415 -1.420 -1.469 -1.433 -1.563 -1.639 -1.373 -1.385 -1.564 -1.447 + -1.415 -1.418 -1.408 -1.538 -1.522 -1.478 -1.544 -1.399 -1.332 -1.391 + -1.619 -1.309 -1.648 -1.169 -1.146 -1.617 -1.613 -1.353 -1.106 -1.419 + -1.611 -1.497 -1.498 -1.508 -1.536 -1.720 -1.448 -1.544 -1.437 -1.289 + -1.068 -1.644 -1.672 -1.631 -1.640 -1.334 -1.661 -1.374 -1.573 -1.344 + -1.587 -1.635 -1.533 -1.306 -1.019 -1.310 -1.392 -1.226 -1.531 -1.872 + -1.466 -1.161 -1.500 -1.125 -1.520 -1.590 -1.260 -1.230 -1.140 -1.345 + -1.419 -1.384 -1.355 -1.575 -1.251 -1.083 -1.060 -1.218 -1.472 -1.453 + + 731 iasi616_metop-a 6993 0.421945E-01 + -1.423 -1.480 -1.659 -1.496 -1.375 -1.512 -1.673 -1.563 -1.349 -1.487 + -1.456 -1.428 -1.560 -1.646 -1.658 -1.607 -1.400 -1.444 -1.602 -1.500 + -1.669 -1.411 -1.467 -1.438 -1.547 -1.567 -1.620 -1.494 -1.432 -1.363 + -1.574 -1.697 -1.637 -1.294 -1.330 -1.491 -1.569 -1.592 -1.334 -1.506 + -1.690 -1.434 -1.823 -1.476 -1.489 -1.831 -1.687 -1.581 -1.535 -1.438 + -1.118 -1.617 -1.793 -1.731 -1.755 -1.490 -1.635 -1.349 -1.652 -1.461 + -1.580 -1.573 -1.542 -1.322 -1.157 -1.498 -1.472 -1.335 -1.557 -2.003 + -1.364 -1.391 -1.461 -1.355 -1.626 -1.781 -1.318 -1.162 -1.278 -1.583 + -1.405 -1.559 -1.514 -1.583 -1.513 -1.513 -1.181 -1.265 -1.695 -1.622 + + 732 iasi616_metop-a 6995 0.408199E-01 + -1.499 -1.387 -1.622 -1.529 -1.293 -1.647 -1.695 -1.554 -1.387 -1.496 + -1.422 -1.445 -1.540 -1.593 -1.627 -1.664 -1.455 -1.504 -1.647 -1.638 + -1.539 -1.491 -1.521 -1.550 -1.634 -1.669 -1.708 -1.502 -1.438 -1.358 + -1.536 -1.307 -1.672 -1.347 -1.178 -1.404 -1.506 -1.388 -1.263 -1.371 + -1.678 -1.356 -1.503 -1.486 -1.497 -1.798 -1.572 -1.516 -1.312 -1.331 + -1.081 -1.588 -1.756 -1.670 -1.699 -1.411 -1.646 -1.318 -1.608 -1.259 + -1.417 -1.524 -1.502 -1.330 -1.175 -1.216 -1.651 -1.139 -1.766 -2.102 + -1.356 -1.273 -1.446 -1.264 -1.717 -1.716 -1.370 -1.269 -1.269 -1.721 + -1.560 -1.522 -1.671 -1.622 -1.324 -1.613 -1.183 -1.226 -1.628 -1.394 + + 733 iasi616_metop-a 6997 0.395553E-01 + -1.505 -1.402 -1.629 -1.457 -1.411 -1.562 -1.625 -1.460 -1.398 -1.520 + -1.379 -1.558 -1.453 -1.476 -1.635 -1.633 -1.429 -1.349 -1.602 -1.664 + -1.578 -1.582 -1.473 -1.509 -1.536 -1.544 -1.662 -1.601 -1.452 -1.606 + -1.638 -1.434 -1.694 -1.332 -1.138 -1.609 -1.537 -1.415 -1.209 -1.340 + -1.442 -1.253 -1.528 -1.612 -1.460 -1.853 -1.613 -1.499 -1.317 -1.191 + -1.085 -1.431 -1.637 -1.823 -1.745 -1.181 -1.624 -1.198 -1.393 -1.351 + -1.404 -1.601 -1.369 -1.271 -1.170 -1.383 -1.445 -1.069 -1.636 -1.947 + -1.391 -1.403 -1.562 -1.036 -1.536 -1.561 -1.106 -1.133 -1.209 -1.341 + -1.500 -1.454 -1.239 -1.844 -1.196 -1.553 -1.253 -1.223 -1.622 -1.430 + + 734 iasi616_metop-a 6999 0.385347E-01 + -1.432 -1.446 -1.558 -1.382 -1.421 -1.531 -1.596 -1.487 -1.270 -1.486 + -1.354 -1.461 -1.502 -1.489 -1.545 -1.653 -1.454 -1.402 -1.559 -1.552 + -1.507 -1.447 -1.410 -1.575 -1.593 -1.642 -1.654 -1.556 -1.357 -1.356 + -1.442 -1.398 -1.688 -1.200 -1.098 -1.355 -1.675 -1.517 -1.172 -1.419 + -1.285 -1.284 -1.553 -1.648 -1.474 -1.621 -1.553 -1.436 -1.079 -1.209 + -1.051 -1.457 -1.628 -1.501 -1.841 -1.469 -1.392 -1.252 -1.559 -1.268 + -1.587 -1.340 -1.386 -1.267 -0.943 -1.241 -1.293 -1.204 -1.768 -1.916 + -1.395 -1.209 -1.511 -1.246 -1.451 -1.729 -1.140 -1.242 -1.277 -1.311 + -1.330 -1.404 -1.307 -1.588 -1.216 -1.475 -1.338 -1.126 -1.764 -1.313 + + 735 iasi616_metop-a 7000 0.381877E-01 + -1.475 -1.345 -1.506 -1.447 -1.281 -1.540 -1.660 -1.488 -1.414 -1.439 + -1.368 -1.340 -1.448 -1.479 -1.549 -1.609 -1.371 -1.443 -1.619 -1.452 + -1.405 -1.390 -1.285 -1.505 -1.468 -1.635 -1.663 -1.523 -1.359 -1.428 + -1.436 -1.341 -1.618 -1.146 -0.976 -1.304 -1.516 -1.536 -1.052 -1.441 + -1.211 -1.073 -1.549 -1.592 -1.434 -1.641 -1.356 -1.400 -1.168 -1.183 + -0.876 -1.366 -1.365 -1.431 -1.555 -1.347 -1.487 -1.283 -1.540 -1.278 + -1.449 -1.610 -1.061 -1.154 -0.931 -1.069 -1.324 -1.069 -1.570 -1.845 + -1.051 -1.314 -1.464 -1.055 -1.276 -1.525 -0.989 -1.101 -0.953 -1.249 + -1.510 -1.468 -1.214 -1.548 -1.327 -1.564 -1.150 -1.114 -1.535 -1.293 + + 736 iasi616_metop-a 7004 0.367538E-01 + -1.363 -1.291 -1.482 -1.406 -1.256 -1.475 -1.532 -1.439 -1.286 -1.366 + -1.267 -1.356 -1.457 -1.475 -1.507 -1.549 -1.235 -1.332 -1.546 -1.585 + -1.321 -1.226 -1.296 -1.422 -1.293 -1.569 -1.614 -1.401 -1.283 -1.392 + -1.228 -1.410 -1.447 -1.230 -1.131 -1.242 -1.406 -1.272 -0.986 -1.112 + -1.308 -1.219 -1.314 -1.691 -1.234 -1.563 -1.332 -1.162 -0.898 -1.079 + -0.815 -1.428 -1.425 -1.646 -1.644 -1.302 -1.442 -1.224 -1.605 -1.219 + -1.396 -1.522 -1.321 -1.151 -0.765 -1.069 -1.176 -0.931 -1.433 -1.825 + -1.001 -1.150 -1.230 -0.987 -1.241 -1.702 -0.877 -0.964 -0.988 -1.458 + -1.206 -1.377 -1.348 -1.479 -1.226 -1.552 -1.015 -0.970 -1.416 -1.395 + + 737 iasi616_metop-a 7008 0.356561E-01 + -1.250 -1.282 -1.395 -1.360 -0.982 -1.361 -1.443 -1.347 -1.063 -1.289 + -1.237 -1.331 -1.357 -1.333 -1.446 -1.444 -1.156 -1.278 -1.455 -1.466 + -1.252 -1.098 -1.190 -1.380 -1.436 -1.459 -1.527 -1.480 -1.318 -1.441 + -1.352 -1.202 -1.328 -1.103 -0.766 -1.095 -1.186 -1.180 -0.819 -0.921 + -1.279 -1.231 -1.543 -1.227 -1.295 -1.555 -1.307 -1.223 -1.048 -0.947 + -0.729 -1.278 -1.303 -1.385 -1.509 -1.302 -1.452 -1.139 -1.189 -1.036 + -1.300 -1.363 -1.101 -1.005 -0.881 -0.855 -1.039 -0.859 -1.455 -1.739 + -1.126 -0.892 -1.297 -1.016 -1.220 -1.500 -1.089 -0.827 -1.027 -1.276 + -1.296 -1.111 -1.313 -1.566 -1.381 -1.246 -0.937 -1.203 -1.110 -1.279 + + 738 iasi616_metop-a 7013 0.343006E-01 + -1.283 -1.224 -1.363 -1.264 -1.001 -1.306 -1.425 -1.327 -1.072 -1.335 + -1.256 -1.199 -1.292 -1.411 -1.304 -1.588 -1.203 -1.190 -1.169 -1.416 + -1.212 -1.210 -1.214 -1.224 -1.316 -1.371 -1.396 -1.298 -1.299 -1.176 + -1.340 -1.370 -1.443 -1.097 -0.907 -1.048 -1.299 -1.256 -1.056 -1.267 + -1.173 -1.011 -1.225 -1.483 -1.231 -1.550 -1.155 -1.151 -1.058 -1.081 + -0.856 -1.367 -1.311 -1.580 -1.545 -1.121 -1.658 -1.236 -1.439 -1.213 + -1.326 -1.427 -1.217 -1.018 -0.792 -1.100 -1.244 -0.952 -1.475 -1.811 + -1.116 -1.267 -1.431 -1.140 -1.210 -1.456 -0.931 -0.913 -0.829 -1.422 + -1.378 -1.248 -1.443 -1.469 -1.338 -1.548 -1.007 -1.193 -1.573 -1.483 + + 739 iasi616_metop-a 7016 0.336643E-01 + -1.203 -1.225 -1.339 -1.296 -1.079 -1.407 -1.425 -1.283 -1.182 -1.289 + -1.241 -1.230 -1.328 -1.401 -1.292 -1.519 -1.138 -1.321 -1.453 -1.355 + -1.153 -1.176 -1.277 -1.335 -1.286 -1.425 -1.481 -1.361 -1.302 -1.381 + -1.015 -0.966 -1.264 -0.792 -0.822 -0.956 -1.231 -1.215 -1.031 -1.028 + -1.055 -0.924 -1.097 -1.382 -1.183 -1.543 -0.892 -1.138 -1.112 -0.741 + -0.687 -1.134 -1.184 -1.494 -1.422 -1.016 -1.251 -1.110 -1.097 -0.861 + -1.409 -1.343 -1.259 -0.939 -0.707 -0.845 -1.222 -0.782 -1.520 -1.807 + -1.012 -1.113 -1.226 -0.868 -1.301 -1.493 -0.719 -0.813 -0.848 -1.144 + -1.150 -1.240 -1.102 -1.482 -1.021 -1.324 -0.873 -1.104 -1.365 -1.374 + + 740 iasi616_metop-a 7021 0.325727E-01 + -1.114 -1.175 -1.316 -1.175 -0.801 -1.210 -1.329 -1.270 -1.108 -1.206 + -1.214 -1.127 -1.223 -1.300 -1.288 -1.493 -1.127 -1.134 -1.337 -1.344 + -1.103 -1.083 -1.165 -1.249 -1.274 -1.355 -1.413 -1.397 -1.384 -1.231 + -1.067 -0.942 -1.317 -0.958 -0.727 -1.178 -1.121 -1.062 -1.034 -1.251 + -1.145 -1.047 -1.166 -1.383 -1.249 -1.657 -1.106 -1.112 -0.904 -0.999 + -0.704 -1.090 -1.432 -1.413 -1.542 -1.167 -1.518 -1.147 -1.335 -1.144 + -1.309 -1.285 -1.175 -1.031 -0.927 -0.873 -1.169 -0.964 -1.448 -1.727 + -1.118 -1.030 -1.315 -0.895 -1.345 -1.540 -0.850 -0.935 -1.048 -1.412 + -1.403 -1.156 -1.316 -1.365 -1.140 -1.234 -1.100 -1.052 -1.349 -1.500 + + 741 iasi616_metop-a 7024 0.291998E-01 + -1.080 -1.090 -1.291 -1.232 -0.665 -1.086 -1.441 -1.207 -1.041 -1.225 + -1.053 -1.121 -1.334 -1.284 -1.306 -1.386 -1.345 -1.208 -1.265 -1.309 + -1.140 -1.122 -1.262 -1.303 -1.349 -1.336 -1.384 -1.352 -1.279 -1.238 + -0.893 -1.048 -1.668 -0.760 0.101 -0.892 -0.666 -0.834 -0.508 -1.097 + -0.264 -0.575 -0.972 -1.077 -1.069 -1.187 -0.750 -0.694 0.202 -0.073 + 0.415 -0.841 -0.626 -1.029 -1.413 -0.332 -0.921 -0.529 -0.763 -0.321 + -0.400 -0.551 -0.600 -0.561 0.395 -0.309 -0.374 -0.012 -0.144 -1.018 + 0.200 0.131 -0.919 0.265 -0.916 -0.482 -0.689 -0.379 -0.365 0.009 + -0.228 -0.524 -0.717 -0.920 -0.125 -0.303 0.197 0.478 -0.894 -0.699 + + 742 iasi616_metop-a 7027 0.286079E-01 + -0.703 -0.369 -0.696 -0.760 -0.505 -0.772 -1.022 -0.512 -0.634 -0.918 + -0.568 -0.311 -0.448 -0.444 -0.832 -1.027 -0.623 -0.603 -0.614 -0.931 + -0.255 -0.298 -0.619 -0.674 -0.586 -0.891 -1.205 -0.623 -0.550 -0.880 + -1.024 -1.176 -1.285 -0.859 -0.003 -1.068 -0.851 -1.110 -0.755 -1.445 + -0.676 -0.760 -0.732 -0.732 -1.442 -1.055 -0.759 -0.774 0.013 -0.503 + 0.445 -1.010 -0.468 -0.619 -1.319 -0.127 -0.973 -0.685 -1.129 -0.418 + -0.115 -1.096 -0.793 -0.331 0.455 -0.573 -0.514 -0.128 -0.219 -1.713 + 0.217 -0.019 -1.151 0.237 -0.625 -0.353 -0.395 -0.266 -0.197 -0.202 + -0.149 -0.601 -0.953 -0.685 -0.084 -0.748 -0.238 0.049 -0.922 -0.763 + + 743 iasi616_metop-a 7029 0.282961E-01 + -0.721 -0.451 -0.975 -0.753 -0.432 -0.708 -1.134 -0.792 -0.622 -0.796 + -0.655 -0.060 -0.619 -0.486 -0.700 -1.096 -0.722 -0.418 -0.703 -0.809 + -0.242 -0.450 -0.502 -0.782 -0.690 -0.530 -0.951 -0.806 -0.607 -0.807 + -0.935 -1.180 -1.789 -0.743 -0.024 -0.634 -0.874 -0.628 -0.623 -1.155 + -0.874 -0.994 -0.283 -0.809 -1.047 -0.857 -0.441 -0.547 0.147 -0.408 + 0.623 -0.702 -0.666 -1.077 -0.980 -0.243 -0.934 -0.563 -0.688 -0.109 + -0.401 -0.667 -0.490 -0.432 0.380 -0.336 -0.488 -0.010 -0.180 -1.246 + 0.617 -0.015 -1.145 0.274 -0.726 -0.831 -0.009 -0.214 0.121 -0.218 + -0.322 -0.559 -0.707 -0.980 -0.164 -0.767 0.028 0.376 -1.009 -0.837 + + 744 iasi616_metop-a 7032 0.278914E-01 + -0.633 -0.369 -0.667 -0.612 -0.083 -0.578 -0.892 -0.492 -0.303 -0.648 + -0.509 -0.324 -0.438 -0.373 -0.673 -0.745 -0.485 -0.423 -0.761 -0.691 + 0.009 -0.161 -0.468 -0.572 -0.438 -0.559 -0.856 -0.673 -0.427 -0.746 + -0.747 -0.792 -1.129 -0.542 0.282 -0.604 -0.388 -0.805 -0.424 -0.728 + -0.429 -0.450 -0.684 -0.850 -1.157 -1.020 -0.577 -0.189 -0.186 0.100 + 0.633 -0.596 -0.454 -0.621 -0.587 -0.287 -0.761 -0.305 -1.134 -0.398 + -0.130 -0.805 -0.711 -0.500 0.499 -0.239 -0.131 0.126 0.019 -1.327 + 0.684 0.024 -0.813 0.585 -1.003 -0.566 -0.204 -0.197 -0.092 -0.252 + -0.117 -0.348 -0.411 -0.830 -0.006 -0.703 -0.250 0.361 -0.990 -0.523 + + 745 iasi616_metop-a 7038 0.269697E-01 + -0.543 -0.403 -0.700 -0.478 -0.130 -0.453 -0.812 -0.469 -0.243 -0.638 + -0.398 -0.148 -0.286 -0.324 -0.640 -0.637 -0.441 -0.374 -0.697 -0.657 + -0.193 -0.221 -0.499 -0.599 -0.526 -0.656 -0.768 -0.605 -0.409 -0.491 + -0.414 -0.688 -1.516 -0.539 0.072 -0.734 -0.638 -0.691 -0.314 -1.169 + -0.556 -0.562 -0.630 -0.085 -0.904 -1.466 -0.615 -0.328 0.106 -0.041 + 0.582 -0.211 -0.450 -0.957 -1.027 -0.001 -0.681 -0.149 -0.662 -0.125 + -0.137 -0.294 -0.305 -0.151 0.709 -0.129 -0.247 0.296 0.232 -1.114 + 0.477 0.183 -0.802 0.672 -0.544 -0.276 -0.270 -0.027 -0.019 0.422 + -0.088 0.131 -0.265 -0.794 -0.501 -0.658 -0.095 0.293 -0.551 -0.603 + + 746 iasi616_metop-a 7043 0.263351E-01 + -0.409 -0.535 -0.508 -0.659 -0.090 -0.676 -0.949 -0.747 -0.121 -0.693 + -0.386 -0.017 -0.264 -0.422 -0.706 -0.853 -0.368 -0.242 -0.726 -0.641 + -0.036 -0.238 -0.156 -0.531 -0.740 -0.532 -0.730 -0.490 -0.362 -0.653 + -0.434 -0.733 -1.460 -0.650 0.231 -0.951 -0.314 -1.013 -0.287 -1.182 + -0.458 -0.537 -0.486 -1.001 -0.702 -0.824 -0.545 -0.151 0.206 0.024 + 0.550 -0.279 -0.238 -0.851 -0.898 -0.077 -0.798 -0.310 -0.821 -0.243 + -0.179 -0.760 -0.521 -0.505 0.422 -0.326 -0.179 0.253 0.206 -1.173 + 0.469 0.366 -0.453 0.255 -0.522 -0.264 -0.275 0.052 0.196 -0.004 + -0.162 -0.261 -0.484 -0.984 -0.123 -0.680 -0.059 0.122 -0.758 -0.494 + + 747 iasi616_metop-a 7046 0.258738E-01 + -0.683 -0.333 -0.532 -0.466 0.004 -0.525 -1.055 -0.624 -0.084 -0.779 + -0.384 -0.162 -0.241 -0.269 -0.527 -0.750 -0.372 -0.299 -0.684 -0.651 + -0.064 -0.305 -0.288 -0.639 -0.534 -0.575 -0.694 -0.645 -0.384 -0.677 + -0.456 -0.795 -1.597 -0.540 0.440 -0.553 -0.626 -1.015 -0.771 -0.933 + -0.278 -0.355 -0.442 -0.601 -0.491 -0.886 -1.077 -0.149 0.121 -0.164 + 0.485 -0.623 -0.348 -0.686 -0.692 -0.249 -0.880 -0.335 -0.852 -0.033 + 0.321 -0.662 -0.281 -0.438 0.236 -0.262 -0.085 0.129 0.051 -1.305 + 0.610 0.056 -0.439 0.437 -0.716 -0.143 -0.160 -0.247 0.132 0.712 + -0.333 -0.271 -0.837 -0.618 0.168 -0.091 0.317 0.219 -0.866 -0.277 + + 748 iasi616_metop-a 7049 0.259560E-01 + -0.437 -0.284 -0.557 -0.598 -0.128 -0.696 -0.889 -0.683 -0.206 -0.673 + -0.574 -0.239 -0.504 -0.088 -0.658 -0.961 -0.349 -0.164 -0.650 -0.785 + -0.013 -0.328 -0.556 -0.585 -0.639 -0.620 -0.851 -0.510 -0.239 -0.517 + -0.603 -0.840 -1.549 -0.672 0.142 -0.868 -0.299 -0.846 -0.426 -1.427 + -0.366 -0.361 -0.311 -0.941 -1.069 -0.991 -0.406 -0.124 -0.014 0.248 + 0.531 -0.559 0.103 -0.951 -1.105 -0.237 -1.076 -0.560 -0.693 -0.108 + -0.111 -0.857 -0.298 -0.138 0.753 -0.281 0.110 0.081 -0.158 -1.103 + -0.021 0.276 -0.734 0.381 -0.871 -0.432 -0.360 -0.051 0.364 -0.198 + -0.542 -0.290 -0.360 -0.666 -0.166 -0.271 -0.261 0.319 -0.681 -0.390 + + 749 iasi616_metop-a 7069 0.233387E-01 + -0.686 -0.439 -0.509 -0.550 -0.045 -0.329 -0.940 -0.408 -0.268 -0.622 + -0.473 -0.135 -0.239 -0.274 -0.717 -0.635 -0.395 -0.189 -0.293 -0.606 + 0.063 -0.138 -0.189 -0.536 -0.567 -0.601 -0.655 -0.503 -0.295 -0.690 + -0.123 -0.592 -0.857 -0.570 0.117 -0.686 -0.014 -0.540 -0.027 -1.268 + -0.382 -0.068 -0.050 -1.071 -1.004 -0.621 -0.824 -0.039 0.109 0.187 + 0.610 -0.175 0.112 -0.257 -0.463 -0.167 -0.504 -0.423 -0.861 0.025 + -0.005 -0.498 0.358 0.228 0.557 -0.019 0.053 0.177 0.011 -1.290 + 0.771 0.212 -0.721 0.945 -0.247 -0.226 0.049 -0.260 -0.284 0.253 + -0.132 -0.318 -0.502 -1.007 0.033 -0.194 -0.107 0.840 -0.392 -0.351 + + 750 iasi616_metop-a 7072 0.231324E-01 + -0.594 -0.250 -0.452 -0.702 -0.103 -0.378 -0.825 -0.344 -0.054 -0.431 + -0.348 -0.041 -0.152 -0.066 -0.383 -0.513 -0.243 -0.029 -0.456 -0.611 + 0.069 0.084 -0.112 -0.503 -0.171 -0.433 -0.611 -0.316 -0.169 -0.626 + -0.334 -0.703 -1.502 -1.037 0.448 -0.531 -0.444 -0.399 -0.610 -0.674 + -0.749 -0.121 -0.702 -0.735 -0.870 -1.144 -0.887 -0.113 0.037 0.141 + 0.423 -0.241 -0.224 -0.793 -0.649 -0.092 -1.042 -0.494 -0.924 0.293 + 0.056 -0.099 0.025 0.197 0.676 -0.719 0.107 0.213 0.033 -0.978 + 0.511 0.247 -0.280 0.903 -0.568 -0.274 -0.010 -0.235 0.287 -0.031 + -0.261 0.153 -0.223 -0.533 0.002 -0.300 0.076 0.742 -0.296 -0.334 + + 751 iasi616_metop-a 7076 0.227261E-01 + -0.458 -0.386 -0.510 -0.719 0.086 -0.556 -0.908 -0.481 0.044 -0.718 + -0.634 0.115 -0.142 -0.265 -0.476 -0.601 -0.239 -0.225 -0.639 -0.774 + 0.068 -0.067 -0.229 -0.507 -0.274 -0.434 -0.681 -0.415 -0.413 -0.519 + -0.127 -0.794 -1.704 -0.520 0.506 -0.892 -0.268 -0.846 -0.518 -1.183 + -0.619 -0.635 -0.294 -0.395 -1.202 -1.393 -0.377 -0.172 0.041 -0.103 + 0.195 -0.415 -0.204 -0.628 -0.413 -0.425 -0.992 -0.201 -0.374 0.087 + -0.238 -0.572 0.022 -0.378 0.475 -0.469 -0.093 0.073 0.102 -1.385 + 0.672 0.893 -0.836 0.449 -0.720 -0.582 -0.144 -0.190 0.580 0.230 + -0.300 -0.075 -0.244 -0.449 0.128 -0.180 -0.121 0.432 -0.952 -0.413 + + 752 iasi616_metop-a 7081 0.223183E-01 + -0.730 -0.146 -0.467 -0.635 -0.067 -0.280 -0.894 -0.433 0.062 -0.755 + -0.465 0.035 -0.100 -0.016 -0.610 -0.800 -0.171 -0.230 -0.355 -0.425 + -0.012 0.151 -0.353 -0.546 -0.416 -0.394 -0.652 -0.352 -0.259 -0.511 + 0.143 -0.692 -1.145 -0.575 0.391 -0.807 -0.254 -0.383 -0.369 -1.055 + -0.417 0.003 -0.352 -0.770 -0.726 -0.786 -0.673 -0.010 0.230 0.204 + 0.713 -0.273 -0.002 -0.327 -0.581 0.179 -0.706 -0.381 -0.447 0.350 + 0.061 0.104 0.105 -0.183 0.739 -0.279 0.102 0.278 0.244 -0.736 + 1.145 0.437 -0.419 0.670 -0.279 -0.194 -0.039 -0.221 0.276 0.188 + -0.201 0.016 0.084 -0.367 -0.102 -0.213 0.044 0.279 -0.072 -0.201 + + 753 iasi616_metop-a 7084 0.222401E-01 + -0.577 -0.057 -0.516 -0.533 0.134 -0.374 -0.675 -0.339 0.043 -0.418 + -0.417 -0.129 -0.214 -0.153 -0.446 -0.688 -0.187 -0.108 -0.347 -0.555 + 0.149 -0.073 -0.379 -0.497 -0.125 -0.350 -0.659 -0.364 -0.081 -0.540 + 0.048 -0.804 -1.382 -0.640 0.163 -0.751 -0.350 -0.342 -0.229 -0.857 + -0.629 -0.158 -0.477 -1.421 -0.981 -0.938 -0.172 -0.018 0.183 0.466 + 0.603 -0.524 0.039 -0.320 -0.730 -0.087 -0.495 -1.044 -0.751 -0.153 + -0.221 -0.355 -0.054 -0.339 0.370 -0.427 0.212 0.176 0.137 -1.302 + 0.855 0.292 -0.583 0.543 -0.450 -0.664 0.059 -0.320 -0.157 -0.198 + -0.263 -0.532 -0.423 -0.436 0.142 -0.283 -0.344 0.747 -0.839 -0.472 + + 754 iasi616_metop-a 7089 0.216671E-01 + -0.546 -0.186 -0.436 -0.570 0.052 -0.406 -0.841 -0.381 0.089 -0.488 + -0.242 0.207 0.065 -0.309 -0.395 -0.715 0.025 -0.154 -0.369 -0.478 + 0.023 0.073 -0.109 -0.552 -0.264 -0.250 -0.420 -0.230 -0.138 -0.307 + 0.021 -0.574 -1.086 -0.397 0.454 -0.483 -0.358 -0.659 -0.327 -0.698 + -0.573 0.098 0.053 -1.425 -1.002 -0.314 -0.507 -0.303 0.002 0.592 + 0.631 -0.273 0.207 0.031 -0.141 0.405 -0.459 -0.346 -0.327 0.464 + 0.344 -0.287 0.319 0.242 0.653 0.191 0.516 0.482 0.060 -1.134 + 1.052 0.147 -0.712 1.038 -0.608 -0.061 -0.467 0.069 0.437 0.093 + 0.143 0.490 0.015 -0.648 0.111 -0.206 0.104 0.521 -0.072 -0.000 + + 755 iasi616_metop-a 7099 0.212847E-01 + -0.516 -0.050 -0.255 -0.362 0.470 -0.195 -0.703 -0.282 0.077 -0.507 + -0.093 0.177 0.067 -0.117 -0.276 -0.544 0.030 -0.096 -0.407 -0.249 + 0.142 0.002 -0.263 -0.296 -0.124 -0.157 -0.398 -0.347 0.067 -0.519 + -0.103 -0.533 -1.221 -0.763 0.380 -1.054 -0.074 -0.392 0.144 -0.742 + -0.889 -0.041 -0.034 -0.070 -0.823 -1.317 -0.525 -0.100 0.170 0.384 + 0.656 -0.108 -0.189 -0.529 -0.430 -0.314 -0.883 -0.171 -0.664 0.178 + 0.010 -0.324 0.259 0.107 0.631 0.282 0.253 0.652 0.001 -0.908 + 0.810 0.352 -0.129 1.096 -0.343 -0.208 -0.087 0.255 0.427 0.494 + -0.138 -0.210 -0.072 -0.882 0.404 -0.118 -0.179 0.709 -0.371 -0.352 + + 756 iasi616_metop-a 7209 0.156132E-01 + -0.290 0.171 -0.424 -0.382 0.308 -0.061 -0.469 0.285 0.506 -0.513 + -0.261 0.158 0.003 -0.010 -0.530 -0.362 0.075 0.046 -0.159 -0.144 + 0.352 0.149 -0.072 -0.316 -0.019 -0.186 -0.300 -0.011 0.113 -0.257 + -0.031 -0.299 -1.132 -0.902 0.880 -0.308 -0.189 0.135 -0.027 -0.006 + -0.482 0.061 0.094 -0.308 -0.889 -0.005 0.033 0.404 0.296 0.729 + 0.387 0.272 0.529 0.041 0.298 0.100 -0.177 -0.176 -0.527 0.576 + 0.186 0.115 0.404 0.076 0.653 0.142 1.335 0.913 0.638 -0.395 + 0.720 0.831 0.173 1.307 -0.232 0.301 -0.021 0.268 0.487 1.043 + -0.501 0.461 0.902 -0.524 0.059 -0.068 0.752 0.704 0.149 -0.508 + + 757 iasi616_metop-a 7222 0.159940E-01 + -0.054 0.011 -0.198 -0.359 0.538 0.167 -0.419 -0.076 0.588 -0.279 + -0.027 0.109 0.292 0.391 0.230 -0.056 0.374 0.382 0.160 -0.090 + 0.412 0.286 0.240 -0.259 0.178 0.022 0.056 0.392 0.637 -0.148 + -0.279 -0.219 -1.208 -0.611 0.807 -0.460 -0.078 -0.566 0.121 0.121 + -0.802 0.343 -0.041 -0.272 -0.863 -0.623 -0.410 0.136 0.230 0.819 + 0.489 0.327 0.245 -0.011 -0.396 0.252 -0.459 -0.365 -0.238 0.920 + 1.001 -0.709 0.006 0.213 1.326 -0.135 1.395 0.230 0.920 -0.801 + 1.030 0.837 -0.131 0.738 -0.247 -0.326 -0.119 0.207 -0.006 1.216 + -0.435 0.304 0.811 -0.827 0.041 -0.257 0.268 0.936 -0.387 -0.534 + + 758 iasi616_metop-a 7231 0.154528E-01 + 0.023 -0.084 -0.564 -0.346 0.073 0.054 -0.529 0.125 0.057 -0.120 + -0.292 0.585 0.253 0.406 -0.136 -0.019 0.171 0.381 0.066 0.026 + 0.481 0.131 0.432 -0.274 0.205 0.105 0.041 0.088 0.810 0.045 + -0.971 -0.181 -1.609 -0.756 0.881 -0.923 -0.016 -0.160 0.127 0.128 + -1.059 0.113 -0.097 -1.117 -0.930 -0.176 -0.119 0.410 0.409 0.422 + 0.493 0.157 0.018 -0.144 -0.055 -0.455 -0.310 -0.119 -0.906 0.558 + 0.405 -0.360 -0.325 -0.446 0.804 0.007 0.316 0.087 0.440 0.333 + 1.103 0.474 -0.094 0.390 -0.487 0.415 0.083 0.394 0.143 0.811 + -0.460 -0.173 0.672 -0.747 0.621 -0.013 0.747 1.351 -0.396 -0.390 + + 759 iasi616_metop-a 7235 0.152161E-01 + -0.159 -0.068 -0.678 -0.254 0.310 0.121 -0.465 0.244 0.604 -0.614 + -0.192 0.207 0.137 -0.043 -0.158 -0.012 -0.041 0.242 -0.041 0.127 + 0.679 0.548 0.085 0.005 0.065 0.084 -0.132 0.283 0.616 -0.237 + -0.629 -0.170 -0.949 -0.674 1.021 -0.639 -0.652 -0.042 0.186 -0.730 + -1.245 0.264 -0.368 -0.495 -0.818 -0.313 -0.488 0.091 0.010 0.484 + 0.297 0.011 -0.017 -0.388 -0.150 0.300 -0.662 -0.223 -0.899 0.617 + 0.504 0.177 0.114 0.195 0.399 -0.400 0.901 0.515 0.782 -0.241 + 1.559 1.040 -0.139 1.140 -0.281 -0.079 0.583 0.271 0.378 0.979 + -0.413 0.187 1.008 -0.922 0.286 -0.090 0.290 0.882 -0.124 -0.114 + + 760 iasi616_metop-a 7247 0.129610E-01 + -0.439 -0.136 -0.189 -0.567 0.282 -0.082 -0.647 -0.012 0.189 -0.467 + 0.016 -0.166 0.150 0.124 0.278 0.081 0.519 -0.052 0.055 -0.115 + 0.453 0.319 0.196 -0.287 0.316 0.117 -0.253 0.422 0.463 -0.159 + -0.329 -0.229 -1.231 -0.872 0.756 -0.650 -0.282 -0.094 0.151 -0.111 + -0.536 0.396 0.157 -0.552 -1.172 -0.204 0.308 0.563 0.244 0.598 + 0.661 0.488 0.314 -0.222 0.360 -0.266 -0.512 -0.118 -0.777 0.811 + 0.458 0.062 0.133 -0.087 1.091 0.158 1.198 0.739 0.719 -0.873 + 1.411 0.364 0.081 0.782 -0.207 0.108 0.161 0.616 -0.731 0.131 + -0.369 -0.386 0.409 -0.994 0.355 -0.239 0.617 0.845 -0.113 -0.010 + + 761 iasi616_metop-a 7267 0.114345E-01 + -0.255 0.065 -0.211 -0.438 0.079 -0.162 -0.800 0.058 0.473 -0.323 + -0.598 -0.017 0.036 0.105 0.174 0.172 0.044 0.424 -0.033 -0.065 + 0.239 0.286 0.242 -0.389 0.130 0.070 -0.230 0.122 0.398 -0.414 + -0.487 -0.085 -0.961 -0.815 0.924 -0.552 -0.018 -0.148 0.502 -0.332 + -0.699 0.585 -0.222 -0.326 -1.028 0.541 0.479 0.579 0.308 0.521 + 0.649 0.458 0.727 -0.178 0.016 -0.070 -0.896 -0.211 -0.970 1.002 + 0.426 -0.236 -0.568 -0.299 0.684 0.117 1.078 0.939 0.111 -0.090 + 1.388 0.874 -0.212 0.340 -0.323 -0.290 -0.126 0.282 -0.455 0.118 + -0.177 0.171 1.055 -0.600 0.427 -0.323 0.077 0.452 -0.283 0.043 + + 762 iasi616_metop-a 7269 0.111497E-01 + -0.097 -0.222 -0.530 -0.467 0.028 0.157 -0.455 -0.243 0.267 -0.660 + -0.002 -0.333 0.084 0.529 0.012 0.201 0.103 0.119 -0.182 -0.010 + 0.305 0.293 -0.020 -0.086 0.435 0.187 -0.306 0.302 0.427 -0.233 + -0.889 -0.107 -0.594 -0.735 0.722 -0.863 -0.391 0.052 0.650 -0.691 + -1.074 0.128 -0.308 -0.592 -0.616 0.145 -0.554 0.527 0.666 0.673 + 0.529 0.141 0.532 0.257 -0.720 -0.842 -0.478 -0.258 -0.860 0.658 + 0.461 -0.052 -0.530 -0.335 1.303 0.080 1.172 0.510 0.437 -0.284 + 1.027 0.349 0.268 0.245 -0.594 0.250 -0.643 0.428 -0.109 0.252 + -0.783 0.106 0.636 -1.318 0.227 -0.179 0.200 1.053 -0.136 -0.276 + + 763 iasi616_metop-a 7284 0.113000E-01 + -0.068 0.089 -0.480 -0.288 -0.014 -0.283 -0.694 -0.228 0.260 -0.616 + -0.379 -0.081 0.186 0.451 0.111 0.293 0.169 0.270 -0.148 0.199 + 0.502 0.206 0.032 -0.145 0.084 0.305 -0.256 0.272 0.289 -0.248 + -0.303 -0.210 -0.792 -0.381 0.654 -0.739 0.155 -0.324 0.361 -0.575 + -0.448 0.582 0.184 -0.658 -0.831 0.026 0.648 0.384 0.276 0.506 + 1.072 0.403 0.313 -0.186 0.701 -0.128 -0.406 -0.249 -0.235 0.829 + 0.415 -0.216 -0.134 -0.328 0.945 0.388 1.043 0.746 0.553 -0.648 + 1.426 -0.080 -0.137 0.591 -0.608 0.196 -0.429 0.570 -0.050 0.581 + -0.774 -0.138 0.830 -0.548 0.444 -0.126 0.225 0.530 -0.471 -0.425 + + 764 iasi616_metop-a 7389 0.648089E-02 + -0.417 0.096 -0.559 -0.420 0.408 -0.035 -0.357 0.037 0.211 -0.611 + -0.372 -0.047 0.004 0.419 0.276 0.483 0.145 0.288 -0.091 0.216 + 0.348 0.365 0.100 -0.060 0.126 0.239 -0.150 0.208 0.467 -0.654 + 0.107 -0.465 -0.689 0.089 0.713 -0.734 -0.267 -0.069 0.873 -0.712 + -0.770 0.064 0.131 -0.714 -0.780 0.376 0.090 0.229 0.601 1.014 + 0.910 1.086 0.350 0.134 -0.698 -0.027 -0.893 -0.010 -0.016 0.959 + 0.532 -0.074 0.305 -0.377 0.631 0.781 0.733 0.302 -0.119 -0.679 + 1.432 0.512 -0.224 -0.494 0.212 -0.209 -0.104 0.828 -0.340 0.212 + -0.400 0.589 0.702 -0.534 0.711 0.019 0.294 1.031 -0.374 0.150 + + 765 iasi616_metop-a 7419 0.531394E-02 + -0.553 0.033 -0.538 -0.412 -0.202 0.067 -0.473 0.060 0.135 -0.383 + -0.466 -0.377 0.287 0.754 0.124 0.111 -0.012 0.114 0.308 0.085 + 0.255 0.071 -0.010 -0.304 -0.043 0.033 -0.316 0.197 -0.009 0.023 + 0.078 -0.474 -0.824 0.088 0.644 -0.673 -0.305 -0.025 -0.453 -0.502 + -0.045 -0.103 0.082 -0.311 -0.078 0.469 0.786 0.237 0.481 0.792 + 0.813 0.679 0.282 0.431 -0.288 0.027 -0.887 0.125 -0.852 1.080 + 0.746 0.021 0.304 0.233 0.998 0.212 0.554 0.906 0.091 -0.578 + 1.571 0.553 0.262 0.650 -0.303 0.445 -1.015 0.475 -0.440 0.595 + 0.299 -0.068 0.659 -0.063 0.770 -0.667 0.393 1.085 -0.179 -0.305 + + 766 iasi616_metop-a 7423 0.504304E-02 + -0.324 0.038 -0.526 -0.681 0.109 0.017 -0.703 0.188 0.025 -0.756 + -0.172 -0.556 0.099 0.142 -0.227 0.273 0.144 -0.261 0.368 0.219 + 0.460 0.160 0.082 0.030 0.100 -0.373 -0.253 0.045 -0.022 0.130 + -0.085 -0.422 -0.608 0.027 0.768 -0.438 0.297 0.284 -0.281 -0.688 + -0.227 0.106 0.323 -1.613 -0.336 1.097 0.796 0.538 0.796 0.498 + 1.283 1.224 0.375 0.023 -0.478 0.429 -0.435 0.230 -0.496 0.814 + 0.609 0.348 1.302 -0.365 0.603 0.698 1.290 0.418 -0.279 -0.843 + 1.590 0.686 0.340 0.107 -0.286 0.233 -0.161 0.402 0.968 0.529 + 0.414 0.137 0.014 -0.528 0.389 0.526 0.856 1.036 0.320 -0.516 + + 767 iasi616_metop-a 7424 0.501855E-02 + -0.425 -0.214 -0.612 -0.769 -0.070 0.050 -0.681 -0.156 -0.088 -0.541 + -0.337 -0.220 0.101 0.115 0.112 -0.434 -0.026 -0.046 -0.315 0.301 + 0.445 0.180 -0.112 -0.293 -0.090 -0.222 -0.013 0.136 0.092 0.141 + -0.230 -0.353 -0.631 0.227 0.792 -1.057 -0.097 0.253 -0.073 -0.843 + -0.420 -0.276 0.289 -0.695 -0.571 0.312 0.949 0.543 0.852 0.969 + 0.827 1.530 0.534 0.465 -0.477 0.183 -0.833 0.319 -0.019 0.716 + 0.644 0.276 0.587 -0.678 0.587 0.850 1.369 0.617 -0.074 -0.579 + 2.098 0.443 0.504 0.595 0.201 0.029 -0.032 0.701 0.516 0.862 + 0.012 0.136 0.089 -0.354 0.956 -0.218 0.042 0.501 -0.009 -0.361 + + 768 iasi616_metop-a 7426 0.502596E-02 + -0.262 -0.129 -0.281 -0.593 -0.098 0.178 -0.731 0.082 0.070 -0.579 + -0.116 -0.461 -0.051 0.409 -0.138 -0.148 0.044 0.118 0.170 0.215 + 0.358 0.366 -0.295 0.146 -0.087 -0.416 -0.425 0.067 0.324 0.069 + 0.070 -0.331 -0.503 0.612 0.909 -0.317 0.623 0.751 0.258 -0.367 + -0.249 0.065 0.225 -0.834 -0.669 -0.008 0.674 1.138 0.800 1.074 + 1.211 1.362 0.170 0.019 0.022 0.342 -0.719 0.338 -0.548 1.295 + 0.860 -0.743 0.568 -0.279 0.676 1.020 0.347 0.159 -0.295 -0.497 + 2.043 0.519 0.523 0.373 -0.467 -0.670 -0.298 1.103 0.013 1.155 + -0.234 0.240 0.675 -0.494 0.322 -0.111 0.067 1.052 -0.423 0.434 + + 769 iasi616_metop-a 7428 0.496363E-02 + -0.641 -0.200 -0.450 -0.563 0.044 0.099 -0.721 0.105 0.329 -0.450 + -0.226 -0.390 0.026 0.211 -0.154 -0.206 0.021 0.191 0.087 0.127 + 0.663 0.591 0.076 -0.107 -0.016 -0.216 -0.216 0.059 0.149 -0.051 + 0.121 -0.451 -0.526 0.052 0.961 -0.553 0.047 -0.182 0.011 -0.351 + -0.483 0.054 0.281 -1.461 -0.142 0.088 0.659 0.504 0.561 1.056 + 1.018 0.817 0.332 0.204 0.055 0.421 -1.043 0.523 -0.689 0.912 + 1.075 -0.222 0.463 -0.092 1.127 0.558 0.933 -0.361 -0.140 -0.161 + 2.133 1.104 -0.321 1.038 -0.735 0.229 -0.416 0.210 0.394 1.041 + 0.479 0.407 0.285 -0.086 1.029 0.192 0.388 0.967 -0.460 0.140 + + 770 iasi616_metop-a 7431 0.526551E-02 + -0.248 0.014 -0.345 -0.552 0.336 0.270 -0.966 0.218 0.422 -0.250 + -0.235 -0.299 0.423 0.481 0.221 -0.188 -0.036 0.139 0.287 -0.044 + 0.536 0.545 -0.263 0.056 0.245 -0.317 -0.064 0.245 -0.027 0.120 + 0.461 -0.181 -0.410 0.385 0.966 -0.425 0.776 0.567 0.007 -0.147 + -0.568 0.467 -0.368 -1.143 -0.381 0.614 0.980 0.574 0.485 1.325 + 1.024 1.430 0.610 -0.060 0.425 -0.328 -0.959 0.118 -0.729 1.107 + 1.081 -0.552 0.328 0.308 0.916 0.199 1.265 0.288 0.054 -0.482 + 2.117 0.429 0.458 0.566 -0.386 -0.326 0.079 0.384 0.466 0.904 + 0.216 0.751 -0.003 -0.085 0.446 0.113 0.372 0.849 -0.626 -0.211 + + 771 iasi616_metop-a 7436 0.491302E-02 + -0.178 0.002 -0.290 -0.534 -0.466 0.200 -0.600 -0.099 0.136 -0.324 + -0.460 -0.055 0.359 0.503 -0.221 0.029 -0.077 0.172 0.025 0.332 + 0.333 0.104 0.053 -0.113 0.095 -0.310 -0.331 -0.060 -0.054 0.210 + -0.248 -0.324 -0.402 -0.134 0.546 -0.827 0.136 -0.028 0.319 -0.383 + -0.406 -0.166 0.051 -0.864 -0.180 0.748 0.785 1.072 0.527 0.554 + 1.247 1.232 0.809 0.620 -0.395 0.351 -0.242 0.197 0.042 0.864 + 0.632 0.176 0.206 -0.236 0.951 0.402 0.830 0.586 -0.609 -0.894 + 0.372 0.535 0.045 0.386 -0.080 -0.190 -0.290 0.563 0.193 1.165 + 0.346 0.145 0.214 -0.480 0.679 -0.365 0.155 0.885 -0.517 -0.290 + + 772 iasi616_metop-a 7444 0.472236E-02 + -0.230 0.005 -0.538 -0.743 0.051 0.015 -0.564 -0.156 -0.304 -0.456 + 0.020 -0.560 -0.428 0.210 -0.077 -0.226 -0.156 -0.148 0.100 0.148 + 0.420 0.018 -0.542 -0.250 -0.015 0.304 -0.219 -0.019 -0.100 0.081 + -0.099 0.183 -0.429 0.100 0.764 -0.715 0.239 0.109 0.110 -0.524 + -0.215 0.122 -0.276 -1.232 -0.026 0.607 0.646 0.097 0.304 0.553 + 0.334 1.090 -0.013 0.215 -0.637 0.243 -0.915 0.553 -0.807 1.092 + 1.148 0.025 -0.043 -0.057 0.557 0.875 -0.020 -0.106 -0.360 0.378 + 1.202 0.204 0.269 0.429 -0.158 0.189 -0.243 0.391 0.191 0.480 + 0.239 0.382 0.370 -0.139 0.371 0.463 -0.232 0.848 -0.414 -0.021 + + 773 iasi616_metop-a 7475 0.412980E-02 + -0.285 0.143 -0.443 -0.415 0.146 0.045 -0.517 0.079 -0.229 -0.028 + -0.427 -0.269 -0.013 0.404 0.096 0.015 -0.352 0.272 0.325 -0.005 + 0.652 0.175 -0.307 -0.345 0.059 -0.365 -0.037 -0.124 -0.139 0.331 + 0.008 -0.568 -0.344 0.386 0.771 -0.391 0.354 0.389 0.276 -0.902 + -0.231 0.199 -0.052 -0.890 -0.078 0.654 1.060 0.639 0.322 0.720 + 0.548 0.879 1.014 0.683 0.302 0.107 -0.677 0.604 -0.161 1.130 + 0.641 -0.151 0.694 0.002 0.640 0.821 1.050 0.591 0.006 -1.174 + 1.694 0.732 0.300 0.295 0.289 -0.053 -0.346 0.753 0.104 1.394 + 0.248 0.019 0.439 0.083 0.978 -0.037 0.647 1.014 -0.606 -0.258 + + 774 iasi616_metop-a 7549 0.558520E-02 + -0.077 -0.105 -0.538 -0.705 0.003 0.058 -0.733 0.013 -0.134 -0.439 + -0.337 -0.345 0.285 0.162 -0.294 -0.233 -0.181 0.278 0.368 0.117 + 0.862 0.060 -0.172 -0.410 -0.168 -0.130 0.129 0.220 0.270 -0.256 + 0.180 -0.064 -0.368 -0.038 0.812 -0.579 0.345 0.077 0.312 0.377 + -0.109 0.007 -0.055 -0.990 -0.187 0.364 0.904 0.347 0.615 0.932 + -0.061 1.521 0.046 0.202 0.083 -0.096 -1.050 -0.058 0.194 1.014 + 1.284 -0.132 1.020 0.136 1.422 0.797 -0.060 -0.003 -0.015 -0.577 + 1.217 0.395 -0.480 0.553 -0.650 -0.001 0.565 0.111 -0.226 0.817 + 0.084 0.163 -0.285 -0.098 0.745 0.210 -0.306 0.990 -0.543 0.204 + + 775 iasi616_metop-a 7584 0.457723E-02 + -0.312 0.041 -0.344 -0.663 0.033 0.095 -0.658 0.237 -0.353 -0.390 + -0.503 -0.674 0.133 0.442 0.020 -0.343 0.033 -0.058 0.130 0.149 + 0.609 0.264 -0.184 -0.386 0.456 -0.098 -0.094 -0.247 0.121 0.168 + 0.300 -0.041 -0.113 0.195 1.337 -0.196 0.142 -0.089 0.055 -0.375 + -0.140 0.136 -0.286 -1.114 -0.742 0.371 1.085 0.381 0.511 0.755 + -0.164 0.511 0.932 0.308 -0.710 0.123 -0.575 0.225 -0.404 1.134 + 0.935 0.048 0.145 -0.097 0.980 0.610 0.158 0.464 -0.304 0.144 + 1.070 -0.106 -0.665 0.153 0.124 -0.308 0.237 0.407 -0.034 0.348 + 0.519 0.489 -0.088 -0.686 1.332 0.152 0.396 0.871 -0.664 0.008 + + 776 iasi616_metop-a 7665 0.602464E-02 + -0.315 -0.120 -0.385 -0.453 -0.253 0.392 -0.828 0.249 -0.330 -0.341 + -0.241 -0.256 -0.015 0.039 -0.170 -0.318 -0.126 0.021 -0.009 0.274 + 0.144 0.351 -0.364 -0.320 -0.177 -0.436 -0.168 -0.209 0.190 0.029 + -0.208 -0.123 0.117 0.101 0.969 0.004 0.493 0.439 0.205 -0.801 + 0.135 0.061 -0.644 -1.240 0.045 -0.134 0.367 -0.143 0.605 0.860 + 0.571 0.480 0.989 0.194 -0.381 -0.052 -0.296 0.278 -0.448 1.188 + 0.914 -0.141 0.700 0.209 1.667 0.241 0.450 -0.083 0.078 -0.282 + 1.570 0.755 -0.391 0.355 -0.145 0.168 0.656 0.704 0.153 0.664 + 0.322 0.277 0.531 -0.085 0.711 0.176 -0.006 1.055 0.069 -0.320 + + 777 iasi616_metop-a 7666 0.423068E-02 + -0.425 0.393 -0.700 -0.784 -0.130 0.098 -0.680 -0.109 -0.416 -0.061 + -0.271 -0.068 0.196 0.085 0.196 -0.012 -0.051 -0.026 0.078 -0.181 + 0.350 0.376 -0.270 -0.308 0.056 -0.181 -0.129 -0.057 0.319 0.034 + -0.545 -0.560 0.445 0.348 -0.081 -0.029 0.695 0.165 0.041 -0.051 + -0.191 -0.000 0.461 -0.571 -0.266 -0.024 1.101 0.639 0.632 1.643 + 0.357 0.349 0.651 0.365 -0.272 -0.543 -0.371 0.737 -0.004 0.810 + 1.529 -0.333 0.130 0.377 1.824 0.471 0.303 -0.470 -0.580 -0.041 + 1.926 0.732 -0.409 1.162 -0.517 -0.133 0.416 0.173 0.385 0.839 + 0.520 0.562 0.776 -0.486 0.733 0.147 0.668 0.775 -0.345 -0.231 + + 778 iasi616_metop-a 7831 0.188985E-02 + -0.011 0.122 -0.688 -0.430 -0.290 0.044 -0.797 0.051 -0.287 -0.084 + 0.026 -0.185 0.388 -0.243 -0.217 -0.258 -0.177 -0.142 -0.090 0.432 + 0.359 0.427 -0.327 -0.134 -0.081 -0.158 -0.213 -0.029 0.485 -0.464 + -0.390 -0.147 0.009 -0.218 1.087 -0.722 1.414 -0.177 -0.112 0.111 + 1.295 0.017 -0.450 -0.894 0.342 -0.301 1.358 0.400 0.532 0.799 + -0.103 0.309 1.832 0.085 0.668 0.087 -0.027 0.731 -0.034 0.750 + 0.470 -1.045 1.233 0.670 1.757 1.350 -0.388 0.302 0.563 0.147 + 0.569 0.058 0.356 -0.518 0.108 0.528 1.060 -0.199 0.926 0.555 + 0.204 0.687 0.775 -0.005 1.010 0.512 0.600 1.017 -0.262 0.630 + + 779 iasi616_metop-a 7836 0.248706E-02 + -0.533 -0.074 -1.124 -0.564 0.034 -0.060 -0.761 -0.274 -0.495 -0.216 + -0.266 -0.714 0.147 0.136 -0.397 0.001 -0.309 0.008 -0.150 0.098 + 0.134 0.565 -0.041 -0.138 0.205 -0.096 -0.147 -0.191 0.206 -0.674 + -0.630 -0.452 -0.589 -0.012 0.070 0.101 0.227 0.344 -0.043 -0.904 + 0.718 0.230 0.021 -1.234 0.443 0.045 0.979 0.622 -0.237 0.653 + 0.237 0.192 0.589 0.099 0.704 -0.656 -0.148 0.901 0.101 0.804 + -0.094 -0.812 -0.427 -0.699 0.438 0.408 -0.059 -0.008 -0.106 -0.685 + 0.842 -0.143 0.040 -0.758 -0.902 -0.570 -0.034 0.315 1.429 0.507 + -0.981 1.178 -0.469 -0.842 1.043 -0.337 -0.097 0.800 -0.023 -0.853 + + 780 iasi616_metop-a 7853 0.128245E-01 + 0.418 0.523 0.561 0.702 0.567 1.061 -0.198 0.930 0.367 0.989 + 0.298 -0.131 0.462 0.678 0.103 0.233 0.387 0.601 0.245 0.401 + 0.512 1.185 0.234 0.501 0.257 -0.052 0.062 -0.102 -0.031 0.225 + 0.235 1.010 0.627 0.820 1.504 0.834 0.974 1.365 1.354 0.867 + 1.208 1.799 1.358 0.114 0.887 1.268 1.481 2.003 1.238 1.712 + 1.754 1.280 1.562 1.164 0.968 0.249 0.569 1.024 0.654 1.939 + 1.202 0.561 0.598 0.907 2.043 1.303 0.720 1.411 0.834 1.044 + 1.791 1.874 1.128 2.512 1.812 0.642 0.866 1.512 1.170 2.025 + 0.782 0.543 1.107 0.461 1.995 1.635 0.839 1.806 1.397 1.568 + + 781 iasi616_metop-a 7865 0.103580E-02 + 0.114 0.599 -0.459 -0.005 0.361 0.564 -0.058 -0.024 -0.101 0.353 + 0.359 1.041 0.662 0.563 0.640 0.727 0.393 0.852 0.061 0.775 + 1.475 1.855 -0.197 0.644 0.569 0.788 0.540 1.056 1.208 0.880 + -0.678 -0.514 -0.574 -0.368 1.377 -0.122 0.409 -0.131 -0.684 -0.208 + 0.704 -0.160 -0.410 -0.481 0.604 -0.214 0.963 0.393 0.706 0.829 + -0.204 -0.164 0.594 0.625 0.738 -0.303 1.215 0.553 0.074 1.348 + 1.142 -0.959 0.960 0.202 0.999 0.895 0.313 0.550 -0.900 0.536 + 0.750 0.754 0.547 0.454 0.037 -0.891 0.454 0.600 0.913 0.352 + 0.467 0.841 -0.720 -0.396 1.329 0.535 0.967 -0.274 -0.878 -0.159 + + 782 iasi616_metop-a 7885 0.584126E-03 + -0.367 0.005 -0.976 -0.848 -0.384 -0.257 -0.703 -0.212 -0.299 -0.240 + -0.655 0.307 -0.240 0.054 -0.396 0.262 -0.550 -0.182 -0.349 -0.092 + 0.047 0.662 -0.245 -0.125 -0.117 -0.186 -0.097 0.002 -0.330 -0.345 + -0.670 -0.656 -0.442 -0.465 0.181 -0.016 0.819 0.257 0.115 0.183 + 0.672 0.110 -0.472 -1.092 0.513 -0.216 1.288 -0.031 0.741 0.569 + -0.512 0.150 0.431 0.160 0.787 0.364 0.319 0.915 0.315 1.179 + 0.451 -0.607 0.495 0.864 0.386 0.150 0.552 1.202 -0.304 0.598 + 0.411 0.358 0.812 -0.026 -0.486 0.454 0.195 -0.234 -0.648 0.097 + -0.292 0.457 -0.895 -0.469 0.030 0.380 0.402 0.326 -0.565 0.359 + + 783 iasi616_metop-a 7888 0.590807E-03 + -0.516 0.375 -1.235 -0.506 0.147 -0.107 -0.587 -0.485 -0.487 -0.553 + -0.670 -0.522 0.012 0.055 -0.883 0.482 -0.073 0.066 -0.137 -0.191 + 0.471 0.762 -0.313 -0.025 0.248 -0.125 -0.417 -0.317 -0.172 -0.393 + -0.201 -0.198 -0.175 -0.570 0.818 0.624 0.937 0.273 -0.337 -0.234 + 0.819 0.211 -0.037 -1.366 0.258 0.012 1.103 0.305 -0.003 1.713 + 0.249 0.309 0.894 0.424 1.162 0.118 0.502 1.192 0.445 0.969 + 0.847 -0.784 0.583 0.214 0.489 -0.067 0.111 1.335 -0.590 0.194 + 1.495 0.807 0.499 -0.140 -0.217 0.508 0.855 -0.260 1.381 1.677 + 0.511 0.988 0.653 0.116 0.944 0.894 0.452 1.244 -0.634 -0.104 + + 784 iasi616_metop-a 7912 0.146446E-01 + 0.936 1.051 0.701 0.214 0.988 0.901 0.034 0.979 0.979 0.747 + 0.130 0.227 0.910 1.159 0.666 0.282 0.674 0.380 0.251 0.155 + 0.668 1.408 0.170 0.252 0.807 0.336 0.342 0.767 0.611 -0.220 + 0.340 0.639 1.043 0.796 1.178 0.586 1.256 1.434 1.908 1.120 + 1.244 1.939 1.084 0.413 1.551 1.406 0.599 1.946 1.317 1.635 + 1.684 1.449 1.923 1.117 1.398 0.701 0.942 0.860 1.001 1.876 + 1.339 0.450 1.964 1.127 2.470 1.855 1.693 1.210 0.381 0.419 + 1.262 1.875 0.223 1.609 1.358 0.050 1.943 0.691 1.293 1.575 + 1.143 1.144 1.559 0.934 1.407 0.757 1.011 2.112 1.901 1.258 + + 785 iasi616_metop-a 7950 0.103434E-02 + -0.042 0.392 -0.269 -0.065 0.280 0.295 0.044 0.278 0.322 0.322 + 0.394 0.452 0.745 1.382 0.704 0.537 0.735 0.873 0.399 0.698 + 1.166 1.593 0.287 1.152 0.868 0.486 0.877 1.131 1.347 1.057 + -0.341 -0.132 -0.231 -0.594 0.357 -0.463 -0.096 -0.064 -0.396 0.043 + 0.592 0.346 -1.130 -1.242 0.435 0.030 1.350 -0.125 0.231 0.926 + -0.071 0.455 1.055 0.688 0.866 -0.302 0.095 0.777 0.300 0.123 + 0.571 0.066 0.524 -0.504 1.038 0.382 0.147 1.141 -0.618 -0.449 + 0.563 0.865 0.293 -0.567 -0.358 -0.012 -0.073 0.434 0.233 0.339 + 0.344 0.172 -0.863 -0.766 0.353 -0.663 -0.920 0.541 -0.511 -0.173 + + 786 iasi616_metop-a 7972 0.828234E-02 + -0.083 0.929 0.245 0.107 0.345 0.706 -0.204 0.223 0.544 0.224 + -0.123 0.242 0.676 -0.131 -0.043 0.509 -0.137 0.425 0.303 -0.229 + 0.388 0.656 0.192 0.050 0.642 0.250 0.110 0.306 -0.025 -0.349 + 0.188 0.503 0.052 0.370 1.293 1.366 1.504 1.264 1.298 -0.271 + 0.971 1.271 0.630 0.008 0.319 0.524 1.346 1.140 0.420 1.748 + 1.514 1.129 1.305 0.765 0.962 0.448 1.112 1.053 0.357 1.859 + 1.151 -0.420 1.187 0.600 2.687 1.039 -0.229 0.796 -0.162 0.837 + 1.184 1.438 0.722 0.573 0.179 0.645 0.184 0.781 0.970 1.300 + -0.056 0.468 1.164 0.170 1.542 0.857 0.853 1.879 1.050 1.090 + + 787 iasi616_metop-a 7980 0.243604E-02 + -0.463 0.562 -0.735 -0.351 0.460 0.501 -0.511 0.217 -0.155 0.266 + -0.112 0.692 0.483 0.273 0.108 0.854 -0.207 0.029 0.278 0.870 + 1.063 1.123 -0.239 0.620 0.536 0.012 -0.000 0.474 0.499 0.198 + -0.103 -0.578 -0.026 -0.353 0.363 0.311 1.012 0.420 -0.642 -0.292 + 0.023 0.857 -0.129 -1.182 0.464 1.045 1.675 0.804 -0.048 0.185 + 0.280 0.628 0.772 0.369 0.517 0.531 0.041 0.755 0.173 0.927 + 0.485 -0.808 0.299 0.628 0.974 0.588 0.418 1.211 -0.068 0.343 + 1.397 1.293 0.598 0.036 -0.865 1.078 0.150 -0.217 0.950 1.301 + -0.356 0.706 0.409 -1.006 0.212 1.209 0.325 0.799 -0.387 0.362 + + 788 iasi616_metop-a 7995 0.200764E-02 + -0.000 0.498 -0.850 -0.541 0.199 0.023 -0.270 -0.157 -0.503 -0.289 + -0.649 -0.125 0.176 0.199 -0.281 0.667 -0.633 0.310 0.013 0.349 + 0.689 0.470 -0.187 -0.138 0.191 0.373 0.056 -0.188 0.082 0.123 + 0.203 -0.185 0.293 -0.438 0.234 -0.248 1.273 0.419 -0.062 -0.152 + 0.199 0.283 -0.534 -0.841 0.491 0.877 2.117 1.426 0.301 1.117 + -0.195 0.359 0.226 1.109 0.640 0.623 -0.387 0.691 0.633 1.188 + -0.408 -1.586 -0.449 0.254 0.475 0.744 0.405 0.526 -1.079 0.437 + 1.309 1.573 -0.514 -0.831 0.088 -0.226 -0.794 0.142 0.972 1.773 + -0.050 1.631 -0.436 0.189 -0.378 -0.498 0.501 0.494 -0.002 0.177 + + 789 iasi616_metop-a 8007 0.100372E-02 + -0.509 0.490 -1.029 -0.546 -0.238 -0.303 -0.269 -0.406 -0.426 -0.389 + -0.201 -0.085 0.120 -0.211 -0.295 0.337 -0.289 -0.283 0.030 0.072 + 0.143 0.811 -0.260 -0.116 0.262 0.378 -0.470 0.053 0.382 -0.114 + -0.770 -0.201 -0.610 -0.635 0.435 -0.047 0.616 -0.294 0.189 -0.509 + 0.101 0.619 0.060 -0.554 0.449 -0.044 1.907 0.697 0.351 0.979 + 0.047 1.081 0.643 0.591 0.613 -0.128 0.494 0.525 0.813 1.312 + 0.073 -1.063 1.428 0.908 0.841 0.460 0.300 0.965 -0.014 0.340 + 0.421 1.224 0.043 0.318 -0.230 0.093 -0.476 0.343 0.382 0.823 + -0.605 0.727 -0.842 -0.329 0.311 0.832 0.084 0.754 -0.478 0.526 + + 790 iasi616_metop-a 8015 0.200568E-02 + -0.253 0.392 -0.667 -0.704 0.075 0.120 -0.620 -0.431 -0.696 -0.439 + -0.493 -0.614 -0.409 0.204 -0.081 0.250 -0.043 0.300 -0.202 0.133 + 0.754 0.114 -0.370 -0.400 0.032 0.348 -0.165 -0.580 0.325 -0.389 + -0.553 -0.204 0.114 0.004 0.213 0.015 0.485 0.107 -0.438 -0.363 + 0.365 0.342 -0.744 -1.529 0.921 0.659 1.404 0.187 0.233 0.543 + 0.354 -0.006 0.182 0.680 0.467 0.677 0.126 0.626 -0.223 1.451 + 0.501 -1.028 -0.196 0.597 1.216 0.717 0.075 1.256 -0.229 0.658 + -0.166 -0.198 -0.480 -0.636 -0.696 1.128 0.384 1.040 0.833 0.997 + -0.025 1.096 0.401 -0.789 0.005 0.587 -0.224 0.334 -0.242 -0.469 + + 791 iasi616_metop-a 8055 0.171605E-02 + -0.224 -0.121 -0.797 -0.107 0.026 -0.167 -0.299 -0.507 -0.408 -0.321 + -0.550 0.762 0.428 0.046 -0.224 0.358 0.119 0.026 -0.361 -0.132 + 0.413 0.375 -0.124 0.151 0.242 0.335 -0.409 -0.222 0.052 0.149 + -0.273 -0.302 0.035 -0.063 0.584 -0.328 0.942 0.596 0.390 0.130 + 0.523 0.667 -0.933 -0.592 0.315 1.093 1.589 0.741 0.364 0.821 + 0.232 0.413 1.600 0.534 0.940 -0.656 0.517 0.490 0.830 0.990 + 0.868 -0.652 1.039 0.122 0.736 0.786 0.378 0.841 -0.416 0.678 + 1.382 1.265 0.955 -0.088 -0.070 0.491 0.634 0.517 1.013 1.609 + 0.418 0.820 -0.276 -0.186 0.838 0.271 0.191 1.455 -0.381 -0.024 + + 792 iasi616_metop-a 8078 0.209851E-02 + -0.065 1.279 -0.007 -0.153 -0.019 0.758 -0.041 -0.735 -0.513 -0.537 + -0.178 -0.061 0.526 0.921 -0.232 0.431 -0.187 -0.277 0.044 0.163 + 0.264 0.891 -0.100 -0.353 -0.011 -0.132 -0.325 -0.375 0.432 -0.076 + 0.027 0.090 0.371 -0.233 1.003 0.283 1.568 0.423 0.651 0.521 + 0.331 0.589 -0.023 -0.704 0.447 0.699 0.916 0.802 0.408 0.765 + 0.617 1.016 1.506 0.830 0.903 0.651 0.266 0.993 -0.060 1.066 + 0.357 0.920 0.056 0.679 0.255 0.337 0.254 1.105 0.485 0.382 + -0.608 0.806 -0.756 -0.111 -0.075 0.847 -0.314 1.815 0.435 0.830 + 0.411 0.637 -0.619 0.614 0.540 1.302 1.108 1.383 0.622 -0.316 + + 793 airs281SUBSET_aqua 1 -0.282562E-01 + -1.823 -1.756 -1.717 -1.662 -1.631 -1.583 -1.552 -1.525 -1.503 -1.460 + -1.445 -1.430 -1.413 -1.373 -1.373 -1.353 -1.328 -1.310 -1.298 -1.269 + -1.278 -1.228 -1.265 -1.223 -1.231 -1.200 -1.191 -1.190 -1.186 -1.167 + -1.164 -1.143 -1.141 -1.143 -1.146 -1.132 -1.122 -1.114 -1.119 -1.092 + -1.127 -1.119 -1.111 -1.088 -1.096 -1.099 -1.087 -1.107 -1.080 -1.120 + -1.114 -1.118 -1.095 -1.132 -1.114 -1.118 -1.117 -1.147 -1.131 -1.147 + -1.145 -1.161 -1.142 -1.170 -1.156 -1.186 -1.191 -1.199 -1.230 -1.224 + -1.235 -1.255 -1.280 -1.294 -1.306 -1.324 -1.334 -1.350 -1.364 -1.390 + -1.426 -1.449 -1.484 -1.503 -1.525 -1.587 -1.598 -1.656 -1.702 -1.772 + + 794 airs281SUBSET_aqua 6 -0.277355E-01 + -1.799 -1.766 -1.729 -1.691 -1.683 -1.678 -1.652 -1.639 -1.636 -1.607 + -1.590 -1.576 -1.581 -1.555 -1.554 -1.524 -1.529 -1.518 -1.531 -1.514 + -1.504 -1.481 -1.511 -1.485 -1.471 -1.462 -1.463 -1.468 -1.457 -1.456 + -1.436 -1.420 -1.419 -1.439 -1.441 -1.415 -1.424 -1.415 -1.412 -1.402 + -1.424 -1.410 -1.396 -1.406 -1.416 -1.404 -1.393 -1.408 -1.403 -1.396 + -1.381 -1.420 -1.404 -1.412 -1.410 -1.411 -1.419 -1.420 -1.426 -1.431 + -1.450 -1.449 -1.446 -1.451 -1.453 -1.454 -1.464 -1.468 -1.487 -1.487 + -1.486 -1.495 -1.512 -1.512 -1.528 -1.555 -1.549 -1.562 -1.571 -1.572 + -1.585 -1.601 -1.607 -1.622 -1.644 -1.674 -1.680 -1.706 -1.730 -1.766 + + 795 airs281SUBSET_aqua 7 -0.126020E-01 + -0.522 -0.490 -0.489 -0.467 -0.466 -0.447 -0.456 -0.444 -0.439 -0.435 + -0.446 -0.419 -0.422 -0.425 -0.422 -0.420 -0.403 -0.418 -0.409 -0.404 + -0.400 -0.399 -0.397 -0.381 -0.427 -0.402 -0.387 -0.391 -0.406 -0.407 + -0.417 -0.388 -0.396 -0.385 -0.409 -0.405 -0.393 -0.377 -0.387 -0.399 + -0.402 -0.393 -0.393 -0.373 -0.371 -0.396 -0.389 -0.390 -0.411 -0.386 + -0.380 -0.401 -0.401 -0.385 -0.404 -0.397 -0.382 -0.387 -0.413 -0.393 + -0.374 -0.406 -0.362 -0.385 -0.400 -0.375 -0.366 -0.405 -0.387 -0.365 + -0.375 -0.410 -0.390 -0.399 -0.402 -0.414 -0.396 -0.382 -0.385 -0.382 + -0.403 -0.416 -0.408 -0.410 -0.426 -0.419 -0.429 -0.439 -0.457 -0.483 + + 796 airs281SUBSET_aqua 10 -0.396074E-01 + -1.332 -1.303 -1.280 -1.255 -1.245 -1.217 -1.223 -1.205 -1.208 -1.195 + -1.179 -1.182 -1.167 -1.174 -1.175 -1.148 -1.133 -1.160 -1.149 -1.159 + -1.122 -1.134 -1.123 -1.113 -1.130 -1.115 -1.116 -1.107 -1.110 -1.114 + -1.088 -1.095 -1.097 -1.078 -1.089 -1.078 -1.094 -1.075 -1.067 -1.047 + -1.048 -1.062 -1.061 -1.053 -1.065 -1.064 -1.049 -1.056 -1.045 -1.064 + -1.057 -1.061 -1.067 -1.061 -1.056 -1.065 -1.080 -1.077 -1.082 -1.076 + -1.093 -1.097 -1.093 -1.092 -1.101 -1.101 -1.103 -1.121 -1.109 -1.127 + -1.108 -1.119 -1.138 -1.123 -1.137 -1.150 -1.153 -1.149 -1.139 -1.156 + -1.155 -1.174 -1.174 -1.180 -1.192 -1.191 -1.214 -1.235 -1.265 -1.280 + + 797 airs281SUBSET_aqua 11 -0.470032E-01 + -1.487 -1.459 -1.437 -1.415 -1.401 -1.372 -1.380 -1.364 -1.353 -1.347 + -1.324 -1.325 -1.330 -1.317 -1.310 -1.299 -1.296 -1.310 -1.296 -1.274 + -1.274 -1.271 -1.259 -1.250 -1.258 -1.246 -1.241 -1.238 -1.216 -1.215 + -1.223 -1.225 -1.219 -1.213 -1.235 -1.204 -1.215 -1.189 -1.181 -1.184 + -1.189 -1.188 -1.187 -1.180 -1.178 -1.196 -1.178 -1.201 -1.184 -1.201 + -1.194 -1.198 -1.184 -1.193 -1.199 -1.204 -1.199 -1.214 -1.221 -1.209 + -1.202 -1.234 -1.221 -1.229 -1.229 -1.250 -1.231 -1.255 -1.246 -1.245 + -1.232 -1.267 -1.273 -1.273 -1.288 -1.290 -1.306 -1.298 -1.298 -1.309 + -1.309 -1.317 -1.310 -1.336 -1.341 -1.353 -1.356 -1.381 -1.422 -1.434 + + 798 airs281SUBSET_aqua 15 -0.178932E-01 + -0.637 -0.624 -0.585 -0.568 -0.556 -0.547 -0.532 -0.532 -0.529 -0.500 + -0.493 -0.504 -0.482 -0.485 -0.460 -0.461 -0.478 -0.480 -0.465 -0.449 + -0.452 -0.442 -0.461 -0.438 -0.441 -0.448 -0.439 -0.412 -0.445 -0.424 + -0.442 -0.429 -0.431 -0.435 -0.428 -0.418 -0.432 -0.437 -0.426 -0.436 + -0.430 -0.442 -0.435 -0.430 -0.420 -0.421 -0.410 -0.431 -0.429 -0.426 + -0.425 -0.414 -0.427 -0.443 -0.416 -0.429 -0.424 -0.431 -0.415 -0.432 + -0.425 -0.433 -0.439 -0.419 -0.440 -0.444 -0.422 -0.441 -0.458 -0.437 + -0.438 -0.466 -0.444 -0.474 -0.474 -0.468 -0.469 -0.471 -0.483 -0.469 + -0.490 -0.514 -0.508 -0.519 -0.537 -0.529 -0.552 -0.557 -0.592 -0.612 + + 799 airs281SUBSET_aqua 16 -0.339881E-01 + -1.278 -1.245 -1.209 -1.170 -1.148 -1.130 -1.123 -1.099 -1.072 -1.074 + -1.059 -1.054 -1.029 -1.024 -1.000 -0.993 -0.977 -1.002 -0.983 -0.965 + -0.946 -0.950 -0.948 -0.927 -0.937 -0.916 -0.919 -0.895 -0.919 -0.871 + -0.884 -0.868 -0.871 -0.864 -0.876 -0.867 -0.859 -0.860 -0.853 -0.857 + -0.855 -0.841 -0.840 -0.834 -0.844 -0.835 -0.832 -0.839 -0.854 -0.858 + -0.859 -0.844 -0.857 -0.862 -0.859 -0.860 -0.860 -0.892 -0.882 -0.892 + -0.893 -0.908 -0.893 -0.899 -0.889 -0.923 -0.924 -0.933 -0.942 -0.950 + -0.940 -0.956 -0.950 -0.963 -0.987 -0.994 -1.008 -1.000 -1.020 -1.031 + -1.041 -1.064 -1.081 -1.089 -1.112 -1.112 -1.158 -1.173 -1.222 -1.242 + + 800 airs281SUBSET_aqua 17 -0.476388E-01 + -1.868 -1.849 -1.814 -1.796 -1.773 -1.756 -1.756 -1.749 -1.730 -1.718 + -1.718 -1.707 -1.687 -1.688 -1.690 -1.681 -1.657 -1.651 -1.664 -1.654 + -1.649 -1.640 -1.632 -1.623 -1.624 -1.601 -1.608 -1.602 -1.595 -1.583 + -1.583 -1.580 -1.569 -1.565 -1.571 -1.546 -1.560 -1.524 -1.545 -1.549 + -1.548 -1.540 -1.546 -1.537 -1.546 -1.535 -1.517 -1.540 -1.549 -1.552 + -1.545 -1.559 -1.546 -1.545 -1.551 -1.558 -1.571 -1.578 -1.581 -1.574 + -1.567 -1.598 -1.586 -1.594 -1.606 -1.608 -1.596 -1.620 -1.610 -1.635 + -1.631 -1.653 -1.643 -1.649 -1.652 -1.659 -1.668 -1.673 -1.677 -1.696 + -1.696 -1.703 -1.713 -1.717 -1.733 -1.747 -1.753 -1.777 -1.801 -1.818 + + 801 airs281SUBSET_aqua 20 -0.189043E-01 + -0.359 -0.346 -0.325 -0.307 -0.313 -0.298 -0.300 -0.291 -0.287 -0.280 + -0.290 -0.282 -0.288 -0.287 -0.283 -0.269 -0.281 -0.290 -0.275 -0.276 + -0.282 -0.287 -0.268 -0.264 -0.288 -0.275 -0.283 -0.286 -0.297 -0.282 + -0.296 -0.283 -0.293 -0.285 -0.281 -0.294 -0.285 -0.290 -0.302 -0.297 + -0.286 -0.284 -0.292 -0.284 -0.284 -0.281 -0.281 -0.304 -0.293 -0.288 + -0.277 -0.300 -0.279 -0.294 -0.271 -0.290 -0.280 -0.301 -0.268 -0.284 + -0.291 -0.295 -0.280 -0.279 -0.271 -0.296 -0.286 -0.287 -0.283 -0.290 + -0.272 -0.271 -0.282 -0.284 -0.283 -0.286 -0.268 -0.274 -0.277 -0.289 + -0.290 -0.287 -0.286 -0.288 -0.293 -0.298 -0.298 -0.296 -0.322 -0.327 + + 802 airs281SUBSET_aqua 21 -0.164768E-01 + -0.392 -0.367 -0.360 -0.336 -0.343 -0.323 -0.330 -0.327 -0.317 -0.320 + -0.317 -0.313 -0.300 -0.326 -0.297 -0.292 -0.327 -0.309 -0.327 -0.327 + -0.325 -0.287 -0.324 -0.312 -0.323 -0.305 -0.312 -0.298 -0.311 -0.327 + -0.321 -0.318 -0.317 -0.315 -0.314 -0.346 -0.326 -0.336 -0.331 -0.342 + -0.322 -0.342 -0.320 -0.311 -0.329 -0.318 -0.310 -0.334 -0.341 -0.349 + -0.332 -0.334 -0.336 -0.327 -0.326 -0.342 -0.309 -0.329 -0.338 -0.311 + -0.330 -0.322 -0.311 -0.313 -0.310 -0.326 -0.319 -0.321 -0.320 -0.335 + -0.305 -0.309 -0.321 -0.320 -0.328 -0.318 -0.325 -0.334 -0.329 -0.304 + -0.322 -0.311 -0.317 -0.330 -0.322 -0.333 -0.328 -0.338 -0.354 -0.365 + + 803 airs281SUBSET_aqua 22 -0.290687E-01 + -0.935 -0.912 -0.860 -0.849 -0.816 -0.796 -0.786 -0.753 -0.735 -0.724 + -0.710 -0.710 -0.689 -0.680 -0.655 -0.654 -0.654 -0.640 -0.633 -0.608 + -0.611 -0.594 -0.590 -0.580 -0.578 -0.566 -0.568 -0.557 -0.560 -0.542 + -0.546 -0.550 -0.519 -0.524 -0.516 -0.509 -0.514 -0.493 -0.509 -0.492 + -0.502 -0.514 -0.514 -0.479 -0.511 -0.485 -0.504 -0.512 -0.507 -0.501 + -0.495 -0.526 -0.512 -0.531 -0.507 -0.519 -0.543 -0.509 -0.529 -0.547 + -0.548 -0.550 -0.558 -0.568 -0.563 -0.575 -0.568 -0.591 -0.576 -0.591 + -0.599 -0.606 -0.632 -0.638 -0.656 -0.651 -0.651 -0.673 -0.674 -0.687 + -0.711 -0.721 -0.732 -0.755 -0.779 -0.788 -0.824 -0.840 -0.873 -0.912 + + 804 airs281SUBSET_aqua 24 -0.450934E-01 + -1.600 -1.571 -1.549 -1.521 -1.512 -1.500 -1.492 -1.464 -1.469 -1.467 + -1.452 -1.451 -1.444 -1.430 -1.427 -1.418 -1.409 -1.417 -1.413 -1.395 + -1.404 -1.394 -1.403 -1.385 -1.378 -1.386 -1.370 -1.376 -1.363 -1.359 + -1.344 -1.349 -1.344 -1.335 -1.337 -1.321 -1.336 -1.322 -1.324 -1.337 + -1.318 -1.322 -1.337 -1.338 -1.333 -1.325 -1.305 -1.329 -1.319 -1.331 + -1.320 -1.354 -1.329 -1.340 -1.339 -1.339 -1.339 -1.350 -1.364 -1.376 + -1.365 -1.373 -1.370 -1.372 -1.380 -1.385 -1.383 -1.410 -1.405 -1.412 + -1.392 -1.416 -1.408 -1.429 -1.433 -1.449 -1.437 -1.442 -1.443 -1.448 + -1.458 -1.468 -1.462 -1.485 -1.498 -1.504 -1.523 -1.533 -1.564 -1.571 + + 805 airs281SUBSET_aqua 27 -0.171682E-01 + -0.405 -0.403 -0.370 -0.356 -0.365 -0.349 -0.338 -0.347 -0.340 -0.343 + -0.334 -0.345 -0.350 -0.335 -0.338 -0.330 -0.348 -0.360 -0.337 -0.344 + -0.349 -0.344 -0.347 -0.343 -0.348 -0.324 -0.343 -0.350 -0.365 -0.352 + -0.355 -0.337 -0.337 -0.349 -0.343 -0.345 -0.358 -0.344 -0.358 -0.355 + -0.356 -0.353 -0.363 -0.340 -0.359 -0.370 -0.381 -0.341 -0.377 -0.349 + -0.333 -0.358 -0.372 -0.348 -0.359 -0.372 -0.336 -0.382 -0.350 -0.362 + -0.360 -0.351 -0.334 -0.334 -0.347 -0.364 -0.350 -0.354 -0.356 -0.339 + -0.340 -0.357 -0.345 -0.348 -0.337 -0.332 -0.340 -0.332 -0.342 -0.334 + -0.342 -0.350 -0.332 -0.345 -0.353 -0.357 -0.355 -0.360 -0.377 -0.389 + + 806 airs281SUBSET_aqua 28 -0.241280E-01 + -1.302 -1.252 -1.199 -1.155 -1.125 -1.096 -1.070 -1.047 -1.027 -1.010 + -0.976 -0.975 -0.953 -0.938 -0.916 -0.920 -0.914 -0.901 -0.894 -0.887 + -0.867 -0.863 -0.849 -0.844 -0.859 -0.844 -0.829 -0.825 -0.813 -0.815 + -0.801 -0.792 -0.797 -0.799 -0.802 -0.797 -0.789 -0.795 -0.794 -0.771 + -0.802 -0.791 -0.795 -0.781 -0.782 -0.765 -0.776 -0.801 -0.792 -0.794 + -0.786 -0.811 -0.795 -0.802 -0.803 -0.801 -0.799 -0.794 -0.805 -0.835 + -0.829 -0.829 -0.826 -0.830 -0.835 -0.848 -0.856 -0.874 -0.857 -0.883 + -0.881 -0.903 -0.901 -0.919 -0.924 -0.955 -0.942 -0.966 -0.971 -0.996 + -1.010 -1.022 -1.062 -1.081 -1.100 -1.133 -1.161 -1.195 -1.248 -1.297 + + 807 airs281SUBSET_aqua 30 -0.478214E-01 + -1.490 -1.466 -1.438 -1.410 -1.396 -1.383 -1.370 -1.367 -1.369 -1.363 + -1.354 -1.328 -1.322 -1.329 -1.318 -1.316 -1.313 -1.321 -1.309 -1.292 + -1.302 -1.299 -1.286 -1.285 -1.279 -1.272 -1.275 -1.260 -1.251 -1.252 + -1.238 -1.248 -1.246 -1.242 -1.249 -1.224 -1.234 -1.216 -1.224 -1.221 + -1.221 -1.215 -1.226 -1.205 -1.218 -1.224 -1.222 -1.226 -1.212 -1.233 + -1.215 -1.231 -1.234 -1.219 -1.229 -1.238 -1.236 -1.239 -1.247 -1.242 + -1.244 -1.264 -1.259 -1.262 -1.262 -1.281 -1.273 -1.277 -1.279 -1.298 + -1.290 -1.313 -1.314 -1.301 -1.312 -1.321 -1.312 -1.329 -1.325 -1.344 + -1.330 -1.347 -1.348 -1.355 -1.372 -1.380 -1.392 -1.406 -1.438 -1.449 + + 808 airs281SUBSET_aqua 36 -0.492729E-01 + -1.438 -1.416 -1.379 -1.360 -1.352 -1.332 -1.325 -1.313 -1.312 -1.308 + -1.301 -1.286 -1.291 -1.282 -1.279 -1.270 -1.265 -1.272 -1.262 -1.252 + -1.253 -1.244 -1.252 -1.242 -1.231 -1.237 -1.229 -1.230 -1.221 -1.224 + -1.216 -1.221 -1.195 -1.208 -1.215 -1.185 -1.178 -1.192 -1.189 -1.171 + -1.199 -1.187 -1.186 -1.187 -1.188 -1.184 -1.176 -1.190 -1.179 -1.193 + -1.186 -1.195 -1.203 -1.192 -1.210 -1.197 -1.202 -1.217 -1.205 -1.216 + -1.211 -1.227 -1.222 -1.223 -1.230 -1.234 -1.232 -1.248 -1.226 -1.242 + -1.238 -1.264 -1.271 -1.258 -1.262 -1.271 -1.276 -1.271 -1.255 -1.291 + -1.286 -1.291 -1.290 -1.299 -1.309 -1.319 -1.333 -1.355 -1.387 -1.399 + + 809 airs281SUBSET_aqua 39 -0.193767E-01 + -0.365 -0.351 -0.346 -0.319 -0.316 -0.313 -0.305 -0.316 -0.300 -0.299 + -0.293 -0.298 -0.291 -0.289 -0.288 -0.291 -0.287 -0.306 -0.313 -0.286 + -0.294 -0.280 -0.297 -0.287 -0.294 -0.288 -0.287 -0.284 -0.292 -0.291 + -0.300 -0.286 -0.280 -0.294 -0.281 -0.286 -0.281 -0.279 -0.285 -0.293 + -0.296 -0.294 -0.302 -0.286 -0.285 -0.295 -0.277 -0.285 -0.285 -0.288 + -0.298 -0.296 -0.297 -0.295 -0.300 -0.303 -0.294 -0.300 -0.281 -0.302 + -0.283 -0.303 -0.296 -0.310 -0.285 -0.293 -0.301 -0.301 -0.296 -0.292 + -0.296 -0.314 -0.299 -0.311 -0.300 -0.302 -0.300 -0.300 -0.294 -0.298 + -0.307 -0.303 -0.291 -0.317 -0.304 -0.323 -0.323 -0.324 -0.342 -0.350 + + 810 airs281SUBSET_aqua 40 -0.172037E-01 + -0.533 -0.508 -0.477 -0.477 -0.453 -0.444 -0.425 -0.417 -0.424 -0.411 + -0.412 -0.400 -0.386 -0.395 -0.389 -0.375 -0.383 -0.390 -0.385 -0.376 + -0.370 -0.358 -0.376 -0.372 -0.367 -0.361 -0.364 -0.355 -0.350 -0.354 + -0.349 -0.348 -0.373 -0.344 -0.364 -0.366 -0.368 -0.369 -0.352 -0.358 + -0.373 -0.356 -0.368 -0.342 -0.354 -0.359 -0.346 -0.364 -0.355 -0.351 + -0.354 -0.372 -0.367 -0.366 -0.360 -0.369 -0.349 -0.366 -0.363 -0.362 + -0.356 -0.371 -0.369 -0.360 -0.358 -0.392 -0.364 -0.389 -0.380 -0.385 + -0.380 -0.380 -0.384 -0.382 -0.389 -0.397 -0.394 -0.405 -0.396 -0.402 + -0.414 -0.416 -0.429 -0.429 -0.449 -0.450 -0.461 -0.484 -0.505 -0.525 + + 811 airs281SUBSET_aqua 42 -0.472953E-01 + -1.471 -1.451 -1.418 -1.408 -1.397 -1.389 -1.382 -1.374 -1.370 -1.376 + -1.354 -1.346 -1.354 -1.332 -1.333 -1.333 -1.333 -1.322 -1.326 -1.301 + -1.314 -1.317 -1.311 -1.299 -1.308 -1.297 -1.298 -1.281 -1.283 -1.273 + -1.269 -1.255 -1.258 -1.260 -1.252 -1.257 -1.254 -1.247 -1.245 -1.234 + -1.246 -1.243 -1.235 -1.225 -1.240 -1.241 -1.229 -1.248 -1.226 -1.239 + -1.239 -1.246 -1.248 -1.260 -1.256 -1.261 -1.264 -1.261 -1.262 -1.275 + -1.268 -1.273 -1.290 -1.274 -1.285 -1.298 -1.295 -1.301 -1.300 -1.309 + -1.314 -1.315 -1.325 -1.325 -1.325 -1.340 -1.333 -1.331 -1.329 -1.342 + -1.341 -1.345 -1.350 -1.359 -1.366 -1.371 -1.387 -1.403 -1.423 -1.433 + + 812 airs281SUBSET_aqua 51 -0.225619E-01 + -0.624 -0.612 -0.583 -0.569 -0.565 -0.561 -0.546 -0.548 -0.545 -0.536 + -0.533 -0.533 -0.531 -0.526 -0.531 -0.519 -0.522 -0.524 -0.527 -0.514 + -0.509 -0.510 -0.519 -0.497 -0.519 -0.513 -0.512 -0.512 -0.522 -0.518 + -0.517 -0.506 -0.522 -0.506 -0.510 -0.512 -0.501 -0.504 -0.512 -0.506 + -0.517 -0.512 -0.525 -0.495 -0.510 -0.517 -0.493 -0.508 -0.505 -0.514 + -0.496 -0.522 -0.512 -0.508 -0.521 -0.510 -0.500 -0.524 -0.498 -0.521 + -0.517 -0.518 -0.506 -0.506 -0.506 -0.519 -0.511 -0.523 -0.527 -0.527 + -0.499 -0.523 -0.530 -0.538 -0.519 -0.527 -0.528 -0.534 -0.527 -0.532 + -0.534 -0.526 -0.548 -0.533 -0.550 -0.554 -0.556 -0.576 -0.593 -0.610 + + 813 airs281SUBSET_aqua 52 -0.192671E-01 + -0.771 -0.757 -0.728 -0.707 -0.703 -0.700 -0.694 -0.674 -0.686 -0.671 + -0.658 -0.666 -0.668 -0.672 -0.655 -0.668 -0.659 -0.673 -0.663 -0.652 + -0.657 -0.642 -0.650 -0.643 -0.667 -0.655 -0.647 -0.658 -0.667 -0.669 + -0.640 -0.640 -0.649 -0.653 -0.660 -0.643 -0.660 -0.648 -0.659 -0.655 + -0.652 -0.648 -0.654 -0.641 -0.656 -0.650 -0.650 -0.654 -0.656 -0.666 + -0.649 -0.662 -0.658 -0.651 -0.647 -0.660 -0.653 -0.669 -0.659 -0.653 + -0.655 -0.658 -0.655 -0.658 -0.651 -0.657 -0.658 -0.652 -0.654 -0.657 + -0.649 -0.660 -0.662 -0.657 -0.660 -0.670 -0.657 -0.658 -0.653 -0.655 + -0.676 -0.679 -0.684 -0.674 -0.681 -0.692 -0.701 -0.710 -0.736 -0.746 + + 814 airs281SUBSET_aqua 54 -0.521763E-01 + -2.539 -2.507 -2.452 -2.400 -2.378 -2.328 -2.290 -2.283 -2.237 -2.204 + -2.180 -2.169 -2.152 -2.114 -2.122 -2.080 -2.054 -2.045 -2.029 -1.993 + -2.004 -1.990 -1.985 -1.971 -1.942 -1.928 -1.902 -1.881 -1.879 -1.854 + -1.850 -1.844 -1.830 -1.845 -1.832 -1.815 -1.812 -1.783 -1.795 -1.782 + -1.768 -1.776 -1.756 -1.779 -1.782 -1.792 -1.755 -1.786 -1.788 -1.782 + -1.796 -1.778 -1.776 -1.777 -1.799 -1.805 -1.804 -1.830 -1.844 -1.844 + -1.851 -1.859 -1.860 -1.876 -1.864 -1.889 -1.910 -1.938 -1.943 -1.960 + -1.968 -1.996 -2.008 -2.006 -2.033 -2.056 -2.060 -2.084 -2.099 -2.136 + -2.154 -2.173 -2.191 -2.229 -2.247 -2.268 -2.314 -2.354 -2.400 -2.445 + + 815 airs281SUBSET_aqua 55 -0.545214E-01 + -2.811 -2.770 -2.704 -2.653 -2.629 -2.575 -2.542 -2.524 -2.486 -2.440 + -2.413 -2.411 -2.371 -2.349 -2.338 -2.305 -2.271 -2.272 -2.243 -2.225 + -2.217 -2.189 -2.203 -2.184 -2.183 -2.135 -2.114 -2.105 -2.097 -2.073 + -2.083 -2.062 -2.060 -2.068 -2.053 -2.035 -2.040 -2.025 -2.013 -2.003 + -1.985 -2.018 -1.996 -2.002 -2.021 -2.004 -1.994 -2.026 -2.011 -2.012 + -2.016 -2.014 -2.009 -2.013 -2.027 -2.031 -2.043 -2.054 -2.066 -2.075 + -2.072 -2.101 -2.106 -2.100 -2.099 -2.145 -2.139 -2.178 -2.181 -2.199 + -2.191 -2.226 -2.260 -2.255 -2.282 -2.306 -2.315 -2.342 -2.353 -2.389 + -2.415 -2.436 -2.454 -2.491 -2.522 -2.559 -2.591 -2.637 -2.684 -2.737 + + 816 airs281SUBSET_aqua 56 -0.447812E-01 + -1.947 -1.902 -1.832 -1.792 -1.757 -1.711 -1.675 -1.643 -1.614 -1.580 + -1.557 -1.546 -1.524 -1.504 -1.486 -1.458 -1.437 -1.436 -1.404 -1.392 + -1.388 -1.378 -1.376 -1.335 -1.340 -1.313 -1.298 -1.285 -1.299 -1.274 + -1.269 -1.256 -1.253 -1.253 -1.248 -1.242 -1.241 -1.216 -1.220 -1.215 + -1.215 -1.215 -1.217 -1.204 -1.218 -1.237 -1.208 -1.215 -1.223 -1.212 + -1.232 -1.224 -1.219 -1.226 -1.238 -1.234 -1.245 -1.256 -1.256 -1.274 + -1.274 -1.285 -1.294 -1.290 -1.296 -1.308 -1.326 -1.344 -1.349 -1.375 + -1.368 -1.399 -1.407 -1.420 -1.432 -1.458 -1.470 -1.487 -1.512 -1.533 + -1.560 -1.580 -1.603 -1.642 -1.681 -1.707 -1.744 -1.792 -1.838 -1.889 + + 817 airs281SUBSET_aqua 59 -0.260218E-01 + -0.981 -0.956 -0.910 -0.891 -0.871 -0.852 -0.835 -0.828 -0.814 -0.807 + -0.785 -0.789 -0.782 -0.758 -0.751 -0.739 -0.742 -0.743 -0.732 -0.714 + -0.728 -0.717 -0.712 -0.716 -0.699 -0.689 -0.687 -0.679 -0.685 -0.684 + -0.689 -0.678 -0.676 -0.665 -0.670 -0.655 -0.675 -0.666 -0.661 -0.666 + -0.666 -0.660 -0.666 -0.658 -0.659 -0.657 -0.655 -0.675 -0.659 -0.663 + -0.656 -0.673 -0.669 -0.667 -0.657 -0.677 -0.675 -0.678 -0.677 -0.672 + -0.668 -0.683 -0.672 -0.687 -0.676 -0.700 -0.698 -0.710 -0.711 -0.717 + -0.709 -0.728 -0.727 -0.728 -0.732 -0.749 -0.751 -0.747 -0.764 -0.765 + -0.784 -0.799 -0.819 -0.826 -0.834 -0.847 -0.856 -0.885 -0.918 -0.934 + + 818 airs281SUBSET_aqua 62 -0.357013E-01 + -0.952 -0.925 -0.889 -0.867 -0.861 -0.832 -0.808 -0.810 -0.798 -0.790 + -0.784 -0.769 -0.759 -0.754 -0.745 -0.734 -0.741 -0.733 -0.723 -0.709 + -0.700 -0.703 -0.698 -0.682 -0.693 -0.681 -0.670 -0.677 -0.678 -0.655 + -0.657 -0.635 -0.645 -0.660 -0.636 -0.636 -0.645 -0.635 -0.627 -0.622 + -0.644 -0.635 -0.630 -0.621 -0.635 -0.632 -0.613 -0.618 -0.627 -0.616 + -0.618 -0.629 -0.625 -0.633 -0.635 -0.640 -0.634 -0.647 -0.646 -0.662 + -0.662 -0.670 -0.654 -0.656 -0.673 -0.677 -0.679 -0.693 -0.689 -0.703 + -0.697 -0.719 -0.718 -0.715 -0.729 -0.730 -0.739 -0.743 -0.741 -0.761 + -0.770 -0.777 -0.791 -0.800 -0.811 -0.824 -0.842 -0.864 -0.888 -0.907 + + 819 airs281SUBSET_aqua 63 -0.358166E-01 + -1.071 -1.036 -1.005 -0.975 -0.951 -0.919 -0.902 -0.894 -0.878 -0.847 + -0.831 -0.820 -0.807 -0.796 -0.796 -0.767 -0.770 -0.751 -0.761 -0.729 + -0.725 -0.717 -0.715 -0.711 -0.712 -0.691 -0.678 -0.679 -0.672 -0.652 + -0.652 -0.662 -0.638 -0.649 -0.647 -0.636 -0.634 -0.628 -0.624 -0.625 + -0.621 -0.618 -0.621 -0.614 -0.622 -0.622 -0.616 -0.618 -0.615 -0.612 + -0.615 -0.624 -0.615 -0.621 -0.630 -0.629 -0.629 -0.633 -0.634 -0.648 + -0.643 -0.660 -0.661 -0.669 -0.655 -0.673 -0.681 -0.701 -0.697 -0.713 + -0.701 -0.726 -0.746 -0.728 -0.741 -0.752 -0.770 -0.775 -0.792 -0.794 + -0.809 -0.826 -0.842 -0.860 -0.868 -0.902 -0.918 -0.951 -0.976 -1.007 + + 820 airs281SUBSET_aqua 68 -0.326760E-01 + -0.767 -0.748 -0.730 -0.722 -0.706 -0.702 -0.682 -0.684 -0.690 -0.689 + -0.686 -0.684 -0.672 -0.673 -0.676 -0.664 -0.675 -0.678 -0.669 -0.674 + -0.657 -0.674 -0.663 -0.636 -0.654 -0.659 -0.658 -0.675 -0.667 -0.659 + -0.658 -0.644 -0.644 -0.664 -0.646 -0.650 -0.648 -0.640 -0.644 -0.659 + -0.667 -0.656 -0.674 -0.650 -0.655 -0.654 -0.627 -0.657 -0.655 -0.648 + -0.635 -0.652 -0.653 -0.654 -0.651 -0.667 -0.650 -0.649 -0.666 -0.654 + -0.651 -0.664 -0.659 -0.657 -0.659 -0.659 -0.659 -0.672 -0.665 -0.669 + -0.660 -0.676 -0.676 -0.676 -0.674 -0.671 -0.689 -0.669 -0.668 -0.676 + -0.680 -0.678 -0.673 -0.680 -0.694 -0.705 -0.707 -0.721 -0.735 -0.744 + + 821 airs281SUBSET_aqua 69 -0.251890E-01 + -0.573 -0.553 -0.529 -0.526 -0.518 -0.515 -0.503 -0.498 -0.507 -0.509 + -0.497 -0.499 -0.506 -0.510 -0.496 -0.501 -0.505 -0.516 -0.510 -0.519 + -0.517 -0.510 -0.505 -0.507 -0.518 -0.524 -0.525 -0.529 -0.537 -0.524 + -0.527 -0.522 -0.533 -0.518 -0.532 -0.520 -0.530 -0.529 -0.537 -0.545 + -0.560 -0.542 -0.549 -0.538 -0.550 -0.546 -0.537 -0.535 -0.542 -0.544 + -0.515 -0.547 -0.542 -0.548 -0.530 -0.549 -0.527 -0.532 -0.529 -0.525 + -0.530 -0.525 -0.520 -0.523 -0.520 -0.514 -0.516 -0.521 -0.517 -0.507 + -0.496 -0.506 -0.494 -0.503 -0.507 -0.504 -0.505 -0.500 -0.501 -0.497 + -0.507 -0.496 -0.498 -0.494 -0.500 -0.508 -0.519 -0.534 -0.540 -0.542 + + 822 airs281SUBSET_aqua 71 -0.373211E-01 + -1.267 -1.231 -1.188 -1.158 -1.134 -1.098 -1.072 -1.059 -1.045 -1.033 + -1.014 -0.992 -0.987 -0.977 -0.962 -0.953 -0.948 -0.937 -0.936 -0.923 + -0.922 -0.896 -0.890 -0.881 -0.883 -0.872 -0.869 -0.873 -0.863 -0.852 + -0.842 -0.835 -0.834 -0.843 -0.837 -0.829 -0.814 -0.820 -0.816 -0.823 + -0.821 -0.823 -0.805 -0.803 -0.813 -0.818 -0.826 -0.819 -0.822 -0.812 + -0.797 -0.822 -0.826 -0.830 -0.827 -0.827 -0.836 -0.842 -0.850 -0.845 + -0.837 -0.845 -0.852 -0.858 -0.862 -0.874 -0.874 -0.882 -0.890 -0.899 + -0.916 -0.910 -0.919 -0.928 -0.945 -0.953 -0.973 -0.970 -0.976 -0.988 + -1.021 -1.025 -1.041 -1.056 -1.080 -1.112 -1.134 -1.163 -1.203 -1.241 + + 823 airs281SUBSET_aqua 72 -0.435201E-01 + -2.159 -2.118 -2.066 -2.030 -2.001 -1.959 -1.934 -1.917 -1.897 -1.883 + -1.859 -1.847 -1.832 -1.820 -1.808 -1.787 -1.786 -1.771 -1.751 -1.754 + -1.740 -1.727 -1.705 -1.700 -1.693 -1.697 -1.690 -1.670 -1.673 -1.665 + -1.648 -1.643 -1.642 -1.645 -1.636 -1.621 -1.611 -1.621 -1.615 -1.603 + -1.612 -1.611 -1.621 -1.603 -1.609 -1.621 -1.612 -1.602 -1.623 -1.612 + -1.603 -1.624 -1.622 -1.637 -1.627 -1.630 -1.637 -1.630 -1.631 -1.653 + -1.652 -1.669 -1.669 -1.672 -1.696 -1.689 -1.683 -1.708 -1.721 -1.725 + -1.726 -1.745 -1.753 -1.748 -1.781 -1.784 -1.805 -1.815 -1.827 -1.840 + -1.872 -1.890 -1.905 -1.931 -1.944 -1.989 -2.009 -2.051 -2.090 -2.132 + + 824 airs281SUBSET_aqua 73 -0.343534E-01 + -4.495 -4.528 -4.540 -4.576 -4.655 -4.696 -4.768 -4.849 -4.932 -5.024 + -5.109 -5.212 -5.334 -5.403 -5.516 -5.641 -5.735 -5.854 -5.955 -6.080 + -6.167 -6.305 -6.387 -6.501 -6.608 -6.662 -6.789 -6.892 -6.989 -7.105 + -7.154 -7.233 -7.318 -7.347 -7.424 -7.439 -7.526 -7.527 -7.603 -7.640 + -7.692 -7.700 -7.716 -7.670 -7.687 -7.716 -7.713 -7.668 -7.654 -7.648 + -7.577 -7.612 -7.563 -7.557 -7.474 -7.436 -7.370 -7.285 -7.231 -7.128 + -7.082 -6.974 -6.849 -6.800 -6.707 -6.599 -6.500 -6.383 -6.297 -6.175 + -6.065 -5.942 -5.853 -5.718 -5.618 -5.523 -5.412 -5.307 -5.182 -5.089 + -4.983 -4.888 -4.804 -4.744 -4.651 -4.582 -4.521 -4.478 -4.439 -4.393 + + 825 airs281SUBSET_aqua 74 -0.245988E-01 + -5.553 -5.550 -5.496 -5.463 -5.468 -5.440 -5.424 -5.404 -5.383 -5.365 + -5.346 -5.341 -5.334 -5.299 -5.304 -5.279 -5.247 -5.232 -5.229 -5.198 + -5.199 -5.189 -5.193 -5.179 -5.164 -5.118 -5.101 -5.109 -5.110 -5.069 + -5.044 -5.067 -5.056 -5.049 -5.046 -5.027 -5.030 -5.003 -4.986 -4.981 + -4.978 -4.985 -4.984 -4.965 -4.989 -4.966 -4.967 -5.003 -4.975 -4.990 + -5.001 -4.991 -4.990 -4.986 -5.025 -4.999 -5.042 -5.032 -5.031 -5.029 + -5.068 -5.086 -5.079 -5.104 -5.072 -5.119 -5.123 -5.151 -5.168 -5.175 + -5.156 -5.198 -5.218 -5.215 -5.238 -5.259 -5.278 -5.273 -5.288 -5.309 + -5.316 -5.349 -5.338 -5.365 -5.378 -5.400 -5.411 -5.439 -5.460 -5.493 + + 826 airs281SUBSET_aqua 75 -0.110139E-01 + -0.674 -0.841 -0.716 -0.758 -1.009 -0.973 -1.015 -1.274 -1.206 -1.298 + -1.539 -1.450 -1.509 -1.774 -1.647 -1.738 -1.918 -1.943 -1.991 -2.173 + -2.108 -2.231 -2.397 -2.447 -2.432 -2.506 -2.631 -2.660 -2.749 -2.771 + -2.787 -2.897 -2.919 -2.925 -2.953 -2.977 -3.001 -3.053 -3.019 -3.091 + -3.127 -3.081 -3.104 -3.093 -3.162 -3.126 -3.125 -3.101 -3.040 -3.095 + -3.048 -3.048 -3.056 -3.022 -2.991 -2.911 -2.942 -2.924 -2.911 -2.831 + -2.784 -2.724 -2.655 -2.603 -2.518 -2.509 -2.439 -2.421 -2.299 -2.148 + -2.175 -1.961 -1.994 -1.927 -1.745 -1.651 -1.813 -1.457 -1.304 -1.558 + -1.278 -1.155 -1.300 -1.013 -0.969 -1.049 -0.806 -0.730 -0.879 -0.718 + + 827 airs281SUBSET_aqua 76 -0.232564E-01 + -1.796 -1.954 -2.091 -2.214 -2.413 -2.584 -2.729 -2.845 -2.983 -3.151 + -3.252 -3.321 -3.458 -3.503 -3.604 -3.683 -3.755 -3.847 -3.922 -3.952 + -3.991 -4.049 -4.092 -4.162 -4.175 -4.175 -4.243 -4.317 -4.310 -4.350 + -4.325 -4.387 -4.399 -4.417 -4.387 -4.421 -4.434 -4.425 -4.419 -4.450 + -4.492 -4.469 -4.460 -4.444 -4.493 -4.464 -4.463 -4.492 -4.461 -4.452 + -4.437 -4.446 -4.454 -4.432 -4.420 -4.402 -4.412 -4.363 -4.365 -4.328 + -4.329 -4.267 -4.238 -4.247 -4.187 -4.206 -4.131 -4.103 -4.069 -4.024 + -3.937 -3.900 -3.836 -3.779 -3.699 -3.646 -3.563 -3.491 -3.337 -3.266 + -3.122 -3.042 -2.904 -2.737 -2.595 -2.446 -2.283 -2.041 -1.961 -1.836 + + 828 airs281SUBSET_aqua 77 -0.392670E-01 + -4.094 -4.118 -4.134 -4.197 -4.231 -4.261 -4.302 -4.330 -4.346 -4.395 + -4.394 -4.401 -4.444 -4.441 -4.448 -4.454 -4.452 -4.480 -4.496 -4.471 + -4.491 -4.491 -4.497 -4.514 -4.510 -4.464 -4.480 -4.499 -4.506 -4.483 + -4.488 -4.506 -4.505 -4.483 -4.483 -4.470 -4.506 -4.465 -4.464 -4.458 + -4.489 -4.499 -4.473 -4.469 -4.486 -4.488 -4.469 -4.495 -4.480 -4.503 + -4.473 -4.474 -4.475 -4.488 -4.473 -4.496 -4.518 -4.486 -4.491 -4.477 + -4.505 -4.493 -4.495 -4.506 -4.487 -4.508 -4.485 -4.494 -4.506 -4.497 + -4.477 -4.488 -4.480 -4.459 -4.439 -4.461 -4.433 -4.439 -4.423 -4.403 + -4.357 -4.350 -4.341 -4.326 -4.288 -4.255 -4.208 -4.192 -4.136 -4.085 + + 829 airs281SUBSET_aqua 78 -0.472384E-01 + -4.198 -4.160 -4.160 -4.187 -4.189 -4.179 -4.210 -4.216 -4.200 -4.229 + -4.220 -4.216 -4.227 -4.212 -4.223 -4.216 -4.200 -4.207 -4.215 -4.199 + -4.189 -4.204 -4.196 -4.181 -4.197 -4.158 -4.160 -4.154 -4.148 -4.154 + -4.134 -4.158 -4.146 -4.138 -4.137 -4.110 -4.118 -4.092 -4.107 -4.097 + -4.118 -4.116 -4.105 -4.103 -4.114 -4.104 -4.094 -4.111 -4.098 -4.107 + -4.105 -4.113 -4.118 -4.114 -4.113 -4.135 -4.138 -4.117 -4.132 -4.117 + -4.150 -4.148 -4.155 -4.181 -4.152 -4.184 -4.178 -4.190 -4.193 -4.211 + -4.184 -4.197 -4.216 -4.206 -4.204 -4.231 -4.226 -4.237 -4.217 -4.229 + -4.209 -4.215 -4.224 -4.230 -4.223 -4.209 -4.201 -4.203 -4.199 -4.190 + + 830 airs281SUBSET_aqua 79 -0.482244E-01 + -4.395 -4.349 -4.317 -4.319 -4.305 -4.282 -4.275 -4.259 -4.252 -4.250 + -4.226 -4.199 -4.208 -4.163 -4.165 -4.156 -4.128 -4.123 -4.108 -4.093 + -4.078 -4.069 -4.038 -4.044 -4.040 -4.008 -3.995 -3.993 -3.979 -3.969 + -3.952 -3.951 -3.950 -3.939 -3.927 -3.908 -3.905 -3.879 -3.888 -3.888 + -3.897 -3.898 -3.889 -3.890 -3.887 -3.889 -3.859 -3.908 -3.886 -3.881 + -3.889 -3.901 -3.903 -3.901 -3.924 -3.920 -3.943 -3.925 -3.961 -3.943 + -3.964 -3.964 -3.990 -4.003 -4.003 -4.034 -4.035 -4.065 -4.081 -4.085 + -4.087 -4.109 -4.123 -4.127 -4.145 -4.182 -4.187 -4.214 -4.198 -4.225 + -4.249 -4.248 -4.269 -4.295 -4.301 -4.311 -4.331 -4.339 -4.368 -4.367 + + 831 airs281SUBSET_aqua 80 -0.480102E-01 + -4.665 -4.600 -4.547 -4.515 -4.482 -4.427 -4.399 -4.372 -4.336 -4.307 + -4.280 -4.233 -4.221 -4.163 -4.139 -4.118 -4.084 -4.064 -4.037 -4.009 + -3.984 -3.973 -3.939 -3.916 -3.902 -3.875 -3.855 -3.845 -3.824 -3.808 + -3.781 -3.777 -3.762 -3.748 -3.735 -3.726 -3.727 -3.690 -3.676 -3.674 + -3.699 -3.692 -3.686 -3.680 -3.678 -3.680 -3.666 -3.687 -3.669 -3.690 + -3.669 -3.697 -3.712 -3.722 -3.723 -3.736 -3.759 -3.745 -3.769 -3.771 + -3.799 -3.816 -3.844 -3.861 -3.866 -3.905 -3.913 -3.947 -3.973 -3.991 + -4.003 -4.042 -4.068 -4.077 -4.120 -4.162 -4.178 -4.213 -4.244 -4.269 + -4.311 -4.337 -4.371 -4.425 -4.451 -4.492 -4.522 -4.573 -4.618 -4.644 + + 832 airs281SUBSET_aqua 82 -0.502726E-01 + -4.289 -4.210 -4.112 -4.054 -3.981 -3.917 -3.859 -3.812 -3.761 -3.713 + -3.667 -3.617 -3.586 -3.524 -3.491 -3.457 -3.405 -3.387 -3.347 -3.308 + -3.288 -3.265 -3.223 -3.199 -3.183 -3.151 -3.130 -3.103 -3.088 -3.068 + -3.038 -3.028 -3.012 -3.003 -2.991 -2.969 -2.965 -2.943 -2.926 -2.928 + -2.928 -2.924 -2.939 -2.919 -2.913 -2.920 -2.900 -2.919 -2.917 -2.933 + -2.918 -2.947 -2.939 -2.951 -2.970 -2.977 -2.995 -3.004 -3.022 -3.037 + -3.053 -3.079 -3.099 -3.122 -3.125 -3.167 -3.185 -3.225 -3.248 -3.271 + -3.303 -3.330 -3.374 -3.387 -3.435 -3.476 -3.523 -3.571 -3.604 -3.651 + -3.704 -3.756 -3.802 -3.865 -3.913 -3.983 -4.052 -4.124 -4.194 -4.257 + + 833 airs281SUBSET_aqua 83 -0.513542E-01 + -3.375 -3.313 -3.229 -3.170 -3.126 -3.069 -3.024 -2.974 -2.943 -2.896 + -2.851 -2.823 -2.793 -2.752 -2.726 -2.695 -2.655 -2.634 -2.608 -2.578 + -2.564 -2.533 -2.534 -2.498 -2.493 -2.460 -2.439 -2.421 -2.416 -2.381 + -2.361 -2.362 -2.348 -2.337 -2.323 -2.309 -2.307 -2.285 -2.281 -2.277 + -2.268 -2.267 -2.274 -2.272 -2.267 -2.274 -2.261 -2.272 -2.269 -2.272 + -2.285 -2.286 -2.282 -2.296 -2.315 -2.312 -2.336 -2.338 -2.351 -2.373 + -2.372 -2.396 -2.412 -2.425 -2.430 -2.466 -2.483 -2.516 -2.527 -2.541 + -2.564 -2.592 -2.623 -2.636 -2.672 -2.709 -2.737 -2.761 -2.784 -2.822 + -2.875 -2.906 -2.947 -2.993 -3.030 -3.090 -3.139 -3.201 -3.267 -3.323 + + 834 airs281SUBSET_aqua 84 -0.390287E-01 + -4.919 -4.749 -4.579 -4.462 -4.325 -4.212 -4.097 -3.987 -3.886 -3.810 + -3.716 -3.627 -3.558 -3.462 -3.397 -3.334 -3.268 -3.229 -3.167 -3.118 + -3.075 -3.018 -2.978 -2.938 -2.914 -2.867 -2.825 -2.799 -2.780 -2.744 + -2.717 -2.698 -2.684 -2.646 -2.617 -2.620 -2.604 -2.566 -2.575 -2.564 + -2.567 -2.556 -2.567 -2.550 -2.543 -2.554 -2.541 -2.560 -2.565 -2.560 + -2.568 -2.588 -2.592 -2.621 -2.622 -2.634 -2.655 -2.678 -2.700 -2.709 + -2.737 -2.774 -2.805 -2.837 -2.871 -2.909 -2.942 -3.002 -3.032 -3.072 + -3.106 -3.166 -3.236 -3.287 -3.344 -3.421 -3.489 -3.570 -3.629 -3.728 + -3.822 -3.910 -4.020 -4.120 -4.235 -4.368 -4.488 -4.627 -4.764 -4.915 + + 835 airs281SUBSET_aqua 86 -0.267714E-01 + -3.196 -3.033 -2.888 -2.779 -2.676 -2.573 -2.477 -2.398 -2.329 -2.264 + -2.195 -2.130 -2.088 -2.029 -1.974 -1.921 -1.889 -1.863 -1.824 -1.791 + -1.774 -1.721 -1.719 -1.676 -1.658 -1.631 -1.603 -1.593 -1.589 -1.564 + -1.538 -1.528 -1.512 -1.491 -1.494 -1.487 -1.481 -1.461 -1.453 -1.448 + -1.450 -1.455 -1.465 -1.449 -1.435 -1.449 -1.432 -1.439 -1.447 -1.461 + -1.451 -1.452 -1.468 -1.479 -1.472 -1.495 -1.497 -1.504 -1.509 -1.536 + -1.549 -1.577 -1.595 -1.599 -1.613 -1.655 -1.667 -1.703 -1.732 -1.758 + -1.778 -1.814 -1.841 -1.873 -1.921 -1.975 -2.014 -2.066 -2.110 -2.171 + -2.244 -2.301 -2.384 -2.469 -2.561 -2.663 -2.766 -2.895 -3.034 -3.179 + + 836 airs281SUBSET_aqua 92 -0.182908E-01 + -0.651 -0.645 -0.625 -0.628 -0.622 -0.627 -0.615 -0.621 -0.628 -0.632 + -0.626 -0.632 -0.637 -0.639 -0.639 -0.643 -0.649 -0.656 -0.665 -0.668 + -0.661 -0.665 -0.668 -0.667 -0.671 -0.681 -0.674 -0.688 -0.688 -0.706 + -0.697 -0.688 -0.692 -0.698 -0.707 -0.693 -0.706 -0.704 -0.699 -0.718 + -0.713 -0.712 -0.719 -0.709 -0.703 -0.714 -0.703 -0.705 -0.708 -0.699 + -0.690 -0.719 -0.708 -0.706 -0.691 -0.688 -0.682 -0.690 -0.683 -0.670 + -0.675 -0.665 -0.678 -0.665 -0.660 -0.670 -0.659 -0.654 -0.646 -0.635 + -0.632 -0.641 -0.630 -0.613 -0.633 -0.614 -0.616 -0.609 -0.607 -0.603 + -0.606 -0.601 -0.598 -0.595 -0.593 -0.591 -0.580 -0.591 -0.596 -0.602 + + 837 airs281SUBSET_aqua 93 -0.254236E-01 + -1.229 -1.192 -1.152 -1.128 -1.100 -1.065 -1.054 -1.031 -1.013 -0.998 + -0.991 -0.960 -0.950 -0.947 -0.924 -0.912 -0.918 -0.907 -0.914 -0.890 + -0.888 -0.868 -0.863 -0.854 -0.861 -0.859 -0.841 -0.848 -0.837 -0.831 + -0.822 -0.813 -0.812 -0.818 -0.813 -0.809 -0.811 -0.803 -0.799 -0.802 + -0.812 -0.812 -0.814 -0.787 -0.799 -0.803 -0.787 -0.798 -0.797 -0.802 + -0.790 -0.809 -0.800 -0.808 -0.804 -0.815 -0.802 -0.799 -0.804 -0.805 + -0.822 -0.813 -0.823 -0.827 -0.832 -0.839 -0.832 -0.848 -0.850 -0.847 + -0.856 -0.866 -0.877 -0.883 -0.888 -0.906 -0.910 -0.922 -0.930 -0.937 + -0.965 -0.971 -0.991 -1.011 -1.028 -1.049 -1.069 -1.102 -1.145 -1.172 + + 838 airs281SUBSET_aqua 98 -0.194629E-01 + -0.369 -0.353 -0.340 -0.327 -0.337 -0.316 -0.310 -0.309 -0.318 -0.328 + -0.308 -0.304 -0.302 -0.298 -0.298 -0.304 -0.304 -0.306 -0.305 -0.303 + -0.302 -0.293 -0.297 -0.289 -0.296 -0.297 -0.276 -0.297 -0.303 -0.300 + -0.290 -0.296 -0.297 -0.305 -0.304 -0.311 -0.294 -0.293 -0.291 -0.304 + -0.311 -0.299 -0.314 -0.291 -0.296 -0.304 -0.289 -0.297 -0.287 -0.286 + -0.282 -0.288 -0.279 -0.292 -0.275 -0.288 -0.274 -0.288 -0.291 -0.293 + -0.278 -0.280 -0.281 -0.278 -0.289 -0.284 -0.281 -0.273 -0.284 -0.283 + -0.271 -0.266 -0.286 -0.275 -0.277 -0.285 -0.282 -0.279 -0.282 -0.278 + -0.275 -0.274 -0.279 -0.272 -0.284 -0.286 -0.289 -0.293 -0.304 -0.321 + + 839 airs281SUBSET_aqua 99 -0.237299E-01 + -0.908 -0.866 -0.833 -0.814 -0.787 -0.765 -0.740 -0.730 -0.719 -0.713 + -0.694 -0.676 -0.671 -0.670 -0.649 -0.645 -0.634 -0.639 -0.617 -0.618 + -0.605 -0.596 -0.588 -0.589 -0.586 -0.580 -0.580 -0.579 -0.579 -0.566 + -0.560 -0.554 -0.553 -0.554 -0.555 -0.538 -0.553 -0.534 -0.526 -0.540 + -0.538 -0.543 -0.551 -0.535 -0.520 -0.527 -0.538 -0.524 -0.528 -0.541 + -0.521 -0.545 -0.534 -0.535 -0.524 -0.540 -0.534 -0.530 -0.530 -0.535 + -0.528 -0.539 -0.543 -0.547 -0.566 -0.565 -0.547 -0.568 -0.567 -0.579 + -0.572 -0.585 -0.583 -0.603 -0.605 -0.612 -0.623 -0.618 -0.628 -0.639 + -0.656 -0.666 -0.670 -0.692 -0.715 -0.729 -0.752 -0.779 -0.811 -0.847 + + 840 airs281SUBSET_aqua 101 -0.499865E-01 + -1.725 -1.697 -1.664 -1.647 -1.640 -1.617 -1.603 -1.591 -1.586 -1.576 + -1.575 -1.556 -1.554 -1.560 -1.540 -1.525 -1.533 -1.522 -1.512 -1.506 + -1.509 -1.494 -1.483 -1.484 -1.478 -1.470 -1.463 -1.461 -1.453 -1.443 + -1.426 -1.433 -1.416 -1.421 -1.417 -1.407 -1.402 -1.390 -1.388 -1.388 + -1.398 -1.393 -1.387 -1.374 -1.399 -1.378 -1.369 -1.384 -1.380 -1.390 + -1.380 -1.390 -1.395 -1.386 -1.384 -1.398 -1.405 -1.405 -1.405 -1.420 + -1.413 -1.416 -1.430 -1.437 -1.436 -1.442 -1.447 -1.463 -1.462 -1.467 + -1.465 -1.472 -1.484 -1.486 -1.484 -1.505 -1.500 -1.507 -1.505 -1.513 + -1.530 -1.533 -1.546 -1.551 -1.557 -1.573 -1.587 -1.609 -1.635 -1.650 + + 841 airs281SUBSET_aqua 104 -0.189087E-01 + -0.361 -0.349 -0.338 -0.337 -0.335 -0.322 -0.324 -0.323 -0.330 -0.336 + -0.329 -0.322 -0.337 -0.333 -0.325 -0.341 -0.353 -0.350 -0.350 -0.354 + -0.362 -0.362 -0.354 -0.356 -0.355 -0.351 -0.354 -0.365 -0.366 -0.388 + -0.359 -0.367 -0.368 -0.353 -0.378 -0.365 -0.382 -0.362 -0.367 -0.380 + -0.384 -0.370 -0.373 -0.374 -0.372 -0.372 -0.362 -0.363 -0.374 -0.368 + -0.349 -0.364 -0.365 -0.359 -0.357 -0.359 -0.344 -0.349 -0.352 -0.326 + -0.335 -0.329 -0.335 -0.342 -0.337 -0.323 -0.326 -0.324 -0.335 -0.316 + -0.308 -0.306 -0.302 -0.304 -0.311 -0.298 -0.299 -0.281 -0.282 -0.276 + -0.277 -0.293 -0.280 -0.278 -0.274 -0.269 -0.276 -0.279 -0.287 -0.294 + + 842 airs281SUBSET_aqua 105 -0.230299E-01 + -0.553 -0.535 -0.508 -0.488 -0.466 -0.453 -0.442 -0.427 -0.425 -0.421 + -0.414 -0.398 -0.382 -0.387 -0.371 -0.365 -0.377 -0.371 -0.365 -0.358 + -0.336 -0.346 -0.338 -0.334 -0.343 -0.354 -0.342 -0.340 -0.338 -0.319 + -0.315 -0.322 -0.314 -0.309 -0.319 -0.314 -0.305 -0.303 -0.307 -0.308 + -0.306 -0.306 -0.296 -0.299 -0.301 -0.290 -0.298 -0.287 -0.298 -0.286 + -0.282 -0.281 -0.288 -0.288 -0.298 -0.288 -0.285 -0.288 -0.293 -0.285 + -0.291 -0.299 -0.287 -0.281 -0.306 -0.294 -0.294 -0.300 -0.308 -0.301 + -0.310 -0.310 -0.311 -0.312 -0.326 -0.331 -0.330 -0.332 -0.320 -0.336 + -0.348 -0.355 -0.359 -0.376 -0.378 -0.395 -0.404 -0.420 -0.452 -0.470 + + 843 airs281SUBSET_aqua 108 -0.456785E-01 + -1.522 -1.485 -1.445 -1.417 -1.389 -1.371 -1.360 -1.334 -1.326 -1.316 + -1.302 -1.285 -1.282 -1.269 -1.262 -1.254 -1.238 -1.236 -1.216 -1.219 + -1.213 -1.200 -1.199 -1.178 -1.182 -1.182 -1.170 -1.159 -1.159 -1.145 + -1.144 -1.139 -1.123 -1.140 -1.126 -1.122 -1.109 -1.110 -1.112 -1.107 + -1.105 -1.100 -1.097 -1.095 -1.107 -1.104 -1.088 -1.109 -1.103 -1.098 + -1.108 -1.109 -1.110 -1.110 -1.122 -1.117 -1.121 -1.127 -1.130 -1.133 + -1.142 -1.161 -1.152 -1.158 -1.137 -1.170 -1.165 -1.181 -1.183 -1.189 + -1.193 -1.203 -1.213 -1.221 -1.226 -1.234 -1.242 -1.249 -1.254 -1.272 + -1.285 -1.292 -1.305 -1.323 -1.333 -1.356 -1.375 -1.410 -1.436 -1.469 + + 844 airs281SUBSET_aqua 110 -0.185134E-01 + -0.419 -0.406 -0.393 -0.380 -0.380 -0.376 -0.367 -0.365 -0.377 -0.371 + -0.369 -0.374 -0.384 -0.381 -0.377 -0.373 -0.390 -0.372 -0.388 -0.387 + -0.394 -0.382 -0.381 -0.394 -0.408 -0.413 -0.391 -0.406 -0.415 -0.404 + -0.394 -0.407 -0.398 -0.401 -0.403 -0.406 -0.399 -0.392 -0.393 -0.399 + -0.402 -0.404 -0.414 -0.394 -0.402 -0.397 -0.390 -0.392 -0.409 -0.393 + -0.375 -0.410 -0.395 -0.392 -0.380 -0.389 -0.379 -0.376 -0.371 -0.371 + -0.369 -0.368 -0.361 -0.366 -0.370 -0.358 -0.376 -0.360 -0.360 -0.357 + -0.350 -0.346 -0.342 -0.347 -0.339 -0.340 -0.338 -0.329 -0.330 -0.329 + -0.329 -0.322 -0.328 -0.320 -0.329 -0.319 -0.322 -0.331 -0.347 -0.345 + + 845 airs281SUBSET_aqua 111 -0.218244E-01 + -0.435 -0.425 -0.391 -0.396 -0.393 -0.383 -0.380 -0.370 -0.388 -0.382 + -0.382 -0.369 -0.390 -0.378 -0.370 -0.372 -0.388 -0.382 -0.389 -0.389 + -0.376 -0.382 -0.390 -0.385 -0.388 -0.395 -0.370 -0.391 -0.388 -0.392 + -0.384 -0.378 -0.380 -0.389 -0.402 -0.381 -0.385 -0.377 -0.399 -0.390 + -0.397 -0.400 -0.378 -0.393 -0.378 -0.379 -0.389 -0.371 -0.372 -0.377 + -0.359 -0.371 -0.377 -0.366 -0.362 -0.359 -0.368 -0.358 -0.354 -0.361 + -0.343 -0.337 -0.348 -0.335 -0.339 -0.351 -0.339 -0.333 -0.325 -0.310 + -0.313 -0.313 -0.316 -0.312 -0.323 -0.315 -0.307 -0.316 -0.305 -0.300 + -0.310 -0.306 -0.303 -0.303 -0.300 -0.302 -0.307 -0.319 -0.340 -0.338 + + 846 airs281SUBSET_aqua 113 -0.501004E-01 + -1.610 -1.587 -1.546 -1.530 -1.516 -1.499 -1.487 -1.478 -1.472 -1.460 + -1.457 -1.435 -1.451 -1.437 -1.423 -1.421 -1.413 -1.416 -1.415 -1.392 + -1.394 -1.388 -1.377 -1.381 -1.386 -1.376 -1.371 -1.358 -1.350 -1.340 + -1.338 -1.336 -1.332 -1.330 -1.327 -1.322 -1.309 -1.302 -1.307 -1.308 + -1.309 -1.297 -1.301 -1.294 -1.307 -1.305 -1.281 -1.297 -1.296 -1.298 + -1.298 -1.305 -1.294 -1.292 -1.303 -1.305 -1.313 -1.302 -1.300 -1.314 + -1.306 -1.326 -1.331 -1.323 -1.323 -1.337 -1.338 -1.344 -1.342 -1.358 + -1.350 -1.351 -1.367 -1.356 -1.364 -1.377 -1.374 -1.378 -1.379 -1.384 + -1.399 -1.398 -1.404 -1.415 -1.422 -1.438 -1.453 -1.476 -1.499 -1.517 + + 847 airs281SUBSET_aqua 116 -0.183507E-01 + -0.493 -0.467 -0.453 -0.445 -0.433 -0.429 -0.422 -0.409 -0.428 -0.427 + -0.417 -0.409 -0.431 -0.421 -0.401 -0.411 -0.426 -0.422 -0.418 -0.425 + -0.420 -0.412 -0.416 -0.428 -0.429 -0.425 -0.427 -0.424 -0.430 -0.426 + -0.424 -0.425 -0.416 -0.435 -0.422 -0.425 -0.433 -0.412 -0.426 -0.424 + -0.434 -0.446 -0.429 -0.420 -0.427 -0.427 -0.434 -0.424 -0.428 -0.423 + -0.401 -0.420 -0.423 -0.422 -0.412 -0.412 -0.397 -0.417 -0.403 -0.381 + -0.386 -0.397 -0.395 -0.397 -0.392 -0.393 -0.394 -0.377 -0.377 -0.389 + -0.371 -0.372 -0.368 -0.382 -0.368 -0.369 -0.356 -0.362 -0.357 -0.349 + -0.358 -0.341 -0.353 -0.363 -0.365 -0.374 -0.369 -0.386 -0.403 -0.405 + + 848 airs281SUBSET_aqua 117 -0.213575E-01 + -0.433 -0.426 -0.409 -0.402 -0.394 -0.388 -0.369 -0.377 -0.384 -0.387 + -0.381 -0.379 -0.387 -0.388 -0.367 -0.366 -0.388 -0.398 -0.394 -0.392 + -0.386 -0.398 -0.383 -0.380 -0.390 -0.382 -0.396 -0.399 -0.398 -0.394 + -0.383 -0.382 -0.388 -0.387 -0.403 -0.391 -0.385 -0.391 -0.378 -0.381 + -0.415 -0.382 -0.388 -0.372 -0.374 -0.371 -0.374 -0.363 -0.372 -0.371 + -0.347 -0.377 -0.364 -0.360 -0.356 -0.353 -0.348 -0.352 -0.359 -0.341 + -0.344 -0.340 -0.334 -0.327 -0.344 -0.327 -0.339 -0.326 -0.334 -0.324 + -0.314 -0.313 -0.314 -0.306 -0.308 -0.300 -0.303 -0.292 -0.302 -0.293 + -0.298 -0.287 -0.284 -0.285 -0.290 -0.296 -0.299 -0.303 -0.319 -0.325 + + 849 airs281SUBSET_aqua 123 -0.194144E-01 + -0.450 -0.433 -0.421 -0.418 -0.419 -0.408 -0.414 -0.419 -0.418 -0.417 + -0.426 -0.418 -0.431 -0.428 -0.430 -0.431 -0.432 -0.440 -0.438 -0.444 + -0.450 -0.439 -0.441 -0.451 -0.452 -0.458 -0.449 -0.451 -0.456 -0.471 + -0.444 -0.451 -0.466 -0.452 -0.459 -0.457 -0.464 -0.452 -0.450 -0.454 + -0.469 -0.452 -0.456 -0.462 -0.429 -0.449 -0.434 -0.433 -0.438 -0.434 + -0.416 -0.434 -0.429 -0.435 -0.429 -0.417 -0.413 -0.415 -0.411 -0.397 + -0.386 -0.389 -0.387 -0.387 -0.383 -0.385 -0.369 -0.366 -0.389 -0.365 + -0.354 -0.347 -0.336 -0.353 -0.339 -0.338 -0.347 -0.327 -0.331 -0.324 + -0.324 -0.315 -0.317 -0.308 -0.303 -0.314 -0.310 -0.315 -0.329 -0.334 + + 850 airs281SUBSET_aqua 124 -0.329318E-01 + -1.145 -1.110 -1.077 -1.055 -1.027 -1.000 -0.984 -0.970 -0.960 -0.946 + -0.941 -0.924 -0.931 -0.901 -0.895 -0.891 -0.880 -0.882 -0.855 -0.859 + -0.851 -0.840 -0.842 -0.820 -0.826 -0.819 -0.812 -0.806 -0.796 -0.791 + -0.771 -0.773 -0.771 -0.778 -0.761 -0.764 -0.745 -0.746 -0.739 -0.739 + -0.751 -0.738 -0.745 -0.741 -0.732 -0.722 -0.706 -0.726 -0.727 -0.717 + -0.709 -0.717 -0.715 -0.727 -0.714 -0.725 -0.722 -0.728 -0.727 -0.723 + -0.735 -0.726 -0.749 -0.736 -0.730 -0.750 -0.754 -0.759 -0.768 -0.758 + -0.766 -0.763 -0.779 -0.776 -0.793 -0.795 -0.795 -0.797 -0.814 -0.814 + -0.828 -0.841 -0.850 -0.870 -0.885 -0.908 -0.923 -0.948 -0.983 -1.020 + + 851 airs281SUBSET_aqua 128 -0.164977E-01 + -0.540 -0.512 -0.492 -0.482 -0.468 -0.451 -0.440 -0.442 -0.446 -0.449 + -0.436 -0.436 -0.439 -0.433 -0.414 -0.425 -0.431 -0.441 -0.436 -0.423 + -0.416 -0.419 -0.414 -0.426 -0.425 -0.427 -0.412 -0.411 -0.415 -0.424 + -0.427 -0.422 -0.414 -0.412 -0.411 -0.418 -0.413 -0.398 -0.410 -0.408 + -0.419 -0.398 -0.409 -0.394 -0.393 -0.405 -0.384 -0.387 -0.391 -0.393 + -0.367 -0.387 -0.381 -0.390 -0.372 -0.376 -0.365 -0.358 -0.360 -0.343 + -0.353 -0.352 -0.345 -0.342 -0.359 -0.348 -0.347 -0.344 -0.334 -0.344 + -0.324 -0.333 -0.335 -0.329 -0.338 -0.331 -0.328 -0.333 -0.340 -0.334 + -0.330 -0.337 -0.333 -0.348 -0.351 -0.353 -0.359 -0.374 -0.386 -0.405 + + 852 airs281SUBSET_aqua 129 -0.174822E-01 + -0.381 -0.371 -0.350 -0.354 -0.348 -0.348 -0.339 -0.343 -0.352 -0.362 + -0.357 -0.354 -0.368 -0.357 -0.351 -0.358 -0.374 -0.379 -0.368 -0.363 + -0.387 -0.370 -0.378 -0.380 -0.375 -0.378 -0.385 -0.379 -0.387 -0.396 + -0.385 -0.383 -0.383 -0.382 -0.380 -0.371 -0.393 -0.378 -0.385 -0.398 + -0.385 -0.388 -0.386 -0.375 -0.371 -0.375 -0.373 -0.355 -0.375 -0.356 + -0.338 -0.365 -0.356 -0.345 -0.341 -0.345 -0.340 -0.331 -0.337 -0.312 + -0.318 -0.322 -0.303 -0.294 -0.302 -0.300 -0.285 -0.289 -0.269 -0.273 + -0.268 -0.251 -0.261 -0.247 -0.254 -0.249 -0.247 -0.229 -0.227 -0.214 + -0.225 -0.213 -0.215 -0.208 -0.203 -0.210 -0.213 -0.209 -0.220 -0.229 + + 853 airs281SUBSET_aqua 138 -0.333261E-02 + -0.714 -0.677 -0.657 -0.643 -0.622 -0.601 -0.605 -0.587 -0.569 -0.566 + -0.557 -0.547 -0.551 -0.530 -0.523 -0.511 -0.517 -0.512 -0.516 -0.491 + -0.495 -0.488 -0.493 -0.485 -0.488 -0.476 -0.477 -0.470 -0.473 -0.471 + -0.465 -0.463 -0.469 -0.463 -0.472 -0.442 -0.453 -0.455 -0.454 -0.465 + -0.466 -0.464 -0.461 -0.451 -0.450 -0.440 -0.438 -0.440 -0.444 -0.460 + -0.441 -0.455 -0.440 -0.449 -0.440 -0.443 -0.444 -0.443 -0.443 -0.436 + -0.437 -0.450 -0.434 -0.439 -0.446 -0.443 -0.441 -0.440 -0.443 -0.449 + -0.435 -0.446 -0.464 -0.449 -0.465 -0.472 -0.462 -0.480 -0.480 -0.490 + -0.501 -0.507 -0.515 -0.530 -0.537 -0.552 -0.559 -0.579 -0.601 -0.630 + + 854 airs281SUBSET_aqua 139 -0.718529E-03 + -0.464 -0.445 -0.426 -0.426 -0.420 -0.404 -0.411 -0.407 -0.402 -0.413 + -0.406 -0.404 -0.411 -0.405 -0.389 -0.400 -0.407 -0.415 -0.414 -0.411 + -0.420 -0.404 -0.416 -0.410 -0.404 -0.417 -0.403 -0.423 -0.421 -0.437 + -0.425 -0.422 -0.422 -0.421 -0.428 -0.420 -0.415 -0.414 -0.422 -0.438 + -0.442 -0.432 -0.438 -0.420 -0.425 -0.421 -0.419 -0.410 -0.431 -0.418 + -0.402 -0.422 -0.420 -0.411 -0.410 -0.411 -0.406 -0.389 -0.389 -0.387 + -0.389 -0.380 -0.370 -0.378 -0.373 -0.380 -0.361 -0.371 -0.374 -0.358 + -0.349 -0.352 -0.362 -0.349 -0.350 -0.353 -0.341 -0.344 -0.352 -0.337 + -0.343 -0.355 -0.345 -0.356 -0.352 -0.351 -0.346 -0.365 -0.363 -0.383 + + 855 airs281SUBSET_aqua 144 0.622731E-02 + -0.746 -0.724 -0.715 -0.707 -0.705 -0.702 -0.701 -0.691 -0.692 -0.688 + -0.694 -0.692 -0.697 -0.701 -0.681 -0.696 -0.692 -0.699 -0.697 -0.694 + -0.710 -0.690 -0.707 -0.702 -0.711 -0.704 -0.699 -0.711 -0.721 -0.733 + -0.733 -0.725 -0.727 -0.720 -0.725 -0.736 -0.736 -0.732 -0.738 -0.751 + -0.745 -0.751 -0.747 -0.752 -0.729 -0.739 -0.733 -0.730 -0.729 -0.745 + -0.717 -0.730 -0.702 -0.730 -0.719 -0.720 -0.710 -0.710 -0.696 -0.705 + -0.691 -0.696 -0.681 -0.689 -0.672 -0.680 -0.673 -0.660 -0.669 -0.659 + -0.659 -0.650 -0.656 -0.647 -0.649 -0.636 -0.635 -0.632 -0.641 -0.642 + -0.639 -0.645 -0.640 -0.649 -0.643 -0.645 -0.652 -0.650 -0.656 -0.678 + + 856 airs281SUBSET_aqua 145 0.601222E-02 + -0.523 -0.505 -0.506 -0.501 -0.505 -0.518 -0.505 -0.507 -0.516 -0.508 + -0.517 -0.506 -0.519 -0.520 -0.503 -0.511 -0.518 -0.530 -0.532 -0.528 + -0.534 -0.528 -0.532 -0.528 -0.557 -0.539 -0.546 -0.547 -0.567 -0.578 + -0.575 -0.571 -0.570 -0.558 -0.575 -0.570 -0.563 -0.573 -0.572 -0.581 + -0.588 -0.586 -0.587 -0.583 -0.571 -0.585 -0.575 -0.573 -0.581 -0.582 + -0.548 -0.566 -0.560 -0.569 -0.544 -0.569 -0.537 -0.556 -0.546 -0.534 + -0.529 -0.534 -0.520 -0.513 -0.507 -0.518 -0.503 -0.497 -0.495 -0.484 + -0.485 -0.476 -0.477 -0.476 -0.470 -0.471 -0.464 -0.459 -0.455 -0.454 + -0.450 -0.455 -0.447 -0.459 -0.441 -0.445 -0.441 -0.438 -0.449 -0.454 + + 857 airs281SUBSET_aqua 150 0.103546E-01 + -0.729 -0.708 -0.703 -0.698 -0.684 -0.667 -0.663 -0.656 -0.655 -0.659 + -0.647 -0.648 -0.643 -0.638 -0.623 -0.618 -0.631 -0.629 -0.628 -0.624 + -0.634 -0.608 -0.621 -0.618 -0.632 -0.623 -0.637 -0.631 -0.622 -0.642 + -0.618 -0.630 -0.635 -0.630 -0.624 -0.619 -0.616 -0.614 -0.636 -0.640 + -0.634 -0.644 -0.643 -0.619 -0.627 -0.633 -0.625 -0.619 -0.614 -0.632 + -0.614 -0.615 -0.605 -0.607 -0.609 -0.607 -0.596 -0.593 -0.595 -0.585 + -0.589 -0.579 -0.573 -0.579 -0.569 -0.576 -0.561 -0.565 -0.567 -0.556 + -0.557 -0.555 -0.560 -0.555 -0.556 -0.558 -0.553 -0.559 -0.560 -0.561 + -0.572 -0.572 -0.584 -0.574 -0.586 -0.588 -0.597 -0.608 -0.612 -0.643 + + 858 airs281SUBSET_aqua 151 0.965825E-02 + -0.540 -0.528 -0.520 -0.528 -0.511 -0.510 -0.512 -0.520 -0.503 -0.512 + -0.519 -0.518 -0.516 -0.501 -0.513 -0.509 -0.516 -0.524 -0.525 -0.518 + -0.522 -0.516 -0.520 -0.530 -0.543 -0.546 -0.529 -0.530 -0.556 -0.547 + -0.547 -0.546 -0.546 -0.545 -0.559 -0.546 -0.544 -0.548 -0.541 -0.554 + -0.570 -0.549 -0.565 -0.553 -0.555 -0.566 -0.547 -0.551 -0.547 -0.565 + -0.531 -0.543 -0.541 -0.534 -0.535 -0.542 -0.518 -0.520 -0.518 -0.523 + -0.511 -0.516 -0.491 -0.506 -0.496 -0.497 -0.483 -0.479 -0.481 -0.473 + -0.468 -0.474 -0.469 -0.467 -0.463 -0.461 -0.455 -0.458 -0.453 -0.445 + -0.445 -0.453 -0.453 -0.449 -0.443 -0.439 -0.441 -0.446 -0.450 -0.459 + + 859 airs281SUBSET_aqua 156 0.214491E-01 + -0.419 -0.422 -0.417 -0.422 -0.413 -0.414 -0.419 -0.421 -0.423 -0.422 + -0.411 -0.421 -0.419 -0.421 -0.398 -0.418 -0.423 -0.422 -0.418 -0.416 + -0.431 -0.410 -0.432 -0.422 -0.434 -0.444 -0.434 -0.430 -0.444 -0.440 + -0.450 -0.440 -0.441 -0.445 -0.452 -0.451 -0.453 -0.458 -0.458 -0.458 + -0.462 -0.467 -0.469 -0.455 -0.463 -0.464 -0.453 -0.454 -0.447 -0.453 + -0.450 -0.432 -0.436 -0.440 -0.428 -0.427 -0.413 -0.413 -0.414 -0.409 + -0.396 -0.413 -0.387 -0.390 -0.387 -0.388 -0.366 -0.365 -0.370 -0.372 + -0.361 -0.355 -0.356 -0.350 -0.354 -0.346 -0.336 -0.339 -0.340 -0.338 + -0.343 -0.340 -0.329 -0.333 -0.329 -0.332 -0.319 -0.316 -0.322 -0.314 + + 860 airs281SUBSET_aqua 157 0.124688E-01 + -0.464 -0.452 -0.451 -0.444 -0.441 -0.430 -0.442 -0.439 -0.436 -0.436 + -0.436 -0.437 -0.433 -0.427 -0.423 -0.433 -0.447 -0.445 -0.439 -0.449 + -0.449 -0.428 -0.449 -0.442 -0.457 -0.445 -0.457 -0.460 -0.461 -0.481 + -0.469 -0.490 -0.474 -0.468 -0.479 -0.480 -0.476 -0.478 -0.489 -0.490 + -0.491 -0.491 -0.489 -0.485 -0.491 -0.489 -0.483 -0.490 -0.471 -0.491 + -0.475 -0.484 -0.485 -0.481 -0.478 -0.468 -0.459 -0.470 -0.451 -0.457 + -0.455 -0.452 -0.432 -0.434 -0.427 -0.428 -0.421 -0.421 -0.421 -0.417 + -0.412 -0.412 -0.413 -0.405 -0.396 -0.407 -0.401 -0.404 -0.398 -0.383 + -0.393 -0.398 -0.396 -0.396 -0.394 -0.393 -0.404 -0.391 -0.407 -0.404 + + 861 airs281SUBSET_aqua 159 -0.293953E-01 + -1.358 -1.330 -1.299 -1.281 -1.255 -1.236 -1.222 -1.204 -1.193 -1.193 + -1.168 -1.156 -1.160 -1.143 -1.131 -1.121 -1.113 -1.111 -1.104 -1.092 + -1.089 -1.075 -1.070 -1.061 -1.054 -1.053 -1.044 -1.027 -1.038 -1.025 + -1.014 -1.016 -1.000 -1.003 -0.996 -0.993 -0.993 -0.986 -0.977 -0.978 + -0.979 -0.965 -0.989 -0.969 -0.976 -0.969 -0.967 -0.980 -0.967 -0.970 + -0.965 -0.971 -0.973 -0.969 -0.971 -0.982 -0.977 -0.983 -0.987 -0.989 + -0.991 -1.000 -1.012 -1.001 -1.004 -1.022 -1.015 -1.029 -1.043 -1.036 + -1.038 -1.056 -1.055 -1.059 -1.072 -1.077 -1.083 -1.094 -1.101 -1.109 + -1.124 -1.137 -1.144 -1.163 -1.171 -1.184 -1.203 -1.224 -1.255 -1.292 + + 862 airs281SUBSET_aqua 162 0.248138E-01 + -0.487 -0.485 -0.484 -0.479 -0.480 -0.469 -0.472 -0.460 -0.474 -0.468 + -0.465 -0.466 -0.465 -0.469 -0.465 -0.467 -0.472 -0.483 -0.479 -0.467 + -0.484 -0.473 -0.485 -0.483 -0.489 -0.494 -0.508 -0.501 -0.511 -0.510 + -0.510 -0.505 -0.516 -0.524 -0.519 -0.519 -0.527 -0.538 -0.526 -0.547 + -0.561 -0.543 -0.553 -0.542 -0.539 -0.532 -0.534 -0.538 -0.537 -0.545 + -0.533 -0.535 -0.528 -0.514 -0.518 -0.515 -0.504 -0.502 -0.510 -0.492 + -0.496 -0.486 -0.474 -0.471 -0.473 -0.464 -0.461 -0.450 -0.458 -0.450 + -0.447 -0.447 -0.435 -0.438 -0.428 -0.420 -0.423 -0.416 -0.422 -0.421 + -0.424 -0.427 -0.413 -0.415 -0.410 -0.410 -0.416 -0.403 -0.411 -0.410 + + 863 airs281SUBSET_aqua 165 -0.228333E-01 + -1.852 -1.814 -1.781 -1.755 -1.727 -1.705 -1.696 -1.670 -1.658 -1.642 + -1.618 -1.607 -1.588 -1.583 -1.555 -1.541 -1.536 -1.529 -1.515 -1.494 + -1.499 -1.483 -1.471 -1.458 -1.454 -1.440 -1.436 -1.429 -1.427 -1.410 + -1.411 -1.400 -1.386 -1.381 -1.381 -1.361 -1.363 -1.359 -1.360 -1.361 + -1.356 -1.358 -1.363 -1.353 -1.345 -1.357 -1.334 -1.339 -1.340 -1.360 + -1.346 -1.353 -1.354 -1.354 -1.368 -1.356 -1.373 -1.365 -1.372 -1.386 + -1.383 -1.402 -1.404 -1.411 -1.407 -1.421 -1.425 -1.437 -1.453 -1.463 + -1.467 -1.477 -1.490 -1.498 -1.505 -1.515 -1.535 -1.545 -1.553 -1.574 + -1.593 -1.609 -1.616 -1.647 -1.663 -1.688 -1.703 -1.729 -1.762 -1.796 + + 864 airs281SUBSET_aqua 168 0.286230E-01 + -0.324 -0.319 -0.320 -0.302 -0.309 -0.303 -0.300 -0.286 -0.289 -0.276 + -0.272 -0.272 -0.261 -0.260 -0.262 -0.257 -0.277 -0.267 -0.246 -0.260 + -0.259 -0.249 -0.252 -0.258 -0.272 -0.274 -0.279 -0.272 -0.277 -0.268 + -0.292 -0.292 -0.286 -0.288 -0.298 -0.293 -0.294 -0.301 -0.304 -0.313 + -0.311 -0.311 -0.309 -0.311 -0.310 -0.317 -0.300 -0.305 -0.313 -0.312 + -0.304 -0.307 -0.293 -0.294 -0.295 -0.284 -0.284 -0.286 -0.280 -0.272 + -0.266 -0.260 -0.258 -0.258 -0.258 -0.251 -0.240 -0.246 -0.238 -0.244 + -0.233 -0.242 -0.239 -0.233 -0.231 -0.236 -0.234 -0.231 -0.236 -0.239 + -0.240 -0.246 -0.239 -0.251 -0.259 -0.254 -0.261 -0.261 -0.267 -0.257 + + 865 airs281SUBSET_aqua 169 0.204137E-01 + -0.599 -0.590 -0.579 -0.564 -0.567 -0.551 -0.545 -0.535 -0.534 -0.529 + -0.520 -0.520 -0.515 -0.505 -0.502 -0.497 -0.500 -0.496 -0.495 -0.494 + -0.489 -0.486 -0.497 -0.489 -0.500 -0.492 -0.494 -0.498 -0.492 -0.489 + -0.504 -0.505 -0.512 -0.503 -0.508 -0.501 -0.500 -0.509 -0.506 -0.509 + -0.518 -0.526 -0.505 -0.510 -0.522 -0.520 -0.514 -0.514 -0.511 -0.516 + -0.509 -0.512 -0.500 -0.501 -0.498 -0.493 -0.491 -0.496 -0.490 -0.495 + -0.482 -0.470 -0.483 -0.478 -0.473 -0.478 -0.469 -0.467 -0.471 -0.473 + -0.473 -0.470 -0.473 -0.468 -0.462 -0.471 -0.482 -0.475 -0.474 -0.482 + -0.483 -0.500 -0.494 -0.506 -0.502 -0.512 -0.520 -0.519 -0.534 -0.545 + + 866 airs281SUBSET_aqua 170 -0.553855E-02 + -1.184 -1.168 -1.139 -1.130 -1.106 -1.091 -1.080 -1.070 -1.060 -1.044 + -1.036 -1.030 -1.019 -1.006 -0.993 -0.990 -0.983 -0.978 -0.978 -0.958 + -0.960 -0.946 -0.942 -0.940 -0.934 -0.923 -0.930 -0.919 -0.913 -0.925 + -0.916 -0.904 -0.913 -0.893 -0.901 -0.901 -0.896 -0.885 -0.883 -0.884 + -0.903 -0.893 -0.888 -0.878 -0.885 -0.893 -0.869 -0.881 -0.882 -0.892 + -0.871 -0.889 -0.890 -0.875 -0.878 -0.885 -0.889 -0.888 -0.883 -0.891 + -0.889 -0.894 -0.900 -0.895 -0.897 -0.911 -0.914 -0.918 -0.915 -0.924 + -0.918 -0.942 -0.939 -0.940 -0.947 -0.961 -0.968 -0.971 -0.979 -0.995 + -1.011 -1.009 -1.021 -1.038 -1.035 -1.057 -1.071 -1.082 -1.100 -1.127 + + 867 airs281SUBSET_aqua 172 0.952365E-02 + -0.912 -0.874 -0.830 -0.786 -0.757 -0.722 -0.698 -0.672 -0.644 -0.620 + -0.596 -0.588 -0.563 -0.547 -0.544 -0.529 -0.512 -0.511 -0.490 -0.477 + -0.476 -0.460 -0.460 -0.456 -0.454 -0.439 -0.438 -0.430 -0.427 -0.422 + -0.422 -0.417 -0.420 -0.415 -0.410 -0.421 -0.411 -0.409 -0.414 -0.400 + -0.404 -0.404 -0.411 -0.409 -0.412 -0.404 -0.387 -0.403 -0.399 -0.411 + -0.419 -0.421 -0.397 -0.406 -0.392 -0.395 -0.404 -0.404 -0.416 -0.408 + -0.410 -0.408 -0.411 -0.407 -0.406 -0.412 -0.418 -0.424 -0.431 -0.437 + -0.444 -0.457 -0.469 -0.463 -0.480 -0.491 -0.511 -0.520 -0.529 -0.546 + -0.571 -0.587 -0.607 -0.639 -0.658 -0.680 -0.722 -0.749 -0.793 -0.846 + + 868 airs281SUBSET_aqua 173 0.307982E-01 + -0.256 -0.255 -0.239 -0.207 -0.199 -0.175 -0.160 -0.145 -0.136 -0.122 + -0.109 -0.103 -0.085 -0.079 -0.068 -0.072 -0.059 -0.046 -0.031 -0.025 + -0.027 -0.028 -0.026 -0.026 -0.023 -0.035 -0.029 -0.014 -0.027 -0.013 + -0.029 -0.032 -0.022 -0.027 -0.028 -0.022 -0.036 -0.037 -0.040 -0.041 + -0.031 -0.040 -0.039 -0.034 -0.050 -0.050 -0.041 -0.041 -0.032 -0.041 + -0.051 -0.034 -0.026 -0.029 -0.023 -0.017 -0.025 -0.028 -0.036 -0.024 + -0.010 -0.017 -0.013 -0.021 -0.010 -0.012 -0.020 -0.020 -0.014 -0.025 + -0.018 -0.030 -0.034 -0.042 -0.053 -0.051 -0.053 -0.064 -0.074 -0.074 + -0.095 -0.107 -0.107 -0.121 -0.144 -0.149 -0.169 -0.173 -0.184 -0.193 + + 869 airs281SUBSET_aqua 174 0.337862E-01 + -0.315 -0.314 -0.306 -0.288 -0.273 -0.269 -0.262 -0.246 -0.246 -0.235 + -0.223 -0.219 -0.205 -0.204 -0.205 -0.195 -0.194 -0.192 -0.189 -0.185 + -0.186 -0.176 -0.189 -0.187 -0.191 -0.190 -0.198 -0.197 -0.197 -0.202 + -0.204 -0.213 -0.217 -0.217 -0.220 -0.218 -0.230 -0.222 -0.224 -0.222 + -0.233 -0.235 -0.232 -0.244 -0.235 -0.237 -0.230 -0.227 -0.232 -0.235 + -0.237 -0.230 -0.217 -0.223 -0.213 -0.212 -0.202 -0.211 -0.214 -0.194 + -0.189 -0.196 -0.196 -0.181 -0.177 -0.177 -0.177 -0.192 -0.174 -0.177 + -0.162 -0.183 -0.176 -0.175 -0.180 -0.187 -0.190 -0.188 -0.189 -0.195 + -0.205 -0.219 -0.214 -0.231 -0.230 -0.234 -0.248 -0.247 -0.264 -0.261 + + 870 airs281SUBSET_aqua 175 0.251155E-01 + -0.680 -0.676 -0.664 -0.649 -0.636 -0.627 -0.616 -0.604 -0.594 -0.596 + -0.586 -0.581 -0.567 -0.566 -0.554 -0.570 -0.553 -0.554 -0.540 -0.538 + -0.544 -0.540 -0.545 -0.546 -0.547 -0.545 -0.557 -0.544 -0.547 -0.556 + -0.559 -0.563 -0.568 -0.555 -0.560 -0.559 -0.568 -0.564 -0.564 -0.573 + -0.563 -0.579 -0.575 -0.580 -0.579 -0.578 -0.561 -0.567 -0.570 -0.573 + -0.569 -0.560 -0.563 -0.558 -0.545 -0.548 -0.549 -0.549 -0.552 -0.543 + -0.533 -0.536 -0.533 -0.528 -0.514 -0.527 -0.523 -0.519 -0.525 -0.518 + -0.521 -0.523 -0.525 -0.519 -0.521 -0.530 -0.526 -0.522 -0.529 -0.549 + -0.544 -0.553 -0.563 -0.574 -0.575 -0.581 -0.592 -0.602 -0.611 -0.617 + + 871 airs281SUBSET_aqua 177 -0.292140E-02 + -1.388 -1.348 -1.301 -1.256 -1.231 -1.188 -1.172 -1.124 -1.102 -1.082 + -1.056 -1.034 -1.020 -0.996 -0.976 -0.955 -0.940 -0.933 -0.909 -0.895 + -0.888 -0.867 -0.871 -0.850 -0.845 -0.833 -0.828 -0.820 -0.810 -0.798 + -0.800 -0.788 -0.782 -0.784 -0.774 -0.775 -0.763 -0.770 -0.763 -0.761 + -0.748 -0.746 -0.750 -0.760 -0.745 -0.755 -0.744 -0.747 -0.738 -0.754 + -0.747 -0.753 -0.740 -0.758 -0.757 -0.754 -0.766 -0.769 -0.781 -0.771 + -0.789 -0.787 -0.807 -0.801 -0.807 -0.812 -0.824 -0.842 -0.838 -0.851 + -0.863 -0.891 -0.902 -0.905 -0.915 -0.941 -0.961 -0.967 -0.982 -1.008 + -1.042 -1.058 -1.082 -1.111 -1.135 -1.176 -1.206 -1.241 -1.286 -1.325 + + 872 airs281SUBSET_aqua 179 0.330917E-01 + -0.171 -0.178 -0.169 -0.148 -0.140 -0.129 -0.113 -0.106 -0.097 -0.084 + -0.084 -0.083 -0.072 -0.059 -0.064 -0.070 -0.066 -0.056 -0.059 -0.046 + -0.043 -0.049 -0.054 -0.048 -0.055 -0.066 -0.073 -0.064 -0.069 -0.053 + -0.072 -0.080 -0.079 -0.091 -0.093 -0.096 -0.109 -0.108 -0.110 -0.105 + -0.109 -0.113 -0.101 -0.111 -0.126 -0.114 -0.111 -0.116 -0.112 -0.115 + -0.116 -0.109 -0.095 -0.103 -0.095 -0.082 -0.084 -0.082 -0.088 -0.068 + -0.065 -0.060 -0.073 -0.057 -0.053 -0.041 -0.052 -0.053 -0.041 -0.044 + -0.028 -0.040 -0.048 -0.043 -0.033 -0.055 -0.051 -0.047 -0.042 -0.057 + -0.066 -0.071 -0.073 -0.086 -0.089 -0.090 -0.092 -0.105 -0.112 -0.110 + + 873 airs281SUBSET_aqua 180 0.357006E-01 + -0.406 -0.393 -0.379 -0.352 -0.328 -0.315 -0.302 -0.287 -0.273 -0.265 + -0.234 -0.230 -0.220 -0.216 -0.201 -0.200 -0.189 -0.189 -0.179 -0.177 + -0.182 -0.173 -0.173 -0.171 -0.180 -0.186 -0.182 -0.179 -0.184 -0.175 + -0.185 -0.191 -0.186 -0.193 -0.208 -0.192 -0.203 -0.203 -0.201 -0.203 + -0.204 -0.204 -0.211 -0.198 -0.213 -0.210 -0.207 -0.203 -0.202 -0.197 + -0.217 -0.205 -0.200 -0.192 -0.190 -0.186 -0.178 -0.178 -0.192 -0.183 + -0.177 -0.171 -0.180 -0.165 -0.166 -0.162 -0.169 -0.167 -0.165 -0.173 + -0.158 -0.174 -0.177 -0.179 -0.173 -0.181 -0.204 -0.198 -0.203 -0.213 + -0.235 -0.245 -0.250 -0.274 -0.285 -0.292 -0.308 -0.330 -0.342 -0.353 + + 874 airs281SUBSET_aqua 182 0.475957E-03 + -1.980 -1.916 -1.854 -1.792 -1.733 -1.691 -1.643 -1.594 -1.558 -1.521 + -1.485 -1.450 -1.420 -1.396 -1.373 -1.348 -1.330 -1.316 -1.282 -1.260 + -1.250 -1.220 -1.227 -1.201 -1.195 -1.176 -1.173 -1.162 -1.159 -1.154 + -1.136 -1.133 -1.135 -1.121 -1.116 -1.113 -1.111 -1.114 -1.108 -1.097 + -1.100 -1.104 -1.105 -1.102 -1.110 -1.099 -1.091 -1.090 -1.098 -1.109 + -1.105 -1.107 -1.099 -1.105 -1.105 -1.112 -1.108 -1.115 -1.135 -1.125 + -1.132 -1.147 -1.153 -1.151 -1.165 -1.176 -1.186 -1.201 -1.211 -1.226 + -1.230 -1.256 -1.281 -1.293 -1.312 -1.342 -1.372 -1.396 -1.418 -1.459 + -1.488 -1.525 -1.566 -1.608 -1.655 -1.701 -1.754 -1.814 -1.866 -1.938 + + 875 airs281SUBSET_aqua 185 0.322068E-01 + -0.275 -0.271 -0.261 -0.237 -0.221 -0.216 -0.195 -0.187 -0.179 -0.169 + -0.157 -0.151 -0.133 -0.141 -0.133 -0.126 -0.117 -0.123 -0.121 -0.115 + -0.125 -0.117 -0.122 -0.115 -0.118 -0.128 -0.128 -0.121 -0.129 -0.124 + -0.124 -0.144 -0.142 -0.144 -0.149 -0.151 -0.156 -0.148 -0.164 -0.165 + -0.153 -0.164 -0.155 -0.169 -0.168 -0.158 -0.154 -0.160 -0.154 -0.163 + -0.163 -0.157 -0.144 -0.157 -0.137 -0.129 -0.139 -0.138 -0.132 -0.120 + -0.118 -0.116 -0.117 -0.114 -0.099 -0.104 -0.104 -0.104 -0.096 -0.101 + -0.089 -0.104 -0.098 -0.096 -0.094 -0.104 -0.117 -0.112 -0.119 -0.116 + -0.133 -0.137 -0.140 -0.149 -0.162 -0.166 -0.178 -0.183 -0.202 -0.201 + + 876 airs281SUBSET_aqua 186 0.352290E-01 + -0.971 -0.956 -0.935 -0.895 -0.875 -0.849 -0.826 -0.791 -0.776 -0.751 + -0.731 -0.731 -0.708 -0.686 -0.682 -0.669 -0.652 -0.642 -0.632 -0.625 + -0.619 -0.612 -0.617 -0.598 -0.611 -0.612 -0.610 -0.599 -0.595 -0.585 + -0.583 -0.600 -0.605 -0.608 -0.611 -0.609 -0.605 -0.610 -0.610 -0.611 + -0.602 -0.604 -0.606 -0.607 -0.615 -0.609 -0.587 -0.600 -0.604 -0.612 + -0.612 -0.604 -0.597 -0.604 -0.596 -0.582 -0.595 -0.585 -0.605 -0.596 + -0.585 -0.582 -0.603 -0.582 -0.588 -0.589 -0.591 -0.607 -0.602 -0.608 + -0.600 -0.628 -0.631 -0.631 -0.630 -0.651 -0.676 -0.678 -0.682 -0.700 + -0.723 -0.740 -0.760 -0.785 -0.810 -0.824 -0.843 -0.865 -0.881 -0.899 + + 877 airs281SUBSET_aqua 190 0.467780E-01 + 0.363 0.327 0.337 0.345 0.339 0.346 0.354 0.363 0.376 0.379 + 0.398 0.397 0.412 0.423 0.423 0.429 0.431 0.452 0.454 0.461 + 0.458 0.451 0.457 0.450 0.450 0.434 0.438 0.448 0.432 0.446 + 0.440 0.425 0.416 0.410 0.403 0.408 0.401 0.388 0.396 0.384 + 0.402 0.385 0.404 0.396 0.374 0.384 0.388 0.388 0.393 0.394 + 0.398 0.402 0.402 0.395 0.405 0.410 0.421 0.427 0.424 0.429 + 0.430 0.442 0.440 0.453 0.451 0.455 0.449 0.455 0.465 0.463 + 0.459 0.463 0.455 0.448 0.449 0.439 0.439 0.425 0.428 0.417 + 0.401 0.396 0.405 0.378 0.371 0.382 0.375 0.382 0.382 0.409 + + 878 airs281SUBSET_aqua 192 0.453749E-01 + -0.140 -0.161 -0.147 -0.135 -0.136 -0.115 -0.105 -0.092 -0.081 -0.071 + -0.058 -0.042 -0.035 -0.014 -0.013 -0.014 -0.002 0.012 0.012 0.010 + 0.023 0.026 0.008 0.015 0.018 0.001 0.014 0.015 0.000 0.006 + 0.008 0.006 -0.002 -0.008 -0.021 -0.020 -0.025 -0.019 -0.040 -0.032 + -0.026 -0.031 -0.027 -0.029 -0.035 -0.037 -0.027 -0.022 -0.032 -0.026 + -0.034 -0.027 -0.011 -0.015 -0.023 -0.012 0.000 0.005 -0.002 0.007 + 0.011 0.008 0.010 0.025 0.015 0.019 0.017 0.022 0.034 0.024 + 0.029 0.018 0.018 0.008 0.014 0.003 -0.013 -0.026 -0.021 -0.031 + -0.052 -0.058 -0.064 -0.081 -0.095 -0.102 -0.108 -0.112 -0.118 -0.097 + + 879 airs281SUBSET_aqua 198 0.564941E-01 + 0.461 0.406 0.393 0.375 0.358 0.347 0.347 0.348 0.337 0.343 + 0.343 0.341 0.346 0.336 0.345 0.335 0.338 0.334 0.338 0.331 + 0.333 0.331 0.334 0.336 0.320 0.309 0.308 0.325 0.302 0.304 + 0.293 0.279 0.276 0.278 0.266 0.264 0.271 0.257 0.246 0.251 + 0.241 0.251 0.250 0.263 0.234 0.246 0.236 0.240 0.252 0.248 + 0.245 0.257 0.255 0.256 0.269 0.283 0.277 0.289 0.288 0.294 + 0.305 0.310 0.301 0.322 0.315 0.326 0.326 0.331 0.330 0.341 + 0.353 0.341 0.345 0.347 0.357 0.348 0.342 0.352 0.355 0.350 + 0.344 0.346 0.360 0.360 0.365 0.385 0.392 0.412 0.431 0.483 + + 880 airs281SUBSET_aqua 201 0.547073E-01 + 0.909 0.860 0.828 0.836 0.819 0.814 0.821 0.826 0.827 0.830 + 0.841 0.838 0.852 0.860 0.848 0.863 0.859 0.866 0.868 0.870 + 0.875 0.859 0.862 0.860 0.852 0.838 0.842 0.846 0.826 0.840 + 0.837 0.818 0.811 0.809 0.797 0.800 0.794 0.787 0.775 0.776 + 0.775 0.766 0.775 0.790 0.764 0.772 0.768 0.776 0.778 0.780 + 0.764 0.788 0.788 0.797 0.804 0.812 0.806 0.825 0.821 0.825 + 0.836 0.840 0.848 0.850 0.861 0.865 0.856 0.865 0.867 0.867 + 0.894 0.869 0.878 0.877 0.872 0.877 0.855 0.861 0.865 0.860 + 0.842 0.847 0.849 0.844 0.834 0.855 0.851 0.880 0.887 0.946 + + 881 airs281SUBSET_aqua 204 0.588265E-01 + 0.579 0.530 0.494 0.497 0.471 0.449 0.442 0.443 0.428 0.439 + 0.430 0.425 0.421 0.416 0.405 0.393 0.395 0.394 0.386 0.383 + 0.384 0.372 0.369 0.372 0.360 0.341 0.337 0.340 0.324 0.316 + 0.322 0.305 0.307 0.304 0.295 0.294 0.286 0.290 0.270 0.273 + 0.264 0.272 0.251 0.273 0.253 0.254 0.262 0.274 0.271 0.264 + 0.263 0.283 0.268 0.286 0.286 0.298 0.296 0.303 0.307 0.315 + 0.319 0.329 0.321 0.344 0.346 0.352 0.354 0.364 0.360 0.375 + 0.385 0.383 0.398 0.396 0.408 0.410 0.413 0.420 0.431 0.423 + 0.427 0.433 0.453 0.444 0.455 0.480 0.495 0.519 0.528 0.596 + + 882 airs281SUBSET_aqua 207 0.483532E-01 + 0.666 0.624 0.601 0.603 0.595 0.588 0.588 0.603 0.601 0.612 + 0.612 0.618 0.620 0.624 0.639 0.636 0.627 0.635 0.648 0.645 + 0.661 0.644 0.633 0.655 0.638 0.631 0.621 0.644 0.628 0.614 + 0.628 0.609 0.606 0.606 0.601 0.594 0.596 0.606 0.587 0.586 + 0.573 0.584 0.575 0.583 0.563 0.578 0.577 0.571 0.591 0.576 + 0.570 0.565 0.584 0.593 0.587 0.600 0.596 0.594 0.596 0.601 + 0.622 0.627 0.623 0.625 0.623 0.630 0.621 0.627 0.640 0.635 + 0.661 0.639 0.642 0.641 0.637 0.631 0.623 0.621 0.608 0.613 + 0.599 0.595 0.608 0.604 0.600 0.605 0.614 0.624 0.629 0.683 + + 883 airs281SUBSET_aqua 210 0.527041E-01 + 0.286 0.261 0.241 0.248 0.240 0.245 0.249 0.268 0.253 0.267 + 0.271 0.289 0.290 0.296 0.294 0.305 0.315 0.309 0.295 0.307 + 0.311 0.307 0.285 0.312 0.290 0.280 0.262 0.275 0.261 0.271 + 0.270 0.239 0.237 0.251 0.234 0.236 0.214 0.227 0.236 0.228 + 0.219 0.223 0.227 0.215 0.200 0.210 0.221 0.217 0.231 0.221 + 0.209 0.235 0.227 0.232 0.234 0.243 0.245 0.243 0.247 0.253 + 0.270 0.269 0.254 0.270 0.280 0.276 0.280 0.272 0.286 0.297 + 0.306 0.300 0.288 0.286 0.282 0.278 0.275 0.280 0.280 0.267 + 0.253 0.243 0.250 0.242 0.237 0.244 0.239 0.248 0.243 0.288 + + 884 airs281SUBSET_aqua 215 0.589936E-01 + 0.581 0.524 0.470 0.452 0.417 0.389 0.372 0.368 0.355 0.337 + 0.318 0.322 0.325 0.307 0.308 0.302 0.291 0.284 0.273 0.260 + 0.267 0.262 0.257 0.249 0.238 0.243 0.242 0.239 0.239 0.230 + 0.226 0.229 0.222 0.216 0.224 0.207 0.208 0.197 0.214 0.214 + 0.199 0.202 0.208 0.201 0.195 0.200 0.205 0.213 0.222 0.226 + 0.207 0.218 0.205 0.221 0.209 0.220 0.238 0.238 0.234 0.230 + 0.254 0.246 0.243 0.266 0.262 0.278 0.274 0.274 0.273 0.286 + 0.288 0.292 0.285 0.310 0.312 0.317 0.317 0.334 0.329 0.339 + 0.348 0.343 0.376 0.387 0.399 0.427 0.446 0.496 0.522 0.588 + + 885 airs281SUBSET_aqua 216 0.478462E-01 + -1.446 -1.450 -1.437 -1.404 -1.365 -1.354 -1.322 -1.254 -1.266 -1.238 + -1.205 -1.185 -1.154 -1.141 -1.133 -1.101 -1.107 -1.080 -1.073 -1.049 + -1.024 -1.025 -1.020 -1.023 -1.031 -1.044 -1.056 -1.008 -1.021 -0.997 + -1.016 -1.002 -1.021 -1.003 -1.047 -1.030 -1.072 -1.032 -1.017 -1.008 + -1.016 -1.030 -1.026 -1.002 -1.046 -1.011 -1.009 -1.018 -0.985 -1.013 + -1.035 -1.000 -1.018 -1.026 -1.008 -1.006 -1.039 -1.004 -0.986 -1.024 + -1.021 -0.982 -1.021 -1.026 -1.042 -1.013 -1.047 -1.051 -1.044 -1.056 + -1.011 -1.057 -1.077 -1.084 -1.095 -1.132 -1.134 -1.159 -1.169 -1.184 + -1.240 -1.274 -1.287 -1.301 -1.353 -1.353 -1.406 -1.410 -1.443 -1.445 + + 886 airs281SUBSET_aqua 221 0.532392E-01 + 1.006 0.948 0.909 0.886 0.848 0.829 0.799 0.795 0.787 0.776 + 0.769 0.767 0.766 0.752 0.738 0.749 0.740 0.745 0.726 0.709 + 0.732 0.713 0.698 0.704 0.698 0.694 0.685 0.676 0.662 0.671 + 0.664 0.659 0.647 0.652 0.643 0.640 0.635 0.621 0.653 0.641 + 0.618 0.609 0.635 0.635 0.600 0.615 0.636 0.629 0.642 0.630 + 0.615 0.648 0.630 0.635 0.637 0.642 0.657 0.659 0.664 0.657 + 0.679 0.681 0.664 0.685 0.685 0.695 0.688 0.693 0.710 0.708 + 0.704 0.727 0.740 0.746 0.727 0.753 0.736 0.729 0.751 0.762 + 0.760 0.775 0.789 0.797 0.811 0.826 0.866 0.911 0.930 0.989 + + 887 airs281SUBSET_aqua 226 0.485475E-01 + 1.259 1.191 1.142 1.119 1.060 1.037 1.005 0.992 0.981 0.962 + 0.943 0.945 0.916 0.916 0.891 0.896 0.893 0.885 0.869 0.841 + 0.858 0.854 0.830 0.843 0.822 0.827 0.811 0.807 0.788 0.785 + 0.774 0.800 0.771 0.781 0.772 0.760 0.769 0.752 0.782 0.778 + 0.762 0.746 0.760 0.758 0.744 0.754 0.777 0.758 0.774 0.766 + 0.761 0.791 0.782 0.771 0.795 0.793 0.805 0.803 0.813 0.805 + 0.810 0.812 0.834 0.842 0.827 0.860 0.840 0.847 0.862 0.873 + 0.882 0.901 0.896 0.924 0.923 0.947 0.930 0.941 0.949 0.969 + 0.987 0.993 1.027 1.039 1.067 1.093 1.119 1.181 1.203 1.282 + + 888 airs281SUBSET_aqua 227 0.509442E-01 + 1.152 1.088 1.044 1.024 0.980 0.944 0.920 0.909 0.885 0.862 + 0.847 0.834 0.828 0.805 0.793 0.777 0.767 0.760 0.735 0.726 + 0.735 0.705 0.688 0.695 0.673 0.671 0.669 0.660 0.633 0.654 + 0.646 0.651 0.629 0.629 0.627 0.614 0.602 0.594 0.612 0.619 + 0.598 0.598 0.605 0.620 0.589 0.597 0.619 0.601 0.615 0.606 + 0.589 0.613 0.594 0.616 0.619 0.626 0.621 0.630 0.619 0.625 + 0.648 0.632 0.638 0.671 0.651 0.683 0.669 0.682 0.688 0.703 + 0.712 0.727 0.735 0.750 0.749 0.776 0.778 0.792 0.808 0.823 + 0.832 0.854 0.867 0.901 0.918 0.941 0.984 1.029 1.059 1.128 + + 889 airs281SUBSET_aqua 232 0.460467E-01 + 1.440 1.370 1.334 1.304 1.245 1.220 1.198 1.180 1.162 1.138 + 1.117 1.120 1.107 1.077 1.070 1.067 1.061 1.047 1.035 1.004 + 1.036 1.003 0.986 0.991 0.973 0.962 0.951 0.940 0.929 0.930 + 0.923 0.937 0.896 0.911 0.902 0.900 0.887 0.879 0.926 0.914 + 0.861 0.879 0.901 0.898 0.871 0.890 0.908 0.880 0.895 0.890 + 0.887 0.901 0.889 0.896 0.921 0.901 0.926 0.932 0.930 0.934 + 0.935 0.957 0.954 0.990 0.968 1.000 0.979 0.985 1.001 1.015 + 1.014 1.050 1.045 1.074 1.056 1.070 1.090 1.102 1.098 1.131 + 1.142 1.142 1.171 1.199 1.207 1.247 1.291 1.342 1.349 1.442 + + 890 airs281SUBSET_aqua 252 0.490315E-01 + 0.182 0.140 0.129 0.115 0.078 0.076 0.061 0.046 0.056 0.047 + 0.032 0.037 0.036 0.034 0.024 0.024 0.021 0.006 -0.004 -0.026 + -0.000 -0.023 -0.037 -0.032 -0.042 -0.036 -0.056 -0.056 -0.081 -0.080 + -0.086 -0.080 -0.105 -0.104 -0.107 -0.120 -0.117 -0.129 -0.093 -0.110 + -0.126 -0.137 -0.120 -0.133 -0.134 -0.126 -0.093 -0.130 -0.117 -0.119 + -0.109 -0.099 -0.111 -0.101 -0.108 -0.093 -0.076 -0.067 -0.078 -0.074 + -0.063 -0.048 -0.046 -0.014 -0.037 -0.004 -0.014 -0.016 -0.009 0.001 + 0.004 0.022 0.023 0.045 0.052 0.047 0.042 0.052 0.056 0.067 + 0.071 0.069 0.081 0.095 0.093 0.112 0.136 0.153 0.146 0.203 + + 891 airs281SUBSET_aqua 253 0.484667E-01 + 0.072 0.027 0.016 -0.003 -0.041 -0.048 -0.057 -0.066 -0.061 -0.077 + -0.096 -0.087 -0.097 -0.104 -0.118 -0.129 -0.105 -0.143 -0.140 -0.160 + -0.156 -0.166 -0.177 -0.177 -0.191 -0.193 -0.221 -0.213 -0.237 -0.239 + -0.250 -0.240 -0.277 -0.260 -0.272 -0.272 -0.288 -0.308 -0.271 -0.284 + -0.302 -0.304 -0.299 -0.302 -0.320 -0.318 -0.287 -0.324 -0.304 -0.302 + -0.302 -0.280 -0.303 -0.291 -0.281 -0.279 -0.261 -0.259 -0.263 -0.256 + -0.246 -0.231 -0.240 -0.210 -0.219 -0.205 -0.213 -0.217 -0.192 -0.181 + -0.190 -0.159 -0.153 -0.149 -0.148 -0.127 -0.148 -0.128 -0.127 -0.118 + -0.105 -0.113 -0.097 -0.090 -0.077 -0.063 -0.037 -0.012 -0.008 0.047 + + 892 airs281SUBSET_aqua 256 0.363621E-01 + 1.063 1.006 0.994 0.978 0.931 0.912 0.900 0.887 0.884 0.866 + 0.840 0.849 0.834 0.820 0.798 0.796 0.792 0.778 0.766 0.738 + 0.751 0.724 0.696 0.716 0.680 0.687 0.657 0.655 0.639 0.636 + 0.615 0.636 0.608 0.600 0.588 0.584 0.575 0.557 0.609 0.588 + 0.563 0.560 0.597 0.566 0.568 0.546 0.598 0.565 0.578 0.565 + 0.585 0.604 0.583 0.588 0.609 0.607 0.626 0.642 0.638 0.640 + 0.648 0.670 0.654 0.708 0.674 0.703 0.700 0.701 0.726 0.742 + 0.748 0.778 0.772 0.797 0.800 0.816 0.807 0.835 0.818 0.860 + 0.864 0.870 0.867 0.896 0.910 0.924 0.967 0.996 0.968 1.051 + + 893 airs281SUBSET_aqua 257 0.355197E-01 + 0.910 0.851 0.843 0.828 0.781 0.781 0.753 0.740 0.737 0.711 + 0.695 0.705 0.688 0.676 0.661 0.658 0.649 0.638 0.624 0.597 + 0.616 0.591 0.572 0.571 0.556 0.560 0.538 0.538 0.508 0.514 + 0.498 0.508 0.484 0.483 0.479 0.465 0.467 0.449 0.488 0.482 + 0.452 0.438 0.455 0.452 0.454 0.441 0.494 0.443 0.460 0.456 + 0.479 0.481 0.460 0.483 0.474 0.495 0.501 0.512 0.507 0.510 + 0.517 0.538 0.531 0.573 0.542 0.573 0.568 0.568 0.590 0.604 + 0.596 0.631 0.620 0.644 0.647 0.662 0.660 0.676 0.667 0.691 + 0.705 0.714 0.720 0.737 0.758 0.765 0.807 0.837 0.812 0.898 + + 894 airs281SUBSET_aqua 261 0.399457E-01 + 1.287 1.226 1.212 1.207 1.136 1.124 1.100 1.083 1.083 1.058 + 1.020 1.019 1.005 0.987 0.966 0.958 0.963 0.932 0.903 0.872 + 0.902 0.865 0.849 0.854 0.831 0.835 0.802 0.807 0.787 0.794 + 0.770 0.803 0.763 0.767 0.762 0.749 0.752 0.721 0.782 0.757 + 0.737 0.724 0.761 0.742 0.737 0.737 0.782 0.740 0.757 0.737 + 0.752 0.777 0.748 0.774 0.758 0.775 0.784 0.795 0.788 0.786 + 0.801 0.816 0.812 0.854 0.821 0.862 0.859 0.849 0.863 0.894 + 0.890 0.926 0.932 0.955 0.963 0.972 0.970 0.992 1.000 1.025 + 1.042 1.057 1.069 1.113 1.117 1.137 1.194 1.209 1.189 1.278 + + 895 airs281SUBSET_aqua 262 0.428321E-01 + 1.041 0.992 0.976 0.964 0.919 0.900 0.876 0.862 0.855 0.835 + 0.806 0.809 0.799 0.776 0.757 0.748 0.755 0.725 0.719 0.682 + 0.708 0.660 0.668 0.683 0.646 0.656 0.618 0.628 0.609 0.608 + 0.594 0.620 0.568 0.594 0.574 0.572 0.573 0.548 0.601 0.590 + 0.560 0.548 0.584 0.565 0.560 0.557 0.600 0.557 0.580 0.561 + 0.572 0.594 0.565 0.583 0.590 0.581 0.597 0.609 0.595 0.608 + 0.606 0.624 0.626 0.652 0.619 0.659 0.660 0.641 0.658 0.691 + 0.679 0.720 0.714 0.744 0.735 0.752 0.747 0.773 0.774 0.783 + 0.810 0.812 0.829 0.857 0.876 0.889 0.938 0.965 0.938 1.023 + + 896 airs281SUBSET_aqua 267 0.425316E-01 + 1.002 0.937 0.929 0.905 0.849 0.840 0.802 0.795 0.791 0.762 + 0.732 0.736 0.739 0.705 0.680 0.678 0.678 0.657 0.633 0.612 + 0.623 0.596 0.573 0.582 0.555 0.565 0.538 0.540 0.526 0.516 + 0.495 0.526 0.480 0.504 0.481 0.482 0.484 0.462 0.505 0.485 + 0.460 0.466 0.485 0.461 0.458 0.469 0.503 0.463 0.470 0.465 + 0.488 0.497 0.483 0.494 0.490 0.488 0.500 0.527 0.509 0.509 + 0.532 0.531 0.534 0.577 0.541 0.575 0.569 0.573 0.595 0.606 + 0.602 0.639 0.631 0.654 0.663 0.674 0.677 0.705 0.701 0.720 + 0.740 0.754 0.771 0.804 0.811 0.823 0.875 0.903 0.882 0.979 + + 897 airs281SUBSET_aqua 272 0.417364E-01 + 0.892 0.832 0.826 0.797 0.744 0.736 0.700 0.689 0.685 0.658 + 0.623 0.625 0.604 0.588 0.574 0.564 0.554 0.541 0.513 0.488 + 0.504 0.466 0.451 0.466 0.430 0.451 0.419 0.412 0.389 0.391 + 0.382 0.398 0.363 0.383 0.374 0.358 0.363 0.345 0.385 0.379 + 0.337 0.349 0.369 0.353 0.341 0.352 0.389 0.345 0.373 0.354 + 0.372 0.383 0.368 0.374 0.377 0.381 0.377 0.410 0.388 0.396 + 0.410 0.424 0.416 0.449 0.415 0.462 0.456 0.441 0.458 0.484 + 0.468 0.506 0.519 0.542 0.538 0.554 0.557 0.594 0.585 0.598 + 0.628 0.650 0.664 0.698 0.714 0.723 0.775 0.804 0.774 0.863 + + 898 airs281SUBSET_aqua 295 0.449673E-01 + 0.534 0.469 0.475 0.467 0.411 0.400 0.378 0.370 0.377 0.351 + 0.318 0.338 0.332 0.316 0.281 0.281 0.277 0.269 0.250 0.243 + 0.243 0.215 0.212 0.219 0.202 0.191 0.187 0.174 0.179 0.165 + 0.157 0.171 0.157 0.175 0.157 0.138 0.124 0.111 0.177 0.151 + 0.126 0.116 0.162 0.151 0.142 0.139 0.186 0.137 0.142 0.132 + 0.143 0.175 0.155 0.168 0.161 0.165 0.161 0.188 0.177 0.163 + 0.177 0.203 0.188 0.205 0.198 0.228 0.215 0.207 0.221 0.244 + 0.228 0.262 0.260 0.278 0.278 0.296 0.295 0.301 0.295 0.313 + 0.339 0.331 0.346 0.378 0.390 0.396 0.439 0.469 0.444 0.521 + + 899 airs281SUBSET_aqua 299 0.445729E-01 + 0.540 0.497 0.481 0.474 0.434 0.427 0.404 0.394 0.402 0.382 + 0.359 0.362 0.353 0.347 0.317 0.327 0.332 0.299 0.299 0.276 + 0.288 0.266 0.253 0.273 0.244 0.250 0.232 0.220 0.218 0.221 + 0.184 0.213 0.190 0.200 0.182 0.169 0.174 0.152 0.210 0.192 + 0.184 0.159 0.194 0.176 0.162 0.176 0.199 0.179 0.191 0.174 + 0.183 0.207 0.191 0.202 0.199 0.205 0.221 0.228 0.208 0.221 + 0.233 0.239 0.242 0.271 0.236 0.282 0.277 0.259 0.274 0.295 + 0.281 0.313 0.311 0.341 0.320 0.348 0.340 0.359 0.361 0.370 + 0.384 0.388 0.391 0.423 0.430 0.436 0.475 0.484 0.464 0.535 + + 900 airs281SUBSET_aqua 300 0.442708E-01 + 0.210 0.258 0.374 0.387 0.328 0.444 0.381 0.356 0.373 0.446 + 0.385 0.344 0.305 0.384 0.361 0.337 0.351 0.335 0.334 0.348 + 0.267 0.224 0.253 0.331 0.298 0.279 0.211 0.216 0.265 0.179 + 0.167 0.202 0.128 0.241 0.193 0.161 0.149 0.158 0.187 0.207 + 0.217 0.186 0.208 0.156 0.197 0.186 0.281 0.237 0.124 0.201 + 0.247 0.183 0.203 0.244 0.246 0.180 0.241 0.178 0.127 0.195 + 0.256 0.233 0.268 0.274 0.247 0.252 0.246 0.242 0.353 0.275 + 0.293 0.289 0.322 0.396 0.377 0.315 0.377 0.312 0.340 0.373 + 0.324 0.341 0.344 0.344 0.346 0.344 0.312 0.341 0.242 0.233 + + 901 airs281SUBSET_aqua 305 0.442288E-01 + 0.424 0.363 0.354 0.350 0.297 0.279 0.267 0.249 0.244 0.240 + 0.210 0.207 0.205 0.176 0.178 0.162 0.176 0.141 0.118 0.102 + 0.115 0.075 0.082 0.092 0.065 0.070 0.055 0.056 0.047 0.023 + 0.004 0.022 0.014 -0.008 0.009 -0.006 -0.008 -0.012 0.026 0.019 + -0.014 -0.026 0.011 0.007 -0.009 -0.004 0.029 -0.002 0.003 -0.014 + 0.012 0.025 0.000 0.035 0.027 0.037 0.044 0.043 0.031 0.052 + 0.055 0.061 0.048 0.091 0.060 0.102 0.087 0.078 0.114 0.116 + 0.114 0.145 0.142 0.175 0.161 0.177 0.166 0.194 0.201 0.218 + 0.225 0.239 0.247 0.263 0.284 0.301 0.326 0.355 0.341 0.412 + + 902 airs281SUBSET_aqua 310 0.465641E-01 + 0.399 0.338 0.328 0.325 0.274 0.256 0.233 0.227 0.232 0.212 + 0.190 0.195 0.173 0.171 0.138 0.139 0.153 0.114 0.106 0.080 + 0.094 0.078 0.056 0.065 0.052 0.070 0.032 0.032 0.010 0.006 + -0.019 0.006 -0.015 -0.013 -0.016 -0.042 -0.023 -0.046 0.010 -0.019 + -0.041 -0.048 -0.023 -0.026 -0.026 -0.028 0.001 -0.029 -0.002 -0.040 + -0.021 0.006 -0.002 -0.001 -0.002 0.005 0.021 0.032 0.019 0.029 + 0.019 0.043 0.035 0.055 0.046 0.073 0.078 0.055 0.083 0.098 + 0.091 0.128 0.106 0.137 0.131 0.156 0.151 0.161 0.171 0.196 + 0.207 0.216 0.227 0.242 0.252 0.254 0.292 0.335 0.308 0.381 + + 903 airs281SUBSET_aqua 321 0.474605E-01 + 0.084 0.046 0.046 0.025 0.022 0.009 -0.003 -0.028 -0.056 -0.064 + -0.038 -0.068 -0.087 -0.073 -0.090 -0.078 -0.083 -0.102 -0.107 -0.128 + -0.117 -0.099 -0.109 -0.118 -0.111 -0.133 -0.129 -0.127 -0.118 -0.133 + -0.151 -0.166 -0.160 -0.145 -0.135 -0.163 -0.128 -0.138 -0.134 -0.134 + -0.144 -0.151 -0.127 -0.134 -0.157 -0.167 -0.154 -0.172 -0.125 -0.135 + -0.153 -0.132 -0.118 -0.127 -0.120 -0.149 -0.124 -0.125 -0.133 -0.137 + -0.155 -0.129 -0.130 -0.129 -0.149 -0.099 -0.124 -0.140 -0.109 -0.132 + -0.106 -0.131 -0.147 -0.128 -0.101 -0.075 -0.105 -0.083 -0.093 -0.063 + -0.069 -0.063 -0.042 -0.037 -0.031 -0.019 0.015 0.036 0.027 0.047 + + 904 airs281SUBSET_aqua 325 0.389081E-01 + 0.735 0.682 0.699 0.696 0.641 0.658 0.628 0.632 0.629 0.611 + 0.577 0.608 0.591 0.585 0.561 0.560 0.560 0.540 0.547 0.509 + 0.537 0.498 0.478 0.485 0.463 0.474 0.439 0.440 0.430 0.435 + 0.416 0.443 0.405 0.433 0.427 0.395 0.387 0.380 0.433 0.406 + 0.391 0.378 0.410 0.398 0.380 0.384 0.421 0.380 0.416 0.377 + 0.400 0.415 0.398 0.422 0.416 0.415 0.424 0.444 0.437 0.432 + 0.431 0.447 0.439 0.461 0.435 0.477 0.482 0.474 0.490 0.498 + 0.508 0.516 0.524 0.538 0.543 0.545 0.541 0.555 0.557 0.573 + 0.579 0.583 0.586 0.621 0.626 0.621 0.663 0.676 0.627 0.709 + + 905 airs281SUBSET_aqua 333 0.296473E-01 + 0.955 0.885 0.942 0.923 0.853 0.883 0.848 0.838 0.832 0.812 + 0.777 0.791 0.771 0.733 0.728 0.720 0.719 0.668 0.658 0.630 + 0.660 0.603 0.580 0.610 0.555 0.569 0.535 0.525 0.524 0.510 + 0.473 0.517 0.471 0.498 0.481 0.464 0.462 0.436 0.492 0.474 + 0.444 0.439 0.457 0.443 0.450 0.456 0.507 0.448 0.462 0.453 + 0.486 0.508 0.471 0.499 0.505 0.497 0.528 0.532 0.518 0.532 + 0.533 0.567 0.557 0.600 0.568 0.602 0.625 0.601 0.636 0.661 + 0.636 0.693 0.693 0.722 0.730 0.746 0.738 0.777 0.767 0.787 + 0.819 0.831 0.822 0.872 0.894 0.873 0.945 0.930 0.840 0.953 + + 906 airs281SUBSET_aqua 338 0.286442E-01 + 0.801 0.743 0.810 0.799 0.726 0.769 0.731 0.710 0.724 0.702 + 0.664 0.679 0.653 0.618 0.607 0.602 0.609 0.570 0.537 0.510 + 0.524 0.484 0.460 0.486 0.438 0.460 0.408 0.405 0.403 0.376 + 0.337 0.383 0.352 0.374 0.363 0.316 0.345 0.318 0.373 0.346 + 0.308 0.316 0.361 0.325 0.322 0.325 0.362 0.313 0.346 0.327 + 0.372 0.372 0.341 0.375 0.382 0.372 0.409 0.403 0.393 0.409 + 0.419 0.434 0.435 0.477 0.441 0.479 0.484 0.474 0.513 0.530 + 0.506 0.569 0.581 0.613 0.611 0.619 0.613 0.672 0.650 0.672 + 0.695 0.718 0.699 0.757 0.778 0.740 0.814 0.799 0.683 0.799 + + 907 airs281SUBSET_aqua 355 0.397777E-01 + 0.769 0.713 0.749 0.722 0.668 0.686 0.646 0.661 0.640 0.612 + 0.576 0.570 0.554 0.531 0.509 0.498 0.500 0.484 0.467 0.441 + 0.451 0.409 0.399 0.401 0.368 0.379 0.371 0.362 0.355 0.358 + 0.333 0.368 0.342 0.366 0.345 0.335 0.314 0.315 0.365 0.358 + 0.333 0.338 0.348 0.335 0.327 0.340 0.368 0.335 0.354 0.332 + 0.354 0.359 0.325 0.354 0.353 0.360 0.370 0.382 0.380 0.379 + 0.385 0.390 0.417 0.428 0.396 0.440 0.429 0.421 0.446 0.475 + 0.467 0.498 0.517 0.537 0.535 0.558 0.555 0.586 0.597 0.610 + 0.640 0.648 0.668 0.710 0.714 0.722 0.763 0.777 0.703 0.795 + + 908 airs281SUBSET_aqua 362 0.252127E-01 + 1.125 1.054 1.131 1.125 1.045 1.087 1.055 1.042 1.047 1.027 + 0.966 0.986 0.963 0.929 0.908 0.892 0.905 0.853 0.823 0.799 + 0.826 0.779 0.741 0.763 0.715 0.732 0.688 0.686 0.664 0.669 + 0.611 0.679 0.620 0.647 0.626 0.604 0.608 0.580 0.648 0.615 + 0.582 0.587 0.612 0.589 0.599 0.591 0.645 0.592 0.605 0.598 + 0.641 0.645 0.622 0.656 0.651 0.654 0.667 0.685 0.665 0.682 + 0.680 0.706 0.712 0.752 0.710 0.758 0.782 0.749 0.790 0.821 + 0.807 0.867 0.882 0.901 0.908 0.918 0.919 0.958 0.958 0.975 + 1.005 1.028 1.014 1.078 1.093 1.057 1.133 1.117 0.989 1.117 + + 909 airs281SUBSET_aqua 375 0.160952E-01 + 0.754 0.681 0.800 0.783 0.705 0.749 0.720 0.696 0.707 0.684 + 0.622 0.661 0.634 0.596 0.570 0.564 0.578 0.506 0.480 0.468 + 0.505 0.429 0.407 0.450 0.385 0.410 0.376 0.364 0.353 0.337 + 0.305 0.353 0.310 0.335 0.311 0.301 0.303 0.271 0.337 0.323 + 0.309 0.281 0.321 0.293 0.317 0.315 0.356 0.313 0.310 0.288 + 0.348 0.365 0.316 0.361 0.337 0.341 0.377 0.378 0.353 0.384 + 0.376 0.405 0.383 0.446 0.399 0.440 0.471 0.444 0.465 0.495 + 0.487 0.555 0.559 0.570 0.596 0.591 0.577 0.650 0.629 0.633 + 0.686 0.708 0.689 0.753 0.790 0.726 0.825 0.789 0.624 0.768 + + 910 airs281SUBSET_aqua 453 0.156662E-01 + 1.898 0.839 0.878 0.736 0.193 0.381 0.232 0.157 0.291 0.198 + -0.140 -0.015 -0.168 -0.038 -0.040 -0.203 -0.168 -0.208 -0.178 -0.376 + -0.352 -0.407 -0.570 -0.388 -0.593 -0.376 -0.478 -0.584 -0.511 -0.528 + -0.599 -0.477 -0.510 -0.619 -0.444 -0.467 -0.487 -0.515 -0.462 -0.584 + -0.658 -0.441 -0.608 -0.601 -0.584 -0.582 -0.519 -0.580 -0.561 -0.659 + -0.463 -0.521 -0.555 -0.520 -0.498 -0.446 -0.408 -0.529 -0.563 -0.444 + -0.449 -0.410 -0.296 -0.395 -0.319 -0.345 -0.397 -0.393 -0.246 -0.224 + -0.494 -0.330 -0.105 -0.054 -0.176 -0.127 -0.306 -0.009 0.030 -0.078 + 0.271 0.343 0.283 0.476 0.548 0.441 0.788 0.887 0.675 1.869 + + 911 airs281SUBSET_aqua 475 0.126475E-01 + 0.009 -0.054 0.112 0.110 0.060 0.132 0.095 0.093 0.110 0.115 + 0.067 0.117 0.107 0.071 0.065 0.061 0.085 0.004 0.004 -0.001 + 0.043 -0.029 -0.053 0.006 -0.061 -0.024 -0.059 -0.054 -0.070 -0.077 + -0.099 -0.053 -0.073 -0.037 -0.070 -0.079 -0.068 -0.108 -0.038 -0.055 + -0.067 -0.102 -0.046 -0.087 -0.047 -0.049 0.002 -0.045 -0.056 -0.066 + -0.025 -0.012 -0.039 -0.000 -0.027 -0.032 0.016 -0.006 -0.014 0.017 + 0.006 0.012 0.015 0.056 0.019 0.044 0.081 0.032 0.055 0.084 + 0.067 0.138 0.142 0.147 0.158 0.140 0.131 0.188 0.157 0.160 + 0.202 0.219 0.177 0.239 0.253 0.169 0.262 0.188 -0.020 0.106 + + 912 airs281SUBSET_aqua 484 0.141339E-01 + 0.049 -0.014 0.149 0.143 0.081 0.159 0.146 0.132 0.157 0.155 + 0.124 0.171 0.139 0.118 0.086 0.094 0.119 0.035 0.031 0.023 + 0.076 -0.010 -0.014 0.046 -0.028 0.001 -0.024 -0.031 -0.035 -0.036 + -0.057 -0.010 -0.058 -0.020 -0.045 -0.056 -0.043 -0.066 -0.018 -0.026 + -0.054 -0.063 -0.026 -0.061 -0.020 -0.045 0.008 -0.033 -0.042 -0.046 + 0.005 0.010 -0.021 0.024 -0.003 -0.004 0.040 0.023 -0.008 0.044 + 0.032 0.039 0.034 0.075 0.032 0.076 0.088 0.057 0.069 0.108 + 0.084 0.151 0.154 0.157 0.166 0.162 0.139 0.207 0.172 0.174 + 0.210 0.224 0.188 0.243 0.256 0.171 0.258 0.195 -0.013 0.116 + + 913 airs281SUBSET_aqua 497 0.133332E-01 + -0.137 -0.197 -0.022 -0.024 -0.064 0.006 -0.009 0.001 0.019 0.026 + -0.018 0.036 0.023 -0.006 -0.012 -0.001 0.014 -0.050 -0.057 -0.075 + -0.014 -0.096 -0.102 -0.055 -0.117 -0.082 -0.113 -0.103 -0.107 -0.128 + -0.151 -0.097 -0.112 -0.084 -0.121 -0.129 -0.125 -0.138 -0.083 -0.102 + -0.120 -0.149 -0.098 -0.128 -0.097 -0.112 -0.052 -0.104 -0.117 -0.115 + -0.074 -0.068 -0.107 -0.068 -0.091 -0.083 -0.049 -0.063 -0.094 -0.054 + -0.066 -0.050 -0.066 -0.022 -0.071 -0.034 -0.008 -0.058 -0.025 0.006 + -0.025 0.035 0.038 0.024 0.041 0.019 0.012 0.061 0.039 0.021 + 0.049 0.063 0.023 0.072 0.082 -0.001 0.075 0.002 -0.206 -0.089 + + 914 airs281SUBSET_aqua 528 0.102044E-01 + -0.113 -0.177 -0.004 0.001 -0.043 0.034 -0.002 -0.003 0.023 0.020 + -0.021 0.053 0.004 -0.014 -0.030 -0.009 0.007 -0.059 -0.076 -0.090 + -0.027 -0.096 -0.134 -0.059 -0.126 -0.091 -0.126 -0.124 -0.132 -0.143 + -0.173 -0.136 -0.144 -0.120 -0.151 -0.151 -0.146 -0.194 -0.125 -0.134 + -0.147 -0.184 -0.137 -0.166 -0.110 -0.128 -0.100 -0.126 -0.150 -0.157 + -0.106 -0.123 -0.132 -0.098 -0.127 -0.114 -0.078 -0.086 -0.123 -0.089 + -0.099 -0.088 -0.104 -0.051 -0.094 -0.060 -0.025 -0.078 -0.060 -0.044 + -0.059 0.020 0.018 -0.008 0.022 0.011 -0.014 0.048 0.012 0.001 + 0.049 0.062 0.003 0.062 0.081 0.005 0.090 0.019 -0.210 -0.078 + + 915 airs281SUBSET_aqua 587 0.946100E-02 + -0.759 -0.790 -0.593 -0.574 -0.591 -0.507 -0.514 -0.497 -0.469 -0.428 + -0.482 -0.397 -0.413 -0.423 -0.422 -0.411 -0.397 -0.464 -0.453 -0.450 + -0.394 -0.468 -0.486 -0.414 -0.473 -0.439 -0.461 -0.480 -0.454 -0.479 + -0.501 -0.450 -0.464 -0.423 -0.451 -0.471 -0.449 -0.500 -0.435 -0.435 + -0.451 -0.473 -0.425 -0.469 -0.416 -0.427 -0.390 -0.435 -0.457 -0.459 + -0.412 -0.418 -0.445 -0.416 -0.423 -0.439 -0.395 -0.426 -0.452 -0.411 + -0.421 -0.422 -0.438 -0.405 -0.436 -0.407 -0.384 -0.429 -0.422 -0.416 + -0.443 -0.376 -0.377 -0.397 -0.377 -0.409 -0.442 -0.385 -0.428 -0.462 + -0.425 -0.423 -0.492 -0.447 -0.452 -0.556 -0.491 -0.589 -0.836 -0.730 + + 916 airs281SUBSET_aqua 672 0.225425E-01 + 0.186 0.167 0.314 0.319 0.284 0.367 0.346 0.357 0.376 0.373 + 0.340 0.381 0.347 0.324 0.326 0.321 0.350 0.297 0.291 0.253 + 0.293 0.241 0.225 0.254 0.234 0.221 0.196 0.202 0.182 0.196 + 0.147 0.211 0.160 0.200 0.192 0.147 0.151 0.134 0.173 0.182 + 0.141 0.147 0.170 0.138 0.160 0.159 0.197 0.131 0.180 0.134 + 0.184 0.176 0.172 0.175 0.192 0.187 0.195 0.214 0.178 0.183 + 0.190 0.208 0.223 0.231 0.176 0.243 0.241 0.208 0.254 0.261 + 0.242 0.286 0.303 0.320 0.322 0.322 0.281 0.313 0.310 0.305 + 0.323 0.324 0.279 0.333 0.333 0.257 0.314 0.238 0.048 0.151 + + 917 airs281SUBSET_aqua 787 0.752195E-02 + -0.804 -0.825 -0.621 -0.596 -0.602 -0.508 -0.511 -0.500 -0.456 -0.430 + -0.467 -0.387 -0.397 -0.411 -0.410 -0.395 -0.377 -0.444 -0.425 -0.435 + -0.379 -0.459 -0.451 -0.400 -0.461 -0.414 -0.445 -0.451 -0.435 -0.459 + -0.475 -0.437 -0.447 -0.422 -0.438 -0.447 -0.439 -0.483 -0.415 -0.417 + -0.446 -0.473 -0.428 -0.460 -0.411 -0.424 -0.392 -0.423 -0.452 -0.457 + -0.411 -0.425 -0.451 -0.412 -0.435 -0.442 -0.389 -0.428 -0.459 -0.421 + -0.428 -0.435 -0.459 -0.409 -0.454 -0.429 -0.405 -0.448 -0.447 -0.441 + -0.471 -0.404 -0.416 -0.439 -0.431 -0.457 -0.491 -0.443 -0.486 -0.528 + -0.497 -0.495 -0.568 -0.546 -0.545 -0.651 -0.600 -0.707 -0.945 -0.862 + + 918 airs281SUBSET_aqua 791 0.988161E-02 + -0.635 -0.661 -0.471 -0.453 -0.466 -0.373 -0.377 -0.369 -0.337 -0.314 + -0.352 -0.283 -0.296 -0.314 -0.314 -0.309 -0.290 -0.360 -0.344 -0.360 + -0.311 -0.379 -0.386 -0.336 -0.391 -0.359 -0.381 -0.386 -0.388 -0.405 + -0.427 -0.385 -0.393 -0.372 -0.394 -0.404 -0.402 -0.439 -0.380 -0.381 + -0.410 -0.427 -0.394 -0.421 -0.378 -0.393 -0.367 -0.394 -0.410 -0.426 + -0.375 -0.388 -0.405 -0.376 -0.392 -0.401 -0.351 -0.380 -0.413 -0.364 + -0.376 -0.379 -0.395 -0.356 -0.394 -0.360 -0.336 -0.376 -0.376 -0.363 + -0.390 -0.330 -0.330 -0.342 -0.333 -0.354 -0.383 -0.331 -0.369 -0.402 + -0.372 -0.365 -0.431 -0.405 -0.402 -0.497 -0.442 -0.540 -0.768 -0.680 + + 919 airs281SUBSET_aqua 843 0.709312E-02 + 0.020 -0.022 0.155 0.155 0.129 0.200 0.182 0.182 0.212 0.219 + 0.172 0.242 0.222 0.203 0.187 0.194 0.204 0.132 0.139 0.133 + 0.180 0.095 0.089 0.134 0.074 0.119 0.083 0.076 0.082 0.062 + 0.033 0.073 0.064 0.086 0.073 0.053 0.055 0.017 0.076 0.080 + 0.051 0.024 0.071 0.033 0.082 0.074 0.105 0.076 0.048 0.044 + 0.096 0.080 0.046 0.083 0.069 0.067 0.122 0.084 0.063 0.098 + 0.099 0.091 0.077 0.136 0.092 0.120 0.152 0.111 0.121 0.136 + 0.110 0.182 0.184 0.169 0.181 0.166 0.143 0.199 0.163 0.135 + 0.180 0.201 0.135 0.174 0.186 0.112 0.177 0.093 -0.117 -0.008 + + 920 airs281SUBSET_aqua 870 0.204433E-01 + 0.274 0.246 0.375 0.385 0.340 0.416 0.401 0.393 0.417 0.416 + 0.374 0.407 0.390 0.366 0.357 0.351 0.368 0.320 0.309 0.271 + 0.311 0.267 0.240 0.273 0.236 0.248 0.221 0.214 0.198 0.203 + 0.163 0.213 0.180 0.208 0.194 0.165 0.167 0.145 0.201 0.198 + 0.164 0.167 0.188 0.160 0.177 0.172 0.206 0.154 0.191 0.149 + 0.194 0.192 0.187 0.197 0.212 0.194 0.217 0.224 0.195 0.214 + 0.214 0.227 0.235 0.251 0.217 0.268 0.281 0.248 0.280 0.288 + 0.270 0.319 0.335 0.351 0.359 0.358 0.328 0.377 0.362 0.360 + 0.391 0.394 0.359 0.405 0.414 0.338 0.408 0.345 0.164 0.258 + + 921 airs281SUBSET_aqua 914 0.677307E-02 + 0.053 0.015 0.186 0.181 0.155 0.221 0.205 0.207 0.226 0.239 + 0.200 0.264 0.243 0.212 0.206 0.205 0.222 0.140 0.155 0.140 + 0.184 0.103 0.096 0.140 0.086 0.123 0.092 0.080 0.090 0.069 + 0.042 0.084 0.066 0.087 0.069 0.064 0.064 0.024 0.082 0.082 + 0.057 0.032 0.075 0.048 0.091 0.079 0.105 0.080 0.052 0.046 + 0.099 0.081 0.059 0.098 0.079 0.073 0.130 0.100 0.068 0.119 + 0.111 0.107 0.098 0.144 0.108 0.138 0.174 0.130 0.134 0.157 + 0.136 0.205 0.197 0.194 0.206 0.199 0.175 0.228 0.197 0.177 + 0.217 0.234 0.171 0.214 0.232 0.158 0.222 0.142 -0.062 0.042 + + 922 airs281SUBSET_aqua 950 0.611125E-02 + 0.021 -0.017 0.145 0.141 0.114 0.174 0.156 0.162 0.181 0.192 + 0.153 0.221 0.199 0.168 0.167 0.165 0.182 0.103 0.117 0.109 + 0.153 0.069 0.072 0.107 0.058 0.092 0.061 0.055 0.068 0.049 + 0.021 0.054 0.051 0.068 0.049 0.038 0.047 0.008 0.067 0.068 + 0.040 0.016 0.060 0.031 0.077 0.064 0.089 0.068 0.039 0.035 + 0.081 0.065 0.042 0.085 0.067 0.065 0.118 0.083 0.055 0.107 + 0.105 0.097 0.087 0.132 0.099 0.124 0.160 0.123 0.124 0.145 + 0.124 0.195 0.188 0.181 0.191 0.183 0.160 0.214 0.183 0.170 + 0.206 0.218 0.158 0.205 0.221 0.148 0.218 0.140 -0.056 0.050 + + 923 airs281SUBSET_aqua 1003 0.126853E-02 + -0.074 -0.117 0.026 0.012 -0.014 0.044 0.014 0.033 0.039 0.052 + 0.015 0.073 0.061 0.029 0.028 0.032 0.037 -0.017 -0.009 -0.016 + 0.027 -0.044 -0.052 -0.011 -0.051 -0.027 -0.061 -0.051 -0.043 -0.053 + -0.078 -0.049 -0.050 -0.036 -0.042 -0.060 -0.058 -0.085 -0.029 -0.029 + -0.052 -0.077 -0.033 -0.058 -0.032 -0.036 -0.004 -0.032 -0.054 -0.050 + -0.018 -0.025 -0.051 -0.015 -0.027 -0.029 0.020 -0.009 -0.031 0.006 + 0.006 0.004 -0.011 0.032 0.001 0.023 0.052 0.013 0.020 0.043 + 0.031 0.077 0.065 0.067 0.073 0.064 0.046 0.095 0.055 0.054 + 0.081 0.097 0.037 0.087 0.095 0.035 0.101 0.033 -0.135 -0.031 + + 924 airs281SUBSET_aqua 1012 -0.214887E-02 + -0.071 -0.119 0.002 -0.017 -0.046 -0.003 -0.036 -0.007 -0.011 -0.002 + -0.035 0.020 0.007 -0.019 -0.035 -0.021 -0.023 -0.067 -0.057 -0.064 + -0.021 -0.101 -0.093 -0.068 -0.100 -0.079 -0.116 -0.104 -0.089 -0.097 + -0.121 -0.102 -0.094 -0.090 -0.093 -0.103 -0.109 -0.128 -0.078 -0.077 + -0.098 -0.133 -0.082 -0.103 -0.076 -0.081 -0.050 -0.084 -0.099 -0.090 + -0.074 -0.071 -0.097 -0.070 -0.075 -0.072 -0.030 -0.054 -0.080 -0.044 + -0.047 -0.041 -0.061 -0.020 -0.049 -0.033 -0.005 -0.031 -0.028 -0.017 + -0.015 0.024 0.008 0.012 0.016 0.011 -0.008 0.041 -0.002 0.008 + 0.027 0.044 -0.008 0.039 0.055 0.005 0.070 0.012 -0.137 -0.028 + + 925 airs281SUBSET_aqua 1019 -0.354517E-02 + -0.079 -0.132 -0.024 -0.041 -0.076 -0.042 -0.072 -0.052 -0.059 -0.057 + -0.084 -0.040 -0.054 -0.084 -0.113 -0.102 -0.107 -0.150 -0.141 -0.157 + -0.122 -0.200 -0.197 -0.173 -0.205 -0.194 -0.235 -0.214 -0.203 -0.217 + -0.245 -0.217 -0.220 -0.224 -0.225 -0.237 -0.241 -0.262 -0.210 -0.214 + -0.233 -0.269 -0.223 -0.229 -0.212 -0.219 -0.188 -0.219 -0.233 -0.228 + -0.209 -0.205 -0.226 -0.199 -0.206 -0.197 -0.160 -0.172 -0.197 -0.167 + -0.162 -0.162 -0.173 -0.134 -0.158 -0.138 -0.113 -0.136 -0.132 -0.111 + -0.100 -0.067 -0.073 -0.057 -0.062 -0.061 -0.064 -0.025 -0.056 -0.037 + -0.026 -0.010 -0.052 0.003 0.023 -0.028 0.046 -0.013 -0.152 -0.039 + + 926 airs281SUBSET_aqua 1024 -0.414748E-03 + 0.017 -0.042 0.047 0.028 -0.027 0.006 -0.030 -0.014 -0.029 -0.037 + -0.056 -0.024 -0.056 -0.075 -0.099 -0.094 -0.090 -0.132 -0.128 -0.155 + -0.112 -0.174 -0.185 -0.157 -0.188 -0.178 -0.216 -0.193 -0.198 -0.196 + -0.232 -0.196 -0.208 -0.209 -0.205 -0.230 -0.233 -0.249 -0.196 -0.198 + -0.212 -0.248 -0.205 -0.213 -0.206 -0.213 -0.179 -0.215 -0.207 -0.218 + -0.206 -0.192 -0.205 -0.193 -0.193 -0.180 -0.157 -0.166 -0.192 -0.160 + -0.168 -0.157 -0.164 -0.130 -0.163 -0.137 -0.126 -0.134 -0.129 -0.111 + -0.101 -0.081 -0.080 -0.054 -0.062 -0.060 -0.069 -0.033 -0.055 -0.030 + -0.014 0.004 -0.029 0.026 0.047 0.007 0.088 0.053 -0.072 0.039 + + 927 airs281SUBSET_aqua 1030 -0.512737E-02 + 0.704 0.632 0.688 0.653 0.589 0.586 0.527 0.555 0.512 0.500 + 0.456 0.470 0.453 0.397 0.341 0.368 0.351 0.288 0.276 0.261 + 0.277 0.174 0.180 0.190 0.162 0.145 0.087 0.112 0.104 0.134 + 0.056 0.104 0.083 0.069 0.040 0.027 0.035 0.011 0.071 0.052 + 0.045 -0.007 0.050 0.041 0.034 0.035 0.080 0.043 0.038 0.062 + 0.047 0.067 0.044 0.084 0.074 0.093 0.121 0.140 0.125 0.139 + 0.151 0.172 0.165 0.208 0.193 0.220 0.234 0.225 0.242 0.280 + 0.329 0.362 0.347 0.394 0.381 0.395 0.427 0.451 0.446 0.531 + 0.512 0.548 0.520 0.616 0.649 0.614 0.724 0.680 0.593 0.744 + + 928 airs281SUBSET_aqua 1038 -0.839261E-02 + 0.076 -0.006 0.053 0.000 -0.065 -0.067 -0.121 -0.102 -0.141 -0.165 + -0.189 -0.160 -0.196 -0.221 -0.268 -0.256 -0.279 -0.308 -0.306 -0.329 + -0.290 -0.376 -0.362 -0.354 -0.367 -0.354 -0.412 -0.381 -0.383 -0.371 + -0.405 -0.382 -0.379 -0.396 -0.399 -0.405 -0.403 -0.422 -0.375 -0.376 + -0.384 -0.432 -0.378 -0.378 -0.375 -0.374 -0.341 -0.371 -0.397 -0.369 + -0.387 -0.370 -0.379 -0.373 -0.374 -0.362 -0.337 -0.328 -0.361 -0.334 + -0.343 -0.319 -0.349 -0.310 -0.333 -0.319 -0.308 -0.308 -0.314 -0.291 + -0.269 -0.252 -0.259 -0.226 -0.234 -0.232 -0.211 -0.184 -0.201 -0.145 + -0.151 -0.116 -0.135 -0.053 -0.017 -0.033 0.065 0.041 -0.039 0.109 + + 929 airs281SUBSET_aqua 1048 -0.104125E-01 + -0.229 -0.313 -0.256 -0.313 -0.387 -0.381 -0.439 -0.428 -0.456 -0.476 + -0.501 -0.474 -0.512 -0.523 -0.566 -0.557 -0.576 -0.599 -0.594 -0.618 + -0.569 -0.650 -0.638 -0.623 -0.633 -0.618 -0.676 -0.640 -0.633 -0.632 + -0.652 -0.636 -0.627 -0.658 -0.640 -0.651 -0.651 -0.672 -0.626 -0.621 + -0.624 -0.683 -0.625 -0.630 -0.625 -0.619 -0.586 -0.610 -0.640 -0.623 + -0.637 -0.619 -0.639 -0.633 -0.622 -0.607 -0.590 -0.587 -0.629 -0.595 + -0.599 -0.589 -0.619 -0.593 -0.602 -0.602 -0.596 -0.580 -0.602 -0.589 + -0.564 -0.554 -0.563 -0.533 -0.545 -0.541 -0.526 -0.496 -0.519 -0.468 + -0.469 -0.434 -0.459 -0.389 -0.343 -0.358 -0.265 -0.272 -0.337 -0.211 + + 930 airs281SUBSET_aqua 1069 -0.872178E-02 + -0.398 -0.444 -0.358 -0.382 -0.426 -0.403 -0.439 -0.419 -0.429 -0.434 + -0.455 -0.410 -0.439 -0.452 -0.482 -0.475 -0.472 -0.500 -0.502 -0.522 + -0.473 -0.535 -0.529 -0.515 -0.522 -0.511 -0.555 -0.526 -0.537 -0.524 + -0.551 -0.531 -0.525 -0.527 -0.533 -0.547 -0.537 -0.567 -0.511 -0.519 + -0.516 -0.557 -0.524 -0.518 -0.506 -0.509 -0.490 -0.522 -0.537 -0.512 + -0.532 -0.518 -0.522 -0.526 -0.523 -0.502 -0.478 -0.477 -0.518 -0.480 + -0.502 -0.481 -0.508 -0.483 -0.504 -0.490 -0.483 -0.484 -0.497 -0.483 + -0.468 -0.468 -0.478 -0.439 -0.461 -0.460 -0.456 -0.436 -0.459 -0.417 + -0.427 -0.415 -0.448 -0.400 -0.377 -0.418 -0.346 -0.377 -0.494 -0.400 + + 931 airs281SUBSET_aqua 1079 -0.177122E-01 + -0.734 -0.782 -0.720 -0.749 -0.794 -0.771 -0.806 -0.773 -0.778 -0.785 + -0.786 -0.752 -0.767 -0.769 -0.787 -0.773 -0.770 -0.786 -0.767 -0.785 + -0.745 -0.799 -0.789 -0.768 -0.760 -0.755 -0.793 -0.758 -0.752 -0.747 + -0.767 -0.744 -0.740 -0.745 -0.741 -0.753 -0.747 -0.767 -0.718 -0.731 + -0.715 -0.762 -0.717 -0.721 -0.708 -0.704 -0.690 -0.710 -0.739 -0.716 + -0.742 -0.726 -0.732 -0.736 -0.727 -0.715 -0.696 -0.697 -0.735 -0.711 + -0.720 -0.710 -0.739 -0.720 -0.741 -0.746 -0.742 -0.733 -0.762 -0.749 + -0.741 -0.745 -0.761 -0.747 -0.761 -0.770 -0.779 -0.760 -0.793 -0.757 + -0.786 -0.762 -0.808 -0.767 -0.744 -0.782 -0.724 -0.750 -0.828 -0.735 + + 932 airs281SUBSET_aqua 1082 -0.183004E-01 + -0.486 -0.540 -0.490 -0.534 -0.588 -0.577 -0.626 -0.611 -0.624 -0.634 + -0.653 -0.630 -0.657 -0.656 -0.690 -0.685 -0.694 -0.711 -0.700 -0.725 + -0.684 -0.741 -0.738 -0.720 -0.718 -0.709 -0.758 -0.726 -0.722 -0.719 + -0.739 -0.715 -0.710 -0.733 -0.720 -0.746 -0.738 -0.753 -0.706 -0.712 + -0.699 -0.753 -0.708 -0.706 -0.699 -0.703 -0.684 -0.708 -0.718 -0.699 + -0.732 -0.714 -0.720 -0.729 -0.710 -0.700 -0.686 -0.676 -0.718 -0.692 + -0.704 -0.697 -0.716 -0.705 -0.710 -0.714 -0.718 -0.696 -0.723 -0.709 + -0.682 -0.692 -0.698 -0.679 -0.684 -0.688 -0.690 -0.659 -0.687 -0.639 + -0.656 -0.631 -0.663 -0.610 -0.575 -0.600 -0.524 -0.538 -0.600 -0.501 + + 933 airs281SUBSET_aqua 1083 -0.187135E-01 + -0.683 -0.749 -0.713 -0.757 -0.810 -0.810 -0.858 -0.828 -0.852 -0.871 + -0.882 -0.851 -0.883 -0.878 -0.910 -0.913 -0.911 -0.925 -0.913 -0.941 + -0.902 -0.948 -0.944 -0.928 -0.928 -0.922 -0.960 -0.925 -0.925 -0.918 + -0.943 -0.930 -0.909 -0.939 -0.918 -0.930 -0.944 -0.956 -0.904 -0.913 + -0.901 -0.958 -0.905 -0.901 -0.905 -0.901 -0.878 -0.892 -0.919 -0.898 + -0.929 -0.905 -0.912 -0.921 -0.910 -0.904 -0.892 -0.885 -0.915 -0.892 + -0.915 -0.888 -0.925 -0.905 -0.918 -0.921 -0.923 -0.894 -0.928 -0.929 + -0.898 -0.908 -0.915 -0.888 -0.905 -0.904 -0.905 -0.878 -0.911 -0.866 + -0.880 -0.857 -0.883 -0.837 -0.797 -0.819 -0.747 -0.753 -0.808 -0.703 + + 934 airs281SUBSET_aqua 1088 -0.207405E-01 + -0.917 -0.972 -0.930 -0.974 -1.023 -1.001 -1.054 -1.031 -1.059 -1.082 + -1.087 -1.050 -1.088 -1.086 -1.110 -1.120 -1.137 -1.133 -1.130 -1.152 + -1.112 -1.146 -1.157 -1.137 -1.128 -1.133 -1.172 -1.142 -1.155 -1.138 + -1.171 -1.139 -1.135 -1.148 -1.143 -1.152 -1.153 -1.176 -1.134 -1.141 + -1.125 -1.170 -1.139 -1.133 -1.122 -1.131 -1.109 -1.133 -1.161 -1.142 + -1.162 -1.150 -1.143 -1.154 -1.141 -1.134 -1.122 -1.123 -1.158 -1.130 + -1.149 -1.119 -1.159 -1.139 -1.151 -1.160 -1.162 -1.128 -1.176 -1.168 + -1.145 -1.153 -1.153 -1.130 -1.136 -1.145 -1.144 -1.112 -1.139 -1.105 + -1.116 -1.091 -1.118 -1.081 -1.033 -1.060 -0.994 -0.998 -1.052 -0.972 + + 935 airs281SUBSET_aqua 1090 -0.213788E-01 + -1.087 -1.147 -1.105 -1.152 -1.206 -1.192 -1.261 -1.243 -1.259 -1.276 + -1.291 -1.267 -1.306 -1.287 -1.326 -1.334 -1.333 -1.346 -1.342 -1.371 + -1.339 -1.376 -1.380 -1.370 -1.350 -1.358 -1.394 -1.366 -1.375 -1.369 + -1.383 -1.369 -1.360 -1.387 -1.364 -1.388 -1.377 -1.406 -1.359 -1.370 + -1.350 -1.404 -1.364 -1.365 -1.350 -1.352 -1.339 -1.353 -1.381 -1.364 + -1.388 -1.377 -1.366 -1.391 -1.379 -1.364 -1.358 -1.339 -1.384 -1.368 + -1.372 -1.349 -1.391 -1.378 -1.370 -1.387 -1.381 -1.355 -1.386 -1.384 + -1.364 -1.369 -1.380 -1.347 -1.357 -1.359 -1.347 -1.328 -1.353 -1.313 + -1.315 -1.284 -1.312 -1.277 -1.221 -1.251 -1.178 -1.177 -1.234 -1.143 + + 936 airs281SUBSET_aqua 1092 -0.204653E-01 + -1.157 -1.223 -1.187 -1.225 -1.285 -1.270 -1.328 -1.321 -1.338 -1.344 + -1.367 -1.327 -1.383 -1.365 -1.396 -1.411 -1.406 -1.429 -1.411 -1.437 + -1.413 -1.445 -1.454 -1.442 -1.421 -1.424 -1.471 -1.432 -1.456 -1.442 + -1.468 -1.460 -1.438 -1.462 -1.437 -1.461 -1.458 -1.489 -1.445 -1.459 + -1.438 -1.480 -1.448 -1.456 -1.426 -1.441 -1.428 -1.441 -1.482 -1.447 + -1.470 -1.463 -1.454 -1.470 -1.447 -1.450 -1.423 -1.413 -1.467 -1.431 + -1.453 -1.436 -1.476 -1.454 -1.447 -1.459 -1.466 -1.437 -1.455 -1.454 + -1.441 -1.446 -1.450 -1.425 -1.429 -1.438 -1.424 -1.395 -1.424 -1.386 + -1.390 -1.370 -1.380 -1.360 -1.295 -1.328 -1.252 -1.262 -1.308 -1.223 + + 937 airs281SUBSET_aqua 1095 0.193837E-02 + -0.310 -0.344 -0.226 -0.215 -0.246 -0.183 -0.209 -0.180 -0.182 -0.169 + -0.195 -0.137 -0.155 -0.173 -0.180 -0.172 -0.173 -0.218 -0.204 -0.213 + -0.164 -0.229 -0.227 -0.195 -0.235 -0.208 -0.236 -0.236 -0.226 -0.228 + -0.256 -0.229 -0.221 -0.213 -0.225 -0.230 -0.227 -0.250 -0.201 -0.200 + -0.211 -0.236 -0.198 -0.211 -0.189 -0.207 -0.177 -0.198 -0.207 -0.205 + -0.177 -0.186 -0.194 -0.171 -0.181 -0.180 -0.129 -0.153 -0.172 -0.141 + -0.152 -0.144 -0.157 -0.127 -0.155 -0.126 -0.099 -0.134 -0.121 -0.111 + -0.118 -0.073 -0.079 -0.076 -0.074 -0.077 -0.099 -0.056 -0.095 -0.089 + -0.067 -0.057 -0.121 -0.078 -0.061 -0.130 -0.074 -0.139 -0.303 -0.208 + + 938 airs281SUBSET_aqua 1104 -0.173167E-01 + 0.474 0.418 0.445 0.412 0.367 0.360 0.310 0.351 0.311 0.281 + 0.284 0.290 0.265 0.251 0.212 0.219 0.195 0.216 0.206 0.165 + 0.205 0.149 0.165 0.160 0.155 0.174 0.119 0.155 0.125 0.164 + 0.141 0.145 0.154 0.132 0.135 0.140 0.138 0.109 0.158 0.163 + 0.166 0.105 0.166 0.183 0.158 0.172 0.183 0.175 0.167 0.167 + 0.112 0.156 0.157 0.136 0.154 0.174 0.162 0.197 0.170 0.169 + 0.165 0.194 0.154 0.174 0.162 0.157 0.156 0.178 0.150 0.173 + 0.223 0.205 0.169 0.227 0.202 0.207 0.242 0.237 0.232 0.296 + 0.252 0.280 0.264 0.320 0.346 0.319 0.393 0.377 0.333 0.419 + + 939 airs281SUBSET_aqua 1111 -0.121573E-01 + 0.450 0.389 0.402 0.361 0.302 0.286 0.216 0.228 0.201 0.168 + 0.145 0.163 0.129 0.111 0.065 0.069 0.064 0.047 0.026 0.002 + 0.039 -0.009 -0.015 0.001 -0.007 -0.005 -0.050 -0.014 -0.005 0.000 + -0.033 -0.006 0.009 -0.038 -0.025 -0.035 -0.036 -0.045 -0.006 -0.008 + -0.012 -0.049 -0.006 -0.002 -0.011 0.005 0.018 -0.010 -0.015 0.005 + -0.014 0.018 0.003 -0.014 0.011 0.038 0.032 0.062 0.029 0.046 + 0.040 0.059 0.027 0.052 0.050 0.055 0.054 0.083 0.065 0.078 + 0.116 0.114 0.097 0.138 0.141 0.142 0.165 0.181 0.175 0.239 + 0.232 0.269 0.254 0.319 0.359 0.355 0.445 0.444 0.389 0.506 + + 940 airs281SUBSET_aqua 1115 -0.127597E-01 + 0.348 0.267 0.278 0.207 0.128 0.110 0.028 0.052 0.014 -0.014 + -0.041 -0.023 -0.059 -0.078 -0.119 -0.117 -0.127 -0.155 -0.162 -0.187 + -0.152 -0.214 -0.210 -0.192 -0.208 -0.199 -0.253 -0.205 -0.207 -0.189 + -0.244 -0.213 -0.191 -0.240 -0.214 -0.237 -0.229 -0.242 -0.192 -0.205 + -0.205 -0.246 -0.202 -0.210 -0.213 -0.200 -0.165 -0.201 -0.205 -0.199 + -0.209 -0.170 -0.201 -0.198 -0.181 -0.154 -0.162 -0.142 -0.175 -0.152 + -0.152 -0.140 -0.165 -0.120 -0.135 -0.125 -0.124 -0.095 -0.118 -0.103 + -0.060 -0.055 -0.078 -0.033 -0.037 -0.025 -0.013 0.025 0.007 0.064 + 0.067 0.109 0.103 0.162 0.215 0.224 0.325 0.337 0.292 0.443 + + 941 airs281SUBSET_aqua 1116 -0.110238E-01 + 0.131 0.091 0.160 0.135 0.105 0.113 0.086 0.126 0.116 0.099 + 0.093 0.130 0.110 0.100 0.073 0.084 0.072 0.065 0.063 0.040 + 0.085 0.029 0.037 0.045 0.040 0.061 -0.000 0.055 0.050 0.046 + 0.021 0.040 0.055 0.035 0.051 0.026 0.033 0.023 0.064 0.061 + 0.064 0.019 0.067 0.063 0.069 0.076 0.093 0.083 0.060 0.080 + 0.063 0.089 0.076 0.077 0.082 0.110 0.121 0.122 0.107 0.120 + 0.118 0.128 0.117 0.142 0.121 0.137 0.146 0.153 0.128 0.152 + 0.169 0.182 0.161 0.188 0.185 0.184 0.188 0.211 0.192 0.220 + 0.210 0.228 0.196 0.235 0.265 0.221 0.277 0.242 0.152 0.250 + + 942 airs281SUBSET_aqua 1119 -0.903365E-02 + 0.047 -0.011 0.068 0.044 -0.007 0.022 -0.031 0.007 -0.010 -0.016 + -0.040 0.007 -0.017 -0.035 -0.058 -0.051 -0.050 -0.073 -0.075 -0.084 + -0.040 -0.113 -0.106 -0.081 -0.107 -0.082 -0.126 -0.096 -0.091 -0.086 + -0.116 -0.096 -0.081 -0.096 -0.076 -0.096 -0.086 -0.107 -0.055 -0.055 + -0.067 -0.096 -0.054 -0.059 -0.052 -0.050 -0.022 -0.044 -0.057 -0.039 + -0.044 -0.029 -0.039 -0.024 -0.030 -0.014 0.002 0.000 -0.016 0.001 + 0.001 0.015 -0.003 0.029 0.013 0.025 0.028 0.028 0.016 0.033 + 0.062 0.077 0.058 0.086 0.079 0.082 0.071 0.110 0.079 0.120 + 0.111 0.134 0.104 0.158 0.178 0.149 0.219 0.185 0.084 0.202 + + 943 airs281SUBSET_aqua 1120 -0.870147E-02 + 0.107 0.042 0.117 0.091 0.034 0.056 0.016 0.053 0.026 0.035 + -0.004 0.039 0.026 0.004 -0.018 0.001 0.003 -0.021 -0.017 -0.032 + 0.011 -0.062 -0.059 -0.030 -0.068 -0.038 -0.070 -0.048 -0.026 -0.024 + -0.066 -0.032 -0.032 -0.033 -0.030 -0.040 -0.029 -0.048 -0.003 0.003 + -0.003 -0.059 0.005 0.007 0.023 0.015 0.045 0.009 -0.006 0.011 + 0.018 0.032 0.009 0.043 0.036 0.041 0.056 0.071 0.047 0.061 + 0.068 0.075 0.048 0.090 0.082 0.089 0.087 0.087 0.075 0.093 + 0.119 0.140 0.119 0.131 0.140 0.143 0.136 0.168 0.146 0.172 + 0.177 0.200 0.177 0.223 0.251 0.220 0.290 0.263 0.154 0.287 + + 944 airs281SUBSET_aqua 1123 -0.249048E-02 + -0.017 -0.080 0.022 -0.001 -0.039 -0.005 -0.045 -0.018 -0.024 -0.027 + -0.058 -0.008 -0.023 -0.048 -0.069 -0.053 -0.051 -0.089 -0.087 -0.097 + -0.057 -0.120 -0.120 -0.088 -0.123 -0.102 -0.132 -0.114 -0.106 -0.113 + -0.141 -0.106 -0.102 -0.102 -0.094 -0.109 -0.106 -0.127 -0.071 -0.070 + -0.082 -0.116 -0.068 -0.075 -0.059 -0.063 -0.028 -0.063 -0.059 -0.057 + -0.039 -0.039 -0.057 -0.026 -0.032 -0.018 0.002 0.002 -0.021 0.008 + 0.005 0.019 0.005 0.044 0.010 0.040 0.054 0.038 0.040 0.056 + 0.067 0.103 0.089 0.110 0.106 0.107 0.095 0.141 0.117 0.135 + 0.149 0.166 0.125 0.185 0.197 0.156 0.229 0.187 0.052 0.175 + + 945 airs281SUBSET_aqua 1130 0.155526E-02 + -0.087 -0.136 -0.019 -0.036 -0.072 -0.021 -0.055 -0.046 -0.036 -0.037 + -0.071 -0.006 -0.026 -0.055 -0.061 -0.065 -0.047 -0.103 -0.097 -0.097 + -0.062 -0.134 -0.131 -0.095 -0.141 -0.112 -0.142 -0.136 -0.115 -0.129 + -0.154 -0.123 -0.123 -0.107 -0.116 -0.121 -0.120 -0.140 -0.089 -0.086 + -0.108 -0.126 -0.082 -0.101 -0.070 -0.075 -0.046 -0.072 -0.086 -0.083 + -0.047 -0.055 -0.072 -0.029 -0.048 -0.040 0.003 -0.016 -0.038 0.001 + 0.001 0.007 -0.007 0.034 0.008 0.039 0.068 0.039 0.043 0.060 + 0.058 0.113 0.105 0.109 0.119 0.119 0.103 0.158 0.128 0.133 + 0.166 0.182 0.132 0.191 0.210 0.164 0.230 0.178 0.028 0.145 + + 946 airs281SUBSET_aqua 1138 0.861000E-02 + -0.182 -0.224 -0.080 -0.075 -0.109 -0.038 -0.067 -0.057 -0.040 -0.036 + -0.072 -0.016 -0.028 -0.053 -0.067 -0.061 -0.054 -0.111 -0.111 -0.117 + -0.072 -0.142 -0.144 -0.106 -0.159 -0.124 -0.150 -0.158 -0.154 -0.165 + -0.187 -0.153 -0.158 -0.136 -0.152 -0.160 -0.152 -0.181 -0.130 -0.121 + -0.142 -0.161 -0.128 -0.144 -0.110 -0.122 -0.089 -0.111 -0.124 -0.128 + -0.087 -0.100 -0.110 -0.069 -0.087 -0.088 -0.039 -0.054 -0.083 -0.034 + -0.043 -0.033 -0.033 -0.005 -0.029 0.005 0.034 0.003 0.014 0.032 + 0.021 0.082 0.076 0.080 0.097 0.092 0.070 0.128 0.105 0.092 + 0.130 0.144 0.087 0.139 0.151 0.084 0.153 0.081 -0.100 0.005 + + 947 airs281SUBSET_aqua 1142 0.183802E-01 + 0.170 0.133 0.241 0.237 0.185 0.254 0.227 0.215 0.234 0.216 + 0.195 0.223 0.192 0.173 0.159 0.157 0.171 0.123 0.127 0.088 + 0.135 0.079 0.061 0.093 0.064 0.073 0.047 0.053 0.039 0.046 + 0.001 0.055 0.034 0.060 0.045 0.036 0.025 0.025 0.062 0.070 + 0.040 0.039 0.062 0.046 0.063 0.060 0.094 0.050 0.079 0.056 + 0.098 0.088 0.092 0.104 0.110 0.102 0.124 0.123 0.107 0.136 + 0.131 0.143 0.157 0.166 0.141 0.189 0.201 0.175 0.212 0.210 + 0.202 0.248 0.256 0.274 0.289 0.289 0.262 0.314 0.306 0.303 + 0.340 0.347 0.316 0.364 0.383 0.320 0.393 0.340 0.187 0.289 + + 948 airs281SUBSET_aqua 1178 0.424570E-02 + -0.814 -0.836 -0.661 -0.656 -0.666 -0.584 -0.602 -0.585 -0.549 -0.530 + -0.559 -0.479 -0.483 -0.509 -0.514 -0.509 -0.476 -0.540 -0.524 -0.522 + -0.477 -0.549 -0.543 -0.500 -0.545 -0.502 -0.528 -0.533 -0.508 -0.531 + -0.547 -0.512 -0.512 -0.489 -0.503 -0.500 -0.501 -0.526 -0.475 -0.475 + -0.495 -0.510 -0.467 -0.491 -0.447 -0.462 -0.431 -0.460 -0.475 -0.480 + -0.436 -0.456 -0.465 -0.427 -0.451 -0.454 -0.398 -0.424 -0.459 -0.412 + -0.421 -0.422 -0.433 -0.405 -0.433 -0.397 -0.369 -0.420 -0.416 -0.402 + -0.427 -0.363 -0.380 -0.394 -0.386 -0.391 -0.423 -0.373 -0.411 -0.427 + -0.400 -0.393 -0.469 -0.423 -0.426 -0.502 -0.454 -0.540 -0.750 -0.656 + + 949 airs281SUBSET_aqua 1199 0.409394E-02 + -1.308 -1.311 -1.119 -1.093 -1.095 -0.996 -0.995 -0.973 -0.922 -0.894 + -0.924 -0.838 -0.839 -0.855 -0.843 -0.834 -0.807 -0.867 -0.836 -0.828 + -0.788 -0.849 -0.845 -0.800 -0.837 -0.782 -0.807 -0.809 -0.785 -0.814 + -0.823 -0.785 -0.776 -0.759 -0.765 -0.764 -0.761 -0.788 -0.737 -0.736 + -0.750 -0.765 -0.724 -0.746 -0.698 -0.721 -0.683 -0.704 -0.729 -0.731 + -0.690 -0.716 -0.729 -0.675 -0.710 -0.713 -0.662 -0.689 -0.724 -0.682 + -0.686 -0.696 -0.699 -0.679 -0.709 -0.678 -0.650 -0.698 -0.700 -0.694 + -0.726 -0.658 -0.682 -0.693 -0.688 -0.704 -0.747 -0.702 -0.742 -0.779 + -0.744 -0.753 -0.839 -0.800 -0.807 -0.900 -0.863 -0.969 -1.197 -1.121 + + 950 airs281SUBSET_aqua 1206 0.213150E-01 + -0.555 -0.551 -0.399 -0.385 -0.401 -0.305 -0.310 -0.308 -0.277 -0.266 + -0.280 -0.244 -0.260 -0.273 -0.274 -0.269 -0.256 -0.299 -0.284 -0.332 + -0.280 -0.309 -0.338 -0.305 -0.323 -0.324 -0.340 -0.331 -0.356 -0.339 + -0.379 -0.330 -0.354 -0.323 -0.330 -0.351 -0.363 -0.366 -0.322 -0.313 + -0.345 -0.338 -0.322 -0.351 -0.327 -0.326 -0.281 -0.338 -0.309 -0.341 + -0.288 -0.300 -0.299 -0.285 -0.273 -0.287 -0.266 -0.267 -0.289 -0.266 + -0.267 -0.254 -0.238 -0.232 -0.260 -0.225 -0.209 -0.236 -0.201 -0.211 + -0.229 -0.187 -0.178 -0.163 -0.152 -0.153 -0.193 -0.156 -0.168 -0.190 + -0.156 -0.168 -0.218 -0.187 -0.192 -0.277 -0.233 -0.299 -0.510 -0.443 + + 951 airs281SUBSET_aqua 1221 0.360485E-02 + -0.857 -0.874 -0.692 -0.684 -0.695 -0.609 -0.621 -0.602 -0.567 -0.546 + -0.579 -0.497 -0.499 -0.531 -0.524 -0.512 -0.492 -0.554 -0.525 -0.530 + -0.480 -0.550 -0.546 -0.501 -0.545 -0.502 -0.522 -0.532 -0.498 -0.521 + -0.543 -0.510 -0.496 -0.478 -0.485 -0.489 -0.486 -0.515 -0.461 -0.463 + -0.476 -0.493 -0.454 -0.472 -0.424 -0.448 -0.408 -0.436 -0.456 -0.458 + -0.408 -0.434 -0.446 -0.403 -0.419 -0.424 -0.374 -0.399 -0.436 -0.385 + -0.392 -0.392 -0.409 -0.380 -0.403 -0.365 -0.347 -0.388 -0.385 -0.376 + -0.400 -0.327 -0.355 -0.360 -0.351 -0.357 -0.398 -0.343 -0.378 -0.403 + -0.366 -0.362 -0.436 -0.394 -0.393 -0.471 -0.427 -0.512 -0.726 -0.632 + + 952 airs281SUBSET_aqua 1237 0.386926E-02 + -0.569 -0.603 -0.419 -0.419 -0.434 -0.368 -0.379 -0.357 -0.331 -0.313 + -0.347 -0.267 -0.289 -0.312 -0.312 -0.310 -0.289 -0.352 -0.322 -0.324 + -0.279 -0.353 -0.351 -0.314 -0.354 -0.301 -0.331 -0.342 -0.313 -0.343 + -0.356 -0.321 -0.319 -0.293 -0.310 -0.297 -0.302 -0.348 -0.274 -0.265 + -0.283 -0.313 -0.263 -0.291 -0.238 -0.266 -0.232 -0.252 -0.278 -0.265 + -0.233 -0.252 -0.256 -0.219 -0.241 -0.244 -0.186 -0.210 -0.251 -0.193 + -0.212 -0.209 -0.221 -0.184 -0.207 -0.167 -0.139 -0.191 -0.191 -0.175 + -0.193 -0.124 -0.145 -0.156 -0.130 -0.149 -0.167 -0.122 -0.149 -0.174 + -0.117 -0.131 -0.194 -0.156 -0.142 -0.210 -0.165 -0.237 -0.449 -0.344 + + 953 airs281SUBSET_aqua 1252 0.291412E-02 + -0.203 -0.242 -0.086 -0.089 -0.120 -0.047 -0.074 -0.069 -0.042 -0.030 + -0.075 0.007 -0.009 -0.044 -0.054 -0.052 -0.043 -0.108 -0.082 -0.086 + -0.044 -0.125 -0.112 -0.076 -0.131 -0.077 -0.101 -0.117 -0.092 -0.128 + -0.132 -0.111 -0.102 -0.074 -0.094 -0.083 -0.093 -0.115 -0.065 -0.062 + -0.083 -0.103 -0.058 -0.081 -0.024 -0.053 -0.006 -0.031 -0.061 -0.060 + -0.030 -0.045 -0.056 -0.001 -0.031 -0.026 0.017 -0.003 -0.039 0.010 + 0.014 0.006 0.007 0.034 0.012 0.040 0.076 0.030 0.030 0.043 + 0.034 0.099 0.086 0.080 0.089 0.102 0.061 0.126 0.091 0.072 + 0.122 0.134 0.065 0.121 0.134 0.075 0.134 0.063 -0.117 -0.017 + + 954 airs281SUBSET_aqua 1260 0.324888E-01 + 0.200 0.225 0.323 0.316 0.285 0.385 0.367 0.357 0.408 0.392 + 0.378 0.399 0.383 0.390 0.400 0.402 0.420 0.402 0.411 0.343 + 0.391 0.394 0.374 0.380 0.391 0.383 0.370 0.374 0.350 0.374 + 0.334 0.416 0.352 0.396 0.400 0.369 0.377 0.397 0.413 0.439 + 0.387 0.404 0.429 0.397 0.414 0.408 0.473 0.399 0.465 0.385 + 0.449 0.424 0.441 0.411 0.458 0.437 0.434 0.448 0.440 0.399 + 0.438 0.434 0.465 0.454 0.406 0.434 0.399 0.409 0.456 0.426 + 0.392 0.427 0.453 0.474 0.448 0.471 0.420 0.442 0.431 0.420 + 0.446 0.423 0.375 0.427 0.405 0.349 0.396 0.341 0.189 0.239 + + 955 airs281SUBSET_aqua 1263 0.111421E-01 + -0.293 -0.326 -0.163 -0.157 -0.182 -0.098 -0.122 -0.113 -0.089 -0.078 + -0.109 -0.059 -0.069 -0.096 -0.093 -0.096 -0.078 -0.148 -0.135 -0.153 + -0.105 -0.169 -0.177 -0.134 -0.185 -0.152 -0.182 -0.190 -0.182 -0.190 + -0.225 -0.181 -0.190 -0.170 -0.183 -0.201 -0.198 -0.228 -0.177 -0.176 + -0.198 -0.210 -0.181 -0.205 -0.169 -0.184 -0.154 -0.192 -0.197 -0.207 + -0.161 -0.180 -0.191 -0.159 -0.179 -0.180 -0.139 -0.156 -0.188 -0.145 + -0.161 -0.157 -0.166 -0.133 -0.167 -0.131 -0.106 -0.143 -0.133 -0.119 + -0.145 -0.079 -0.091 -0.089 -0.083 -0.094 -0.119 -0.068 -0.098 -0.115 + -0.078 -0.073 -0.127 -0.086 -0.082 -0.164 -0.099 -0.186 -0.386 -0.284 + + 956 airs281SUBSET_aqua 1266 0.389384E-01 + -0.053 -0.036 0.072 0.079 0.043 0.131 0.115 0.117 0.143 0.129 + 0.107 0.117 0.099 0.102 0.107 0.106 0.108 0.093 0.100 0.037 + 0.067 0.071 0.046 0.059 0.065 0.036 0.026 0.018 -0.003 0.010 + -0.033 0.041 -0.019 0.020 0.014 -0.025 -0.023 0.002 0.037 0.039 + -0.022 0.019 0.016 -0.007 0.011 0.003 0.055 -0.022 0.049 -0.014 + 0.039 0.004 0.029 0.000 0.057 0.038 0.035 0.034 0.031 -0.000 + 0.035 0.033 0.073 0.053 0.020 0.061 0.041 0.040 0.105 0.065 + 0.026 0.079 0.111 0.125 0.114 0.146 0.099 0.114 0.130 0.111 + 0.135 0.127 0.079 0.141 0.119 0.057 0.103 0.051 -0.093 -0.049 + + 957 airs281SUBSET_aqua 1285 0.108496E-01 + -0.357 -0.385 -0.226 -0.219 -0.240 -0.167 -0.184 -0.178 -0.150 -0.137 + -0.172 -0.112 -0.119 -0.149 -0.144 -0.142 -0.122 -0.195 -0.177 -0.195 + -0.147 -0.213 -0.217 -0.171 -0.222 -0.185 -0.212 -0.221 -0.208 -0.223 + -0.249 -0.211 -0.214 -0.195 -0.210 -0.223 -0.218 -0.248 -0.196 -0.198 + -0.218 -0.232 -0.203 -0.223 -0.187 -0.202 -0.175 -0.208 -0.220 -0.227 + -0.183 -0.203 -0.218 -0.182 -0.202 -0.206 -0.161 -0.183 -0.218 -0.170 + -0.189 -0.186 -0.197 -0.165 -0.198 -0.168 -0.139 -0.178 -0.175 -0.161 + -0.189 -0.123 -0.139 -0.139 -0.132 -0.143 -0.175 -0.122 -0.152 -0.174 + -0.137 -0.131 -0.190 -0.153 -0.147 -0.226 -0.165 -0.248 -0.444 -0.348 + + 958 airs281SUBSET_aqua 1301 0.271170E-01 + 0.015 -0.011 0.106 0.109 0.073 0.130 0.111 0.118 0.120 0.127 + 0.099 0.127 0.111 0.086 0.079 0.074 0.077 0.029 0.025 -0.009 + 0.031 -0.010 -0.038 -0.001 -0.043 -0.032 -0.057 -0.062 -0.076 -0.080 + -0.123 -0.074 -0.097 -0.071 -0.083 -0.112 -0.109 -0.122 -0.080 -0.087 + -0.112 -0.117 -0.104 -0.110 -0.095 -0.097 -0.066 -0.119 -0.100 -0.118 + -0.082 -0.086 -0.083 -0.072 -0.070 -0.079 -0.041 -0.053 -0.082 -0.049 + -0.053 -0.043 -0.036 -0.019 -0.053 -0.009 0.013 -0.015 0.012 0.024 + 0.002 0.058 0.059 0.081 0.087 0.088 0.069 0.106 0.100 0.098 + 0.123 0.128 0.105 0.135 0.142 0.088 0.144 0.094 -0.070 0.032 + + 959 airs281SUBSET_aqua 1304 0.177531E-01 + -0.555 -0.587 -0.438 -0.429 -0.451 -0.383 -0.394 -0.385 -0.362 -0.345 + -0.379 -0.326 -0.331 -0.359 -0.351 -0.351 -0.332 -0.398 -0.385 -0.402 + -0.360 -0.418 -0.427 -0.384 -0.431 -0.399 -0.421 -0.430 -0.424 -0.438 + -0.465 -0.428 -0.435 -0.417 -0.433 -0.445 -0.442 -0.470 -0.418 -0.422 + -0.443 -0.454 -0.430 -0.447 -0.418 -0.429 -0.399 -0.434 -0.442 -0.451 + -0.408 -0.427 -0.435 -0.409 -0.423 -0.424 -0.382 -0.403 -0.434 -0.391 + -0.406 -0.403 -0.410 -0.381 -0.414 -0.382 -0.353 -0.390 -0.380 -0.370 + -0.401 -0.339 -0.349 -0.346 -0.343 -0.350 -0.374 -0.337 -0.361 -0.378 + -0.345 -0.344 -0.392 -0.363 -0.362 -0.432 -0.378 -0.450 -0.633 -0.542 + + 960 airs281SUBSET_aqua 1329 0.266378E-01 + 0.015 -0.006 0.116 0.119 0.081 0.157 0.144 0.139 0.166 0.168 + 0.142 0.170 0.150 0.136 0.139 0.127 0.144 0.101 0.102 0.057 + 0.101 0.064 0.036 0.069 0.038 0.043 0.019 0.017 -0.005 0.000 + -0.042 0.001 -0.032 0.003 -0.006 -0.041 -0.037 -0.048 -0.016 -0.014 + -0.043 -0.037 -0.028 -0.050 -0.031 -0.033 0.007 -0.046 -0.019 -0.053 + -0.008 -0.013 -0.011 -0.009 0.011 -0.002 0.021 0.023 -0.006 0.015 + 0.025 0.031 0.045 0.060 0.025 0.067 0.078 0.054 0.094 0.094 + 0.069 0.123 0.137 0.146 0.151 0.154 0.118 0.162 0.149 0.141 + 0.167 0.165 0.128 0.174 0.169 0.104 0.161 0.107 -0.063 0.028 + + 961 airs281SUBSET_aqua 1371 0.318514E-01 + -0.807 -0.803 -0.679 -0.664 -0.684 -0.593 -0.594 -0.592 -0.556 -0.543 + -0.555 -0.522 -0.537 -0.534 -0.534 -0.527 -0.508 -0.521 -0.525 -0.565 + -0.521 -0.533 -0.563 -0.523 -0.538 -0.542 -0.556 -0.554 -0.573 -0.556 + -0.599 -0.543 -0.584 -0.534 -0.541 -0.574 -0.570 -0.570 -0.534 -0.535 + -0.570 -0.560 -0.541 -0.566 -0.547 -0.557 -0.507 -0.582 -0.538 -0.574 + -0.536 -0.547 -0.538 -0.545 -0.513 -0.538 -0.529 -0.524 -0.550 -0.550 + -0.552 -0.537 -0.529 -0.523 -0.566 -0.533 -0.533 -0.562 -0.522 -0.540 + -0.574 -0.525 -0.518 -0.511 -0.513 -0.523 -0.566 -0.541 -0.555 -0.573 + -0.557 -0.571 -0.616 -0.586 -0.606 -0.675 -0.646 -0.707 -0.882 -0.813 + + 962 airs281SUBSET_aqua 1382 0.359513E-01 + -0.481 -0.506 -0.436 -0.434 -0.466 -0.422 -0.436 -0.431 -0.419 -0.418 + -0.434 -0.411 -0.421 -0.430 -0.434 -0.434 -0.418 -0.437 -0.451 -0.475 + -0.446 -0.462 -0.485 -0.447 -0.467 -0.464 -0.481 -0.479 -0.494 -0.484 + -0.517 -0.481 -0.505 -0.478 -0.482 -0.504 -0.499 -0.505 -0.477 -0.478 + -0.505 -0.498 -0.480 -0.495 -0.484 -0.496 -0.459 -0.508 -0.479 -0.509 + -0.482 -0.481 -0.479 -0.479 -0.467 -0.480 -0.469 -0.465 -0.484 -0.477 + -0.480 -0.468 -0.473 -0.453 -0.487 -0.457 -0.451 -0.483 -0.454 -0.450 + -0.482 -0.444 -0.437 -0.426 -0.425 -0.441 -0.461 -0.437 -0.446 -0.450 + -0.433 -0.434 -0.453 -0.428 -0.434 -0.468 -0.432 -0.463 -0.571 -0.490 + + 963 airs281SUBSET_aqua 1415 0.399963E-01 + -0.065 -0.099 -0.021 -0.024 -0.072 -0.022 -0.036 -0.031 -0.024 -0.024 + -0.028 -0.015 -0.023 -0.023 -0.037 -0.029 -0.018 -0.016 -0.030 -0.075 + -0.042 -0.049 -0.079 -0.039 -0.063 -0.066 -0.087 -0.078 -0.122 -0.086 + -0.142 -0.077 -0.135 -0.092 -0.090 -0.144 -0.122 -0.114 -0.084 -0.082 + -0.132 -0.115 -0.090 -0.107 -0.114 -0.126 -0.074 -0.158 -0.082 -0.121 + -0.101 -0.103 -0.084 -0.113 -0.064 -0.084 -0.088 -0.061 -0.093 -0.107 + -0.089 -0.075 -0.053 -0.049 -0.101 -0.061 -0.070 -0.097 -0.027 -0.057 + -0.077 -0.042 -0.036 -0.002 -0.037 -0.016 -0.046 -0.046 -0.036 -0.039 + -0.035 -0.051 -0.054 -0.033 -0.041 -0.085 -0.036 -0.066 -0.159 -0.088 + + 964 airs281SUBSET_aqua 1424 0.513717E-01 + -0.017 0.002 0.095 0.108 0.086 0.152 0.110 0.133 0.165 0.162 + 0.169 0.162 0.152 0.164 0.200 0.172 0.171 0.185 0.204 0.141 + 0.175 0.183 0.176 0.173 0.166 0.157 0.152 0.160 0.136 0.131 + 0.135 0.167 0.129 0.162 0.184 0.105 0.149 0.178 0.180 0.170 + 0.149 0.167 0.143 0.168 0.144 0.137 0.201 0.118 0.223 0.152 + 0.167 0.118 0.152 0.172 0.202 0.201 0.145 0.176 0.168 0.109 + 0.183 0.168 0.213 0.174 0.139 0.154 0.114 0.170 0.198 0.130 + 0.110 0.127 0.172 0.207 0.188 0.203 0.145 0.131 0.151 0.146 + 0.131 0.120 0.101 0.120 0.096 0.065 0.043 0.045 -0.052 -0.062 + + 965 airs281SUBSET_aqua 1449 0.300625E-01 + -0.087 -0.112 -0.013 -0.010 -0.058 0.021 0.007 0.007 0.033 0.032 + 0.016 0.044 0.026 0.010 0.010 0.015 0.030 0.023 0.004 -0.043 + -0.005 -0.017 -0.057 -0.011 -0.036 -0.035 -0.061 -0.052 -0.095 -0.057 + -0.125 -0.039 -0.105 -0.058 -0.055 -0.109 -0.095 -0.087 -0.050 -0.041 + -0.098 -0.082 -0.045 -0.079 -0.071 -0.088 -0.030 -0.116 -0.041 -0.093 + -0.057 -0.061 -0.050 -0.067 -0.023 -0.046 -0.049 -0.025 -0.062 -0.063 + -0.062 -0.044 -0.020 -0.001 -0.067 -0.022 -0.027 -0.067 0.009 -0.010 + -0.039 0.002 0.022 0.047 0.023 0.028 0.008 0.018 0.025 0.020 + 0.027 0.021 -0.011 0.025 0.012 -0.043 0.014 -0.031 -0.175 -0.097 + + 966 airs281SUBSET_aqua 1455 0.401681E-01 + 0.526 0.513 0.615 0.594 0.572 0.621 0.599 0.602 0.621 0.609 + 0.608 0.611 0.566 0.582 0.581 0.558 0.565 0.581 0.567 0.504 + 0.546 0.516 0.513 0.525 0.512 0.504 0.480 0.476 0.456 0.488 + 0.412 0.493 0.437 0.472 0.509 0.403 0.433 0.459 0.485 0.485 + 0.451 0.455 0.478 0.458 0.457 0.440 0.498 0.419 0.518 0.446 + 0.464 0.456 0.464 0.453 0.507 0.495 0.486 0.494 0.489 0.434 + 0.482 0.485 0.547 0.527 0.463 0.512 0.484 0.484 0.556 0.499 + 0.481 0.536 0.569 0.580 0.581 0.585 0.568 0.566 0.579 0.595 + 0.574 0.588 0.591 0.612 0.596 0.570 0.582 0.576 0.465 0.503 + + 967 airs281SUBSET_aqua 1466 0.815621E-01 + 0.283 0.284 0.299 0.298 0.269 0.265 0.239 0.213 0.236 0.218 + 0.201 0.203 0.221 0.151 0.183 0.199 0.127 0.163 0.155 0.130 + 0.174 0.155 0.136 0.102 0.132 0.105 0.087 0.096 0.075 0.071 + 0.093 0.101 0.057 0.059 0.049 0.080 0.107 0.065 0.067 0.058 + 0.048 0.072 0.096 0.079 0.076 0.092 0.066 0.091 0.041 0.065 + 0.055 0.054 0.039 0.045 0.108 0.106 0.085 0.104 0.108 0.097 + 0.111 0.118 0.074 0.098 0.092 0.099 0.124 0.150 0.136 0.153 + 0.148 0.117 0.126 0.183 0.182 0.205 0.186 0.205 0.234 0.206 + 0.218 0.235 0.213 0.264 0.300 0.265 0.280 0.291 0.282 0.283 + + 968 airs281SUBSET_aqua 1477 0.402623E-01 + 0.723 0.710 0.785 0.769 0.731 0.781 0.759 0.729 0.753 0.733 + 0.727 0.720 0.669 0.687 0.676 0.655 0.642 0.670 0.649 0.585 + 0.626 0.602 0.567 0.587 0.568 0.568 0.549 0.549 0.510 0.544 + 0.478 0.546 0.479 0.524 0.541 0.440 0.477 0.504 0.524 0.541 + 0.484 0.500 0.520 0.503 0.510 0.485 0.541 0.459 0.565 0.486 + 0.523 0.496 0.511 0.503 0.559 0.550 0.532 0.541 0.532 0.484 + 0.540 0.531 0.596 0.587 0.521 0.577 0.532 0.559 0.621 0.568 + 0.537 0.608 0.636 0.659 0.656 0.667 0.652 0.643 0.677 0.695 + 0.692 0.695 0.707 0.741 0.730 0.707 0.732 0.731 0.637 0.684 + + 969 airs281SUBSET_aqua 1500 0.469818E-01 + 0.544 0.552 0.630 0.624 0.598 0.661 0.617 0.614 0.655 0.644 + 0.626 0.617 0.611 0.614 0.639 0.596 0.626 0.636 0.649 0.556 + 0.602 0.609 0.595 0.579 0.589 0.584 0.564 0.583 0.547 0.555 + 0.545 0.583 0.545 0.564 0.593 0.494 0.550 0.577 0.590 0.576 + 0.556 0.567 0.570 0.557 0.542 0.523 0.609 0.524 0.642 0.530 + 0.580 0.522 0.557 0.566 0.590 0.606 0.546 0.600 0.572 0.511 + 0.596 0.580 0.625 0.599 0.567 0.568 0.527 0.582 0.614 0.553 + 0.528 0.553 0.620 0.630 0.625 0.646 0.600 0.597 0.617 0.612 + 0.617 0.592 0.597 0.627 0.618 0.585 0.579 0.585 0.487 0.507 + + 970 airs281SUBSET_aqua 1519 0.511792E-01 + 0.295 0.292 0.349 0.367 0.332 0.375 0.322 0.328 0.353 0.323 + 0.317 0.288 0.293 0.267 0.324 0.260 0.267 0.270 0.279 0.208 + 0.247 0.235 0.238 0.215 0.196 0.188 0.179 0.181 0.161 0.149 + 0.144 0.179 0.151 0.179 0.215 0.115 0.177 0.179 0.183 0.160 + 0.152 0.165 0.159 0.169 0.132 0.170 0.217 0.147 0.236 0.148 + 0.177 0.102 0.165 0.159 0.223 0.202 0.147 0.195 0.193 0.140 + 0.207 0.209 0.197 0.203 0.178 0.185 0.151 0.232 0.260 0.192 + 0.186 0.199 0.242 0.303 0.266 0.299 0.250 0.245 0.273 0.297 + 0.315 0.292 0.283 0.324 0.321 0.287 0.302 0.316 0.221 0.243 + + 971 airs281SUBSET_aqua 1538 0.596475E-01 + 0.134 0.129 0.175 0.175 0.155 0.180 0.129 0.148 0.142 0.145 + 0.125 0.100 0.127 0.081 0.142 0.074 0.079 0.078 0.076 0.024 + 0.053 0.043 0.046 0.042 0.000 0.014 0.022 0.012 -0.007 -0.035 + -0.008 -0.015 -0.026 -0.009 0.044 -0.027 0.009 0.015 -0.004 -0.035 + -0.004 -0.016 -0.021 -0.024 -0.045 -0.007 0.029 -0.025 0.049 -0.017 + 0.041 -0.070 -0.014 -0.005 0.041 0.042 -0.036 0.026 0.007 -0.034 + 0.021 0.036 0.026 0.000 0.014 0.014 -0.024 0.071 0.084 0.018 + 0.015 0.026 0.057 0.103 0.073 0.108 0.064 0.081 0.088 0.099 + 0.125 0.107 0.112 0.142 0.153 0.118 0.123 0.149 0.065 0.082 + + 972 airs281SUBSET_aqua 1545 0.477854E-01 + 0.403 0.412 0.485 0.488 0.467 0.513 0.461 0.471 0.511 0.475 + 0.478 0.469 0.455 0.442 0.502 0.434 0.471 0.478 0.478 0.403 + 0.462 0.454 0.442 0.423 0.419 0.410 0.405 0.413 0.402 0.371 + 0.393 0.440 0.402 0.430 0.455 0.354 0.421 0.421 0.442 0.423 + 0.410 0.419 0.414 0.416 0.384 0.384 0.461 0.393 0.500 0.400 + 0.415 0.359 0.399 0.412 0.464 0.441 0.389 0.437 0.416 0.354 + 0.440 0.422 0.452 0.443 0.421 0.404 0.364 0.426 0.456 0.387 + 0.371 0.409 0.441 0.483 0.452 0.487 0.432 0.421 0.440 0.448 + 0.470 0.433 0.429 0.470 0.463 0.429 0.429 0.442 0.342 0.363 + + 973 airs281SUBSET_aqua 1565 0.626086E-01 + 0.354 0.339 0.385 0.381 0.359 0.373 0.330 0.339 0.341 0.342 + 0.322 0.320 0.318 0.270 0.313 0.256 0.246 0.246 0.246 0.220 + 0.247 0.211 0.225 0.215 0.168 0.174 0.202 0.155 0.174 0.130 + 0.163 0.172 0.135 0.134 0.201 0.168 0.189 0.170 0.182 0.152 + 0.156 0.170 0.162 0.158 0.137 0.174 0.182 0.175 0.206 0.151 + 0.209 0.104 0.171 0.168 0.209 0.221 0.148 0.193 0.172 0.153 + 0.197 0.211 0.174 0.169 0.175 0.202 0.175 0.252 0.266 0.210 + 0.212 0.200 0.237 0.266 0.253 0.305 0.269 0.279 0.297 0.310 + 0.312 0.313 0.306 0.327 0.363 0.329 0.326 0.360 0.313 0.303 + + 974 airs281SUBSET_aqua 1574 0.748546E-01 + 0.007 0.000 0.022 0.017 -0.012 -0.022 -0.069 -0.073 -0.053 -0.058 + -0.101 -0.086 -0.098 -0.159 -0.132 -0.121 -0.182 -0.173 -0.189 -0.217 + -0.170 -0.187 -0.209 -0.231 -0.244 -0.253 -0.238 -0.262 -0.274 -0.288 + -0.272 -0.233 -0.293 -0.275 -0.269 -0.251 -0.259 -0.269 -0.306 -0.281 + -0.287 -0.254 -0.284 -0.269 -0.289 -0.251 -0.262 -0.248 -0.281 -0.275 + -0.289 -0.297 -0.297 -0.267 -0.237 -0.234 -0.266 -0.232 -0.239 -0.242 + -0.243 -0.220 -0.266 -0.251 -0.234 -0.227 -0.219 -0.178 -0.191 -0.184 + -0.192 -0.225 -0.208 -0.165 -0.156 -0.110 -0.142 -0.102 -0.087 -0.112 + -0.101 -0.070 -0.100 -0.043 -0.014 -0.044 -0.029 0.012 -0.018 -0.014 + + 975 airs281SUBSET_aqua 1583 0.601718E-01 + 0.310 0.304 0.352 0.345 0.319 0.343 0.293 0.313 0.303 0.306 + 0.286 0.277 0.289 0.238 0.287 0.226 0.217 0.221 0.221 0.186 + 0.217 0.175 0.202 0.196 0.153 0.156 0.172 0.145 0.151 0.113 + 0.146 0.157 0.117 0.114 0.188 0.139 0.169 0.156 0.154 0.136 + 0.149 0.137 0.144 0.136 0.112 0.148 0.157 0.155 0.190 0.127 + 0.200 0.078 0.146 0.155 0.191 0.198 0.119 0.167 0.145 0.121 + 0.178 0.192 0.159 0.153 0.169 0.172 0.147 0.220 0.242 0.184 + 0.185 0.166 0.214 0.243 0.220 0.274 0.232 0.254 0.271 0.274 + 0.289 0.285 0.271 0.298 0.320 0.291 0.289 0.319 0.269 0.262 + + 976 airs281SUBSET_aqua 1593 0.559639E-01 + 1.024 1.021 1.053 1.059 1.031 1.064 1.006 1.027 1.011 1.003 + 0.989 0.960 0.978 0.932 0.994 0.928 0.915 0.921 0.933 0.872 + 0.906 0.891 0.896 0.894 0.843 0.845 0.843 0.842 0.835 0.800 + 0.824 0.822 0.796 0.820 0.875 0.795 0.839 0.835 0.831 0.802 + 0.821 0.813 0.809 0.812 0.790 0.833 0.857 0.793 0.884 0.814 + 0.865 0.753 0.823 0.826 0.868 0.883 0.803 0.853 0.842 0.785 + 0.850 0.876 0.867 0.843 0.841 0.856 0.813 0.911 0.929 0.858 + 0.871 0.873 0.913 0.962 0.924 0.979 0.935 0.939 0.957 0.973 + 1.001 0.979 0.990 1.026 1.034 0.999 1.008 1.035 0.956 0.978 + + 977 airs281SUBSET_aqua 1614 0.672831E-01 + 0.365 0.340 0.370 0.360 0.329 0.316 0.290 0.250 0.264 0.247 + 0.221 0.216 0.233 0.180 0.194 0.194 0.145 0.183 0.144 0.138 + 0.146 0.111 0.101 0.069 0.072 0.073 0.046 0.062 0.029 0.039 + 0.014 -0.009 -0.004 -0.009 -0.040 -0.012 0.026 -0.003 -0.012 -0.021 + -0.032 -0.022 0.005 -0.038 -0.043 -0.001 -0.028 -0.019 0.018 0.003 + -0.035 -0.054 -0.021 -0.012 0.030 0.053 0.002 0.042 0.040 0.035 + 0.048 0.075 0.059 0.048 0.027 0.086 0.080 0.116 0.116 0.150 + 0.125 0.151 0.153 0.220 0.200 0.193 0.203 0.221 0.249 0.245 + 0.237 0.294 0.284 0.313 0.326 0.311 0.347 0.339 0.362 0.348 + + 978 airs281SUBSET_aqua 1627 0.645448E-01 + 0.404 0.394 0.428 0.422 0.396 0.414 0.358 0.368 0.369 0.365 + 0.355 0.365 0.358 0.297 0.355 0.295 0.292 0.284 0.284 0.243 + 0.297 0.262 0.279 0.252 0.212 0.211 0.226 0.201 0.226 0.184 + 0.217 0.227 0.175 0.181 0.242 0.213 0.238 0.214 0.219 0.217 + 0.203 0.209 0.216 0.208 0.182 0.224 0.221 0.234 0.231 0.194 + 0.245 0.144 0.213 0.210 0.257 0.254 0.209 0.257 0.220 0.199 + 0.235 0.254 0.219 0.213 0.225 0.231 0.236 0.296 0.287 0.260 + 0.263 0.226 0.269 0.298 0.267 0.342 0.319 0.326 0.333 0.346 + 0.358 0.356 0.338 0.367 0.411 0.363 0.363 0.414 0.360 0.355 + + 979 airs281SUBSET_aqua 1636 0.739690E-01 + 0.455 0.449 0.466 0.470 0.436 0.440 0.375 0.385 0.396 0.387 + 0.354 0.358 0.361 0.282 0.322 0.322 0.271 0.281 0.258 0.231 + 0.275 0.263 0.253 0.222 0.200 0.201 0.191 0.171 0.169 0.153 + 0.178 0.208 0.151 0.180 0.190 0.200 0.201 0.179 0.152 0.160 + 0.151 0.179 0.168 0.184 0.145 0.208 0.178 0.207 0.175 0.158 + 0.167 0.134 0.153 0.173 0.215 0.223 0.191 0.229 0.188 0.201 + 0.210 0.214 0.189 0.197 0.214 0.217 0.221 0.276 0.271 0.270 + 0.258 0.233 0.252 0.295 0.287 0.343 0.315 0.346 0.354 0.346 + 0.347 0.380 0.364 0.410 0.440 0.403 0.420 0.468 0.431 0.433 + + 980 airs281SUBSET_aqua 1644 0.669950E-01 + 0.036 0.025 0.061 0.044 0.020 0.014 -0.022 -0.064 -0.045 -0.073 + -0.086 -0.086 -0.088 -0.130 -0.110 -0.126 -0.179 -0.147 -0.162 -0.175 + -0.164 -0.195 -0.209 -0.237 -0.227 -0.253 -0.272 -0.265 -0.280 -0.291 + -0.305 -0.327 -0.313 -0.309 -0.345 -0.327 -0.291 -0.301 -0.323 -0.338 + -0.354 -0.340 -0.322 -0.335 -0.341 -0.313 -0.338 -0.334 -0.300 -0.313 + -0.349 -0.369 -0.344 -0.318 -0.287 -0.272 -0.299 -0.278 -0.280 -0.280 + -0.259 -0.238 -0.245 -0.263 -0.287 -0.240 -0.225 -0.195 -0.198 -0.177 + -0.190 -0.157 -0.158 -0.099 -0.115 -0.108 -0.105 -0.091 -0.051 -0.072 + -0.082 -0.016 -0.033 -0.001 0.000 -0.002 0.024 0.016 0.035 0.012 + + 981 airs281SUBSET_aqua 1652 0.634198E-01 + 0.784 0.778 0.810 0.801 0.777 0.793 0.736 0.755 0.753 0.748 + 0.736 0.727 0.731 0.682 0.734 0.664 0.660 0.659 0.660 0.633 + 0.667 0.633 0.650 0.634 0.585 0.596 0.617 0.591 0.595 0.569 + 0.597 0.609 0.556 0.563 0.629 0.592 0.615 0.602 0.606 0.606 + 0.594 0.592 0.594 0.597 0.571 0.604 0.608 0.611 0.633 0.576 + 0.641 0.532 0.612 0.597 0.647 0.649 0.587 0.631 0.609 0.587 + 0.629 0.639 0.612 0.600 0.612 0.623 0.607 0.688 0.692 0.641 + 0.637 0.625 0.659 0.684 0.662 0.729 0.700 0.704 0.713 0.730 + 0.727 0.733 0.725 0.754 0.800 0.757 0.749 0.788 0.747 0.742 + + 982 airs281SUBSET_aqua 1669 0.750432E-01 + 0.493 0.469 0.484 0.466 0.443 0.440 0.382 0.365 0.386 0.379 + 0.343 0.347 0.346 0.278 0.289 0.316 0.252 0.264 0.242 0.226 + 0.269 0.252 0.240 0.206 0.196 0.190 0.190 0.168 0.159 0.147 + 0.165 0.203 0.139 0.159 0.163 0.177 0.169 0.167 0.153 0.133 + 0.131 0.164 0.159 0.157 0.144 0.173 0.148 0.188 0.157 0.141 + 0.149 0.123 0.124 0.160 0.188 0.188 0.165 0.190 0.195 0.180 + 0.178 0.198 0.169 0.196 0.194 0.206 0.210 0.260 0.236 0.249 + 0.253 0.216 0.221 0.275 0.284 0.320 0.302 0.340 0.361 0.332 + 0.344 0.387 0.351 0.406 0.439 0.419 0.431 0.481 0.466 0.470 + + 983 airs281SUBSET_aqua 1674 0.606538E-01 + 0.541 0.534 0.572 0.560 0.551 0.541 0.526 0.493 0.509 0.509 + 0.487 0.487 0.495 0.463 0.472 0.468 0.446 0.474 0.419 0.450 + 0.436 0.401 0.411 0.389 0.376 0.393 0.386 0.375 0.342 0.373 + 0.336 0.305 0.317 0.315 0.293 0.292 0.332 0.342 0.332 0.316 + 0.301 0.296 0.321 0.287 0.289 0.306 0.302 0.296 0.354 0.335 + 0.297 0.284 0.315 0.314 0.325 0.366 0.316 0.340 0.337 0.340 + 0.348 0.370 0.350 0.357 0.322 0.381 0.356 0.409 0.403 0.419 + 0.386 0.415 0.441 0.470 0.448 0.446 0.448 0.470 0.481 0.454 + 0.454 0.507 0.491 0.506 0.490 0.493 0.521 0.496 0.506 0.481 + + 984 airs281SUBSET_aqua 1681 0.696856E-01 + 0.573 0.548 0.573 0.566 0.539 0.522 0.497 0.452 0.478 0.464 + 0.445 0.444 0.466 0.413 0.419 0.420 0.373 0.409 0.380 0.372 + 0.385 0.361 0.347 0.323 0.327 0.326 0.287 0.306 0.291 0.288 + 0.280 0.254 0.264 0.255 0.225 0.232 0.277 0.259 0.254 0.239 + 0.233 0.235 0.259 0.222 0.229 0.255 0.227 0.241 0.274 0.263 + 0.212 0.200 0.230 0.228 0.264 0.292 0.240 0.283 0.279 0.272 + 0.287 0.310 0.277 0.283 0.268 0.311 0.313 0.336 0.344 0.357 + 0.336 0.353 0.373 0.405 0.403 0.406 0.412 0.435 0.461 0.428 + 0.431 0.487 0.476 0.497 0.503 0.509 0.536 0.530 0.545 0.531 + + 985 airs281SUBSET_aqua 1694 0.745160E-01 + 1.495 1.464 1.471 1.465 1.417 1.410 1.356 1.344 1.348 1.343 + 1.324 1.305 1.310 1.231 1.252 1.274 1.208 1.217 1.191 1.183 + 1.219 1.196 1.185 1.148 1.119 1.124 1.125 1.106 1.097 1.098 + 1.110 1.137 1.071 1.103 1.101 1.111 1.127 1.099 1.078 1.068 + 1.069 1.110 1.092 1.109 1.061 1.122 1.090 1.127 1.088 1.090 + 1.078 1.059 1.060 1.101 1.131 1.137 1.109 1.143 1.124 1.134 + 1.134 1.136 1.115 1.125 1.138 1.149 1.152 1.211 1.204 1.212 + 1.214 1.161 1.179 1.225 1.230 1.284 1.264 1.301 1.313 1.323 + 1.305 1.346 1.338 1.381 1.425 1.404 1.419 1.473 1.460 1.480 + + 986 airs281SUBSET_aqua 1708 0.788212E-01 + 0.736 0.707 0.709 0.710 0.678 0.663 0.609 0.575 0.604 0.598 + 0.569 0.572 0.579 0.504 0.505 0.523 0.469 0.495 0.456 0.441 + 0.498 0.475 0.469 0.401 0.443 0.409 0.398 0.403 0.387 0.365 + 0.399 0.400 0.371 0.375 0.361 0.390 0.395 0.373 0.372 0.357 + 0.358 0.380 0.402 0.377 0.377 0.383 0.388 0.384 0.379 0.361 + 0.356 0.337 0.331 0.365 0.401 0.384 0.384 0.397 0.408 0.386 + 0.405 0.419 0.370 0.409 0.410 0.419 0.433 0.477 0.452 0.471 + 0.459 0.422 0.443 0.487 0.492 0.551 0.534 0.546 0.568 0.560 + 0.555 0.606 0.588 0.641 0.667 0.667 0.668 0.709 0.713 0.719 + + 987 airs281SUBSET_aqua 1717 0.623127E-01 + 0.489 0.464 0.486 0.480 0.449 0.451 0.420 0.375 0.392 0.377 + 0.373 0.354 0.365 0.327 0.328 0.333 0.299 0.327 0.284 0.286 + 0.289 0.258 0.255 0.241 0.231 0.230 0.214 0.212 0.198 0.204 + 0.190 0.155 0.171 0.170 0.140 0.140 0.195 0.169 0.172 0.152 + 0.145 0.135 0.164 0.134 0.132 0.166 0.142 0.142 0.181 0.168 + 0.138 0.112 0.141 0.155 0.164 0.197 0.153 0.186 0.197 0.177 + 0.202 0.213 0.183 0.203 0.176 0.237 0.231 0.250 0.249 0.265 + 0.250 0.266 0.288 0.323 0.314 0.307 0.321 0.341 0.366 0.332 + 0.340 0.400 0.390 0.406 0.406 0.423 0.448 0.440 0.461 0.452 + + 988 airs281SUBSET_aqua 1723 0.811001E-01 + 0.395 0.354 0.349 0.345 0.314 0.303 0.256 0.192 0.235 0.219 + 0.212 0.207 0.226 0.154 0.134 0.188 0.120 0.168 0.112 0.100 + 0.139 0.128 0.129 0.053 0.099 0.081 0.048 0.046 0.050 0.033 + 0.064 0.029 0.047 0.026 0.006 0.014 0.058 0.019 0.010 0.009 + 0.001 0.017 0.066 0.026 0.038 0.031 0.020 0.029 0.021 0.015 + -0.008 -0.012 -0.015 0.019 0.057 0.034 0.020 0.052 0.053 0.037 + 0.076 0.063 0.009 0.051 0.055 0.079 0.080 0.089 0.085 0.105 + 0.121 0.079 0.114 0.123 0.137 0.178 0.165 0.188 0.213 0.190 + 0.189 0.238 0.226 0.287 0.301 0.316 0.323 0.352 0.364 0.371 + + 989 airs281SUBSET_aqua 1740 0.811507E-01 + 1.051 1.012 0.995 0.989 0.963 0.947 0.902 0.849 0.880 0.859 + 0.844 0.846 0.862 0.781 0.769 0.817 0.746 0.777 0.734 0.721 + 0.766 0.751 0.760 0.667 0.725 0.693 0.667 0.658 0.659 0.653 + 0.679 0.671 0.664 0.646 0.627 0.643 0.670 0.639 0.619 0.629 + 0.625 0.636 0.682 0.648 0.651 0.650 0.641 0.662 0.629 0.643 + 0.615 0.606 0.600 0.626 0.671 0.642 0.641 0.669 0.668 0.657 + 0.694 0.683 0.626 0.670 0.675 0.699 0.699 0.712 0.720 0.728 + 0.745 0.705 0.727 0.746 0.766 0.815 0.801 0.825 0.852 0.831 + 0.824 0.886 0.873 0.922 0.956 0.966 0.973 1.004 1.024 1.031 + + 990 airs281SUBSET_aqua 1748 0.821181E-01 + 0.592 0.549 0.541 0.543 0.497 0.494 0.455 0.412 0.413 0.407 + 0.412 0.389 0.417 0.353 0.337 0.384 0.334 0.375 0.338 0.327 + 0.347 0.323 0.306 0.284 0.305 0.297 0.254 0.271 0.273 0.255 + 0.270 0.243 0.258 0.237 0.201 0.214 0.264 0.240 0.218 0.229 + 0.219 0.224 0.265 0.235 0.227 0.252 0.239 0.231 0.238 0.217 + 0.194 0.193 0.185 0.223 0.267 0.253 0.208 0.268 0.282 0.239 + 0.280 0.274 0.225 0.272 0.249 0.289 0.303 0.290 0.282 0.303 + 0.315 0.299 0.326 0.344 0.346 0.353 0.371 0.376 0.419 0.382 + 0.389 0.449 0.443 0.484 0.496 0.510 0.525 0.540 0.564 0.577 + + 991 airs281SUBSET_aqua 1751 0.499592E-01 + 1.007 0.997 1.028 1.026 1.009 1.016 1.004 0.965 0.992 0.992 + 0.991 0.977 0.988 0.968 0.971 0.977 0.964 0.971 0.943 0.965 + 0.953 0.931 0.926 0.929 0.913 0.928 0.932 0.913 0.898 0.928 + 0.887 0.867 0.874 0.884 0.860 0.855 0.895 0.904 0.891 0.890 + 0.871 0.859 0.897 0.856 0.855 0.888 0.875 0.842 0.906 0.913 + 0.878 0.858 0.883 0.883 0.878 0.916 0.877 0.887 0.886 0.887 + 0.915 0.908 0.908 0.913 0.886 0.927 0.897 0.937 0.921 0.946 + 0.931 0.938 0.957 0.989 0.971 0.953 0.962 0.973 0.984 0.966 + 0.958 0.998 0.986 0.978 0.973 0.982 1.008 0.978 0.996 0.980 + + 992 airs281SUBSET_aqua 1756 0.786395E-01 + 0.697 0.662 0.666 0.660 0.624 0.619 0.582 0.534 0.530 0.533 + 0.538 0.514 0.541 0.481 0.475 0.500 0.453 0.489 0.450 0.458 + 0.466 0.439 0.424 0.411 0.418 0.420 0.383 0.386 0.392 0.367 + 0.378 0.353 0.376 0.350 0.320 0.324 0.373 0.355 0.346 0.337 + 0.334 0.329 0.369 0.352 0.326 0.356 0.349 0.331 0.364 0.343 + 0.313 0.300 0.304 0.333 0.365 0.373 0.330 0.375 0.381 0.362 + 0.391 0.381 0.351 0.381 0.355 0.402 0.420 0.408 0.401 0.425 + 0.431 0.426 0.450 0.471 0.471 0.474 0.495 0.501 0.545 0.502 + 0.513 0.567 0.568 0.597 0.605 0.622 0.640 0.654 0.669 0.676 + + 993 airs281SUBSET_aqua 1763 0.512345E-01 + 0.313 0.300 0.334 0.318 0.300 0.303 0.281 0.244 0.274 0.260 + 0.265 0.255 0.252 0.235 0.234 0.246 0.232 0.236 0.193 0.218 + 0.206 0.178 0.193 0.182 0.167 0.176 0.184 0.162 0.152 0.160 + 0.131 0.110 0.118 0.130 0.098 0.099 0.136 0.136 0.141 0.119 + 0.104 0.099 0.128 0.094 0.089 0.129 0.111 0.086 0.145 0.145 + 0.118 0.089 0.112 0.116 0.123 0.158 0.114 0.127 0.140 0.137 + 0.151 0.152 0.144 0.148 0.120 0.170 0.150 0.176 0.160 0.189 + 0.172 0.184 0.210 0.238 0.217 0.199 0.211 0.228 0.232 0.211 + 0.207 0.260 0.243 0.245 0.234 0.240 0.272 0.241 0.269 0.245 + + 994 airs281SUBSET_aqua 1766 0.731215E-01 + 0.425 0.386 0.403 0.404 0.367 0.374 0.341 0.300 0.315 0.310 + 0.313 0.295 0.312 0.262 0.264 0.282 0.246 0.285 0.244 0.245 + 0.263 0.232 0.220 0.210 0.209 0.204 0.189 0.192 0.178 0.173 + 0.167 0.156 0.172 0.154 0.109 0.133 0.177 0.160 0.164 0.143 + 0.139 0.140 0.180 0.139 0.126 0.159 0.136 0.130 0.177 0.156 + 0.118 0.098 0.136 0.154 0.157 0.184 0.137 0.176 0.184 0.160 + 0.181 0.187 0.157 0.167 0.149 0.206 0.217 0.200 0.201 0.217 + 0.213 0.214 0.234 0.264 0.262 0.249 0.261 0.280 0.308 0.272 + 0.279 0.329 0.320 0.346 0.338 0.359 0.369 0.374 0.391 0.386 + + 995 airs281SUBSET_aqua 1771 0.793226E-01 + 0.334 0.311 0.296 0.297 0.255 0.247 0.199 0.147 0.188 0.171 + 0.147 0.148 0.169 0.101 0.086 0.126 0.055 0.091 0.039 0.031 + 0.080 0.068 0.063 -0.018 0.032 0.004 -0.028 -0.016 -0.019 -0.043 + -0.012 -0.012 -0.023 -0.039 -0.055 -0.039 -0.014 -0.041 -0.053 -0.058 + -0.062 -0.035 -0.009 -0.040 -0.040 -0.029 -0.042 -0.029 -0.042 -0.040 + -0.071 -0.066 -0.077 -0.059 -0.008 -0.037 -0.036 -0.023 -0.018 -0.026 + 0.012 -0.002 -0.052 -0.008 -0.008 -0.000 0.015 0.047 0.038 0.042 + 0.056 0.022 0.043 0.057 0.067 0.121 0.105 0.124 0.156 0.134 + 0.125 0.179 0.169 0.215 0.252 0.249 0.262 0.296 0.302 0.312 + + 996 airs281SUBSET_aqua 1777 0.803611E-01 + 0.438 0.393 0.388 0.384 0.346 0.341 0.299 0.238 0.277 0.257 + 0.247 0.239 0.266 0.193 0.185 0.231 0.176 0.204 0.171 0.139 + 0.160 0.163 0.155 0.104 0.136 0.110 0.091 0.081 0.090 0.076 + 0.094 0.079 0.075 0.055 0.036 0.044 0.083 0.053 0.035 0.039 + 0.034 0.046 0.101 0.065 0.062 0.069 0.057 0.067 0.057 0.041 + 0.030 0.025 0.015 0.040 0.088 0.064 0.048 0.094 0.091 0.074 + 0.123 0.099 0.057 0.090 0.072 0.106 0.116 0.119 0.124 0.150 + 0.147 0.117 0.149 0.168 0.175 0.206 0.203 0.213 0.252 0.224 + 0.233 0.273 0.272 0.329 0.330 0.352 0.358 0.380 0.395 0.407 + + 997 airs281SUBSET_aqua 1780 0.625487E-01 + 0.429 0.405 0.432 0.422 0.397 0.395 0.373 0.324 0.343 0.339 + 0.326 0.319 0.318 0.296 0.299 0.303 0.265 0.295 0.252 0.262 + 0.262 0.238 0.233 0.227 0.209 0.209 0.210 0.198 0.188 0.181 + 0.173 0.144 0.167 0.165 0.120 0.123 0.175 0.158 0.164 0.146 + 0.145 0.132 0.155 0.138 0.120 0.162 0.131 0.131 0.177 0.157 + 0.137 0.107 0.133 0.150 0.150 0.190 0.147 0.172 0.180 0.164 + 0.188 0.197 0.170 0.182 0.147 0.206 0.203 0.227 0.211 0.240 + 0.223 0.240 0.252 0.292 0.280 0.268 0.281 0.301 0.324 0.291 + 0.292 0.342 0.339 0.344 0.347 0.357 0.388 0.373 0.391 0.372 + + 998 airs281SUBSET_aqua 1783 0.795344E-01 + 0.452 0.407 0.406 0.387 0.376 0.358 0.362 0.304 0.286 0.304 + 0.263 0.320 0.326 0.267 0.244 0.278 0.258 0.264 0.217 0.250 + 0.271 0.278 0.239 0.229 0.203 0.257 0.170 0.204 0.195 0.172 + 0.169 0.185 0.192 0.181 0.112 0.143 0.182 0.191 0.187 0.175 + 0.184 0.142 0.176 0.170 0.144 0.154 0.162 0.152 0.172 0.179 + 0.123 0.124 0.137 0.165 0.185 0.214 0.152 0.173 0.207 0.179 + 0.224 0.228 0.148 0.198 0.178 0.211 0.240 0.195 0.176 0.234 + 0.223 0.248 0.214 0.281 0.256 0.241 0.260 0.271 0.323 0.284 + 0.288 0.349 0.345 0.374 0.368 0.365 0.395 0.391 0.426 0.443 + + 999 airs281SUBSET_aqua 1794 0.805340E-01 + 0.384 0.336 0.329 0.330 0.279 0.276 0.245 0.190 0.214 0.201 + 0.201 0.181 0.220 0.140 0.132 0.186 0.125 0.168 0.123 0.110 + 0.131 0.123 0.111 0.072 0.089 0.080 0.057 0.061 0.062 0.041 + 0.063 0.046 0.045 0.022 0.010 0.017 0.071 0.039 0.015 0.015 + 0.012 0.034 0.068 0.035 0.021 0.050 0.032 0.038 0.035 0.015 + -0.005 -0.008 -0.012 0.011 0.059 0.039 0.009 0.062 0.078 0.041 + 0.074 0.070 0.020 0.063 0.038 0.078 0.083 0.092 0.082 0.102 + 0.109 0.085 0.117 0.121 0.135 0.152 0.160 0.160 0.205 0.172 + 0.173 0.228 0.220 0.272 0.269 0.297 0.309 0.317 0.342 0.351 + + 1000 airs281SUBSET_aqua 1800 0.805298E-01 + 0.338 0.291 0.286 0.283 0.251 0.233 0.195 0.134 0.169 0.152 + 0.131 0.120 0.157 0.084 0.072 0.121 0.047 0.087 0.039 0.019 + 0.055 0.042 0.045 -0.017 0.017 0.002 -0.027 -0.023 -0.032 -0.047 + -0.010 -0.038 -0.045 -0.058 -0.090 -0.072 -0.032 -0.054 -0.075 -0.075 + -0.080 -0.054 -0.019 -0.054 -0.055 -0.045 -0.056 -0.054 -0.053 -0.074 + -0.088 -0.109 -0.091 -0.077 -0.030 -0.049 -0.074 -0.024 -0.025 -0.048 + -0.008 -0.024 -0.070 -0.029 -0.029 -0.017 -0.013 0.001 0.008 0.029 + 0.033 -0.003 0.037 0.049 0.062 0.096 0.090 0.103 0.147 0.107 + 0.116 0.165 0.166 0.215 0.226 0.244 0.249 0.269 0.290 0.303 + + 1001 airs281SUBSET_aqua 1803 0.568858E-01 + 0.327 0.297 0.344 0.330 0.322 0.313 0.304 0.229 0.290 0.294 + 0.282 0.271 0.263 0.252 0.270 0.274 0.256 0.271 0.215 0.255 + 0.237 0.203 0.214 0.204 0.201 0.204 0.206 0.202 0.181 0.203 + 0.185 0.153 0.165 0.158 0.139 0.101 0.173 0.177 0.175 0.178 + 0.161 0.152 0.179 0.149 0.141 0.164 0.131 0.131 0.192 0.172 + 0.158 0.137 0.153 0.163 0.172 0.215 0.154 0.182 0.183 0.166 + 0.192 0.190 0.168 0.193 0.157 0.215 0.170 0.219 0.198 0.232 + 0.209 0.208 0.254 0.266 0.249 0.230 0.231 0.260 0.259 0.235 + 0.232 0.288 0.273 0.285 0.267 0.270 0.289 0.262 0.277 0.252 + + 1002 airs281SUBSET_aqua 1806 0.808788E-01 + 0.344 0.307 0.305 0.292 0.258 0.244 0.194 0.126 0.176 0.154 + 0.144 0.141 0.161 0.093 0.081 0.122 0.049 0.088 0.033 0.024 + 0.075 0.068 0.057 -0.015 0.020 -0.002 -0.028 -0.028 -0.040 -0.033 + -0.008 -0.022 -0.020 -0.045 -0.070 -0.032 -0.022 -0.050 -0.050 -0.059 + -0.059 -0.042 -0.000 -0.053 -0.037 -0.038 -0.037 -0.038 -0.046 -0.053 + -0.072 -0.074 -0.089 -0.058 -0.006 -0.045 -0.047 -0.013 -0.022 -0.031 + 0.001 0.002 -0.059 -0.014 -0.016 0.002 0.006 0.034 0.025 0.050 + 0.046 -0.002 0.027 0.044 0.065 0.113 0.091 0.124 0.143 0.119 + 0.124 0.173 0.155 0.216 0.236 0.256 0.265 0.298 0.309 0.313 + + 1003 airs281SUBSET_aqua 1812 0.476671E-01 + 0.040 0.044 0.088 0.076 0.106 0.059 0.047 -0.040 0.038 0.059 + 0.068 0.065 0.048 0.039 0.065 0.082 0.040 0.034 0.002 0.042 + 0.057 -0.020 -0.015 -0.013 -0.040 0.003 -0.009 -0.035 -0.001 -0.043 + -0.056 -0.095 -0.071 -0.068 -0.107 -0.142 -0.033 -0.037 -0.064 -0.076 + -0.086 -0.102 -0.079 -0.096 -0.066 -0.051 -0.122 -0.177 -0.042 -0.051 + -0.046 -0.092 -0.047 -0.054 -0.055 -0.026 -0.071 -0.028 -0.065 -0.042 + -0.032 -0.044 -0.036 -0.047 -0.095 -0.025 -0.045 0.013 -0.000 0.025 + -0.007 0.010 0.028 0.056 0.034 0.005 0.022 0.035 0.012 -0.007 + 0.028 0.041 0.034 0.001 0.014 -0.006 0.028 -0.028 -0.002 -0.041 + + 1004 airs281SUBSET_aqua 1826 0.691264E-01 + 0.718 0.676 0.708 0.719 0.681 0.693 0.636 0.641 0.664 0.670 + 0.661 0.652 0.655 0.594 0.640 0.645 0.603 0.604 0.599 0.568 + 0.625 0.601 0.611 0.586 0.551 0.563 0.563 0.539 0.551 0.544 + 0.570 0.590 0.525 0.552 0.585 0.569 0.599 0.584 0.567 0.564 + 0.574 0.576 0.584 0.583 0.533 0.572 0.573 0.588 0.575 0.562 + 0.588 0.515 0.578 0.570 0.597 0.619 0.581 0.634 0.560 0.579 + 0.593 0.595 0.551 0.573 0.567 0.574 0.570 0.638 0.628 0.604 + 0.594 0.565 0.584 0.616 0.584 0.654 0.628 0.652 0.635 0.648 + 0.634 0.650 0.625 0.661 0.691 0.647 0.657 0.695 0.661 0.685 + + 1005 airs281SUBSET_aqua 1843 0.678777E-01 + 0.047 0.015 0.050 0.063 0.031 0.039 -0.016 0.011 0.030 0.033 + 0.012 0.017 0.017 -0.041 0.034 0.003 -0.009 -0.016 -0.022 -0.059 + 0.007 -0.027 -0.015 -0.020 -0.062 -0.065 -0.059 -0.070 -0.054 -0.074 + -0.039 -0.035 -0.075 -0.067 -0.022 -0.041 -0.018 -0.019 -0.045 -0.045 + -0.030 -0.027 -0.019 -0.029 -0.079 -0.030 -0.024 -0.013 -0.032 -0.050 + -0.012 -0.099 -0.033 -0.042 -0.000 0.006 -0.039 0.012 -0.050 -0.035 + -0.018 -0.026 -0.080 -0.043 -0.054 -0.044 -0.048 0.008 0.007 -0.017 + -0.025 -0.060 -0.037 -0.016 -0.041 0.020 -0.013 -0.001 0.004 -0.004 + -0.011 0.009 -0.020 0.006 0.040 -0.014 -0.010 0.042 -0.015 0.000 + + 1006 airs281SUBSET_aqua 1852 0.701924E-01 + 0.060 0.024 0.057 0.064 0.030 0.045 -0.014 -0.010 0.018 0.017 + -0.005 0.004 0.001 -0.053 -0.013 -0.023 -0.051 -0.054 -0.072 -0.089 + -0.032 -0.051 -0.063 -0.081 -0.119 -0.090 -0.098 -0.127 -0.115 -0.115 + -0.090 -0.074 -0.117 -0.108 -0.093 -0.096 -0.073 -0.075 -0.100 -0.107 + -0.098 -0.075 -0.084 -0.083 -0.129 -0.069 -0.095 -0.072 -0.077 -0.109 + -0.086 -0.146 -0.101 -0.088 -0.070 -0.050 -0.101 -0.035 -0.091 -0.071 + -0.069 -0.059 -0.107 -0.084 -0.088 -0.082 -0.081 -0.020 -0.029 -0.053 + -0.059 -0.101 -0.089 -0.046 -0.065 -0.013 -0.033 -0.010 -0.005 -0.016 + -0.025 -0.006 -0.022 0.005 0.040 -0.009 0.010 0.039 -0.001 0.021 + + 1007 airs281SUBSET_aqua 1865 0.274503E-01 + -0.060 -0.090 0.004 0.002 -0.004 0.046 0.037 0.035 0.059 0.076 + 0.055 0.102 0.115 0.088 0.107 0.114 0.119 0.089 0.110 0.091 + 0.131 0.082 0.074 0.099 0.071 0.138 0.071 0.065 0.078 0.048 + 0.023 0.076 0.036 0.053 0.019 0.008 -0.005 -0.036 -0.010 -0.015 + -0.052 -0.066 -0.062 -0.077 -0.062 -0.079 -0.072 -0.112 -0.112 -0.132 + -0.100 -0.129 -0.121 -0.115 -0.130 -0.139 -0.102 -0.124 -0.154 -0.115 + -0.122 -0.133 -0.120 -0.120 -0.134 -0.100 -0.082 -0.110 -0.096 -0.101 + -0.118 -0.061 -0.069 -0.052 -0.056 -0.042 -0.067 -0.028 -0.036 -0.054 + -0.011 -0.014 -0.038 -0.005 0.004 -0.049 -0.003 -0.037 -0.160 -0.078 + + 1008 airs281SUBSET_aqua 1866 0.305080E-01 + 0.359 0.314 0.399 0.398 0.383 0.419 0.403 0.414 0.428 0.437 + 0.417 0.464 0.493 0.450 0.475 0.473 0.479 0.446 0.461 0.457 + 0.496 0.436 0.426 0.447 0.421 0.485 0.416 0.409 0.418 0.374 + 0.365 0.406 0.350 0.381 0.346 0.337 0.313 0.290 0.313 0.297 + 0.251 0.253 0.245 0.250 0.259 0.233 0.245 0.209 0.202 0.183 + 0.218 0.186 0.198 0.211 0.194 0.193 0.243 0.216 0.184 0.223 + 0.224 0.212 0.224 0.236 0.222 0.264 0.288 0.256 0.272 0.268 + 0.241 0.310 0.291 0.321 0.313 0.332 0.310 0.342 0.337 0.312 + 0.367 0.371 0.336 0.369 0.386 0.336 0.392 0.364 0.258 0.354 + + 1009 airs281SUBSET_aqua 1868 0.331968E-01 + 0.401 0.349 0.411 0.404 0.380 0.406 0.393 0.390 0.402 0.404 + 0.385 0.419 0.437 0.397 0.413 0.407 0.414 0.383 0.393 0.379 + 0.411 0.357 0.350 0.365 0.346 0.393 0.335 0.323 0.332 0.297 + 0.287 0.322 0.272 0.297 0.262 0.256 0.233 0.211 0.236 0.223 + 0.183 0.189 0.179 0.187 0.193 0.170 0.183 0.156 0.149 0.126 + 0.165 0.136 0.144 0.161 0.147 0.146 0.189 0.172 0.145 0.183 + 0.181 0.174 0.186 0.196 0.183 0.227 0.245 0.218 0.240 0.239 + 0.212 0.281 0.265 0.291 0.285 0.309 0.295 0.324 0.321 0.303 + 0.354 0.357 0.333 0.366 0.383 0.344 0.400 0.379 0.295 0.389 + + 1010 airs281SUBSET_aqua 1869 0.340007E-01 + 0.358 0.300 0.349 0.342 0.302 0.329 0.315 0.295 0.309 0.300 + 0.279 0.297 0.304 0.265 0.272 0.262 0.271 0.236 0.245 0.219 + 0.246 0.204 0.192 0.209 0.183 0.227 0.183 0.168 0.169 0.149 + 0.136 0.170 0.133 0.144 0.123 0.113 0.089 0.071 0.099 0.093 + 0.056 0.057 0.068 0.056 0.060 0.051 0.058 0.033 0.040 0.014 + 0.046 0.024 0.029 0.043 0.031 0.025 0.062 0.049 0.028 0.058 + 0.054 0.052 0.063 0.075 0.061 0.097 0.110 0.091 0.114 0.113 + 0.094 0.150 0.143 0.170 0.166 0.185 0.182 0.215 0.211 0.204 + 0.256 0.262 0.249 0.285 0.305 0.274 0.334 0.317 0.243 0.338 + + 1011 airs281SUBSET_aqua 1872 0.373724E-01 + 0.305 0.249 0.288 0.276 0.243 0.263 0.249 0.230 0.245 0.242 + 0.221 0.242 0.249 0.217 0.227 0.220 0.223 0.191 0.200 0.179 + 0.205 0.165 0.153 0.170 0.145 0.186 0.139 0.125 0.134 0.103 + 0.089 0.123 0.088 0.100 0.076 0.066 0.050 0.027 0.054 0.043 + 0.010 0.013 0.014 0.009 0.016 0.003 0.013 -0.011 -0.010 -0.031 + -0.001 -0.021 -0.011 0.001 -0.012 -0.013 0.025 0.011 -0.011 0.026 + 0.024 0.019 0.028 0.039 0.030 0.066 0.084 0.065 0.083 0.082 + 0.064 0.117 0.112 0.132 0.132 0.151 0.138 0.172 0.167 0.156 + 0.204 0.207 0.195 0.226 0.242 0.217 0.272 0.264 0.198 0.289 + + 1012 airs281SUBSET_aqua 1873 0.360905E-01 + 0.194 0.140 0.180 0.170 0.143 0.163 0.146 0.135 0.151 0.155 + 0.130 0.164 0.177 0.147 0.160 0.156 0.160 0.132 0.146 0.131 + 0.163 0.117 0.112 0.126 0.105 0.156 0.101 0.090 0.106 0.068 + 0.055 0.087 0.051 0.063 0.039 0.031 0.014 -0.015 0.012 0.002 + -0.035 -0.036 -0.037 -0.043 -0.032 -0.050 -0.042 -0.064 -0.070 -0.084 + -0.057 -0.082 -0.074 -0.062 -0.078 -0.077 -0.036 -0.057 -0.085 -0.043 + -0.047 -0.054 -0.045 -0.038 -0.045 -0.012 0.006 -0.014 -0.004 -0.004 + -0.026 0.032 0.019 0.039 0.036 0.053 0.039 0.069 0.062 0.049 + 0.096 0.099 0.084 0.113 0.129 0.107 0.157 0.150 0.083 0.175 + + 1013 airs281SUBSET_aqua 1876 0.323904E-01 + 0.039 -0.016 0.034 0.031 0.008 0.032 0.025 0.017 0.037 0.045 + 0.026 0.063 0.080 0.047 0.067 0.068 0.075 0.044 0.068 0.048 + 0.081 0.030 0.029 0.044 0.022 0.079 0.019 0.011 0.027 -0.005 + -0.023 0.013 -0.025 -0.014 -0.044 -0.047 -0.072 -0.096 -0.072 -0.078 + -0.115 -0.124 -0.119 -0.129 -0.121 -0.137 -0.130 -0.159 -0.159 -0.175 + -0.152 -0.177 -0.168 -0.155 -0.174 -0.175 -0.137 -0.154 -0.179 -0.142 + -0.147 -0.152 -0.145 -0.139 -0.144 -0.110 -0.095 -0.120 -0.106 -0.107 + -0.123 -0.072 -0.084 -0.067 -0.075 -0.055 -0.069 -0.037 -0.048 -0.061 + -0.023 -0.019 -0.038 -0.006 0.005 -0.027 0.020 0.008 -0.066 0.021 + + 1014 airs281SUBSET_aqua 1881 0.423722E-01 + 0.095 0.038 0.046 0.033 0.001 0.001 -0.014 -0.032 -0.018 -0.023 + -0.050 -0.033 -0.027 -0.055 -0.050 -0.060 -0.060 -0.086 -0.078 -0.101 + -0.082 -0.110 -0.122 -0.112 -0.128 -0.103 -0.135 -0.148 -0.142 -0.174 + -0.177 -0.159 -0.186 -0.176 -0.194 -0.199 -0.215 -0.233 -0.210 -0.220 + -0.247 -0.242 -0.239 -0.239 -0.237 -0.246 -0.238 -0.256 -0.255 -0.267 + -0.246 -0.264 -0.252 -0.241 -0.251 -0.249 -0.218 -0.229 -0.249 -0.218 + -0.216 -0.220 -0.211 -0.203 -0.203 -0.176 -0.161 -0.175 -0.163 -0.164 + -0.183 -0.133 -0.142 -0.117 -0.121 -0.102 -0.111 -0.087 -0.091 -0.093 + -0.055 -0.048 -0.057 -0.034 -0.017 -0.026 0.020 0.028 -0.005 0.076 + + 1015 airs281SUBSET_aqua 1882 0.428162E-01 + 0.116 0.058 0.062 0.050 0.015 0.016 0.001 -0.014 -0.005 -0.008 + -0.032 -0.018 -0.013 -0.040 -0.033 -0.046 -0.045 -0.072 -0.064 -0.086 + -0.070 -0.097 -0.111 -0.102 -0.122 -0.098 -0.127 -0.139 -0.132 -0.166 + -0.170 -0.153 -0.177 -0.170 -0.185 -0.190 -0.203 -0.224 -0.202 -0.212 + -0.237 -0.231 -0.229 -0.231 -0.226 -0.233 -0.223 -0.244 -0.238 -0.254 + -0.231 -0.249 -0.238 -0.226 -0.234 -0.231 -0.203 -0.216 -0.230 -0.202 + -0.196 -0.200 -0.191 -0.184 -0.186 -0.156 -0.139 -0.154 -0.139 -0.140 + -0.158 -0.111 -0.118 -0.094 -0.099 -0.077 -0.085 -0.064 -0.067 -0.072 + -0.036 -0.033 -0.034 -0.015 -0.002 -0.008 0.035 0.047 0.018 0.099 + + 1016 airs281SUBSET_aqua 1883 0.429596E-01 + 0.060 0.002 0.004 -0.010 -0.042 -0.042 -0.053 -0.073 -0.063 -0.065 + -0.086 -0.071 -0.070 -0.094 -0.087 -0.097 -0.094 -0.120 -0.114 -0.134 + -0.116 -0.145 -0.156 -0.148 -0.164 -0.143 -0.172 -0.185 -0.180 -0.207 + -0.216 -0.200 -0.221 -0.218 -0.231 -0.233 -0.249 -0.271 -0.245 -0.253 + -0.278 -0.275 -0.270 -0.275 -0.273 -0.276 -0.270 -0.287 -0.284 -0.295 + -0.274 -0.288 -0.278 -0.267 -0.279 -0.274 -0.244 -0.255 -0.268 -0.239 + -0.239 -0.239 -0.231 -0.224 -0.224 -0.197 -0.183 -0.196 -0.184 -0.180 + -0.198 -0.154 -0.155 -0.138 -0.145 -0.129 -0.138 -0.113 -0.118 -0.125 + -0.090 -0.089 -0.093 -0.073 -0.058 -0.063 -0.021 -0.011 -0.040 0.040 + + 1017 airs281SUBSET_aqua 1911 0.416192E-01 + -0.004 -0.068 -0.061 -0.075 -0.108 -0.105 -0.117 -0.136 -0.128 -0.126 + -0.150 -0.132 -0.126 -0.153 -0.146 -0.150 -0.149 -0.174 -0.163 -0.186 + -0.170 -0.202 -0.210 -0.199 -0.218 -0.184 -0.219 -0.234 -0.224 -0.256 + -0.259 -0.242 -0.265 -0.262 -0.280 -0.283 -0.299 -0.326 -0.299 -0.305 + -0.333 -0.335 -0.325 -0.336 -0.331 -0.338 -0.331 -0.349 -0.345 -0.361 + -0.342 -0.357 -0.347 -0.333 -0.346 -0.344 -0.313 -0.326 -0.343 -0.309 + -0.313 -0.312 -0.306 -0.299 -0.299 -0.275 -0.258 -0.273 -0.258 -0.260 + -0.278 -0.234 -0.238 -0.220 -0.226 -0.207 -0.215 -0.187 -0.195 -0.200 + -0.160 -0.159 -0.166 -0.138 -0.126 -0.131 -0.086 -0.083 -0.111 -0.026 + + 1018 airs281SUBSET_aqua 1917 0.444438E-01 + -0.413 -0.471 -0.513 -0.533 -0.572 -0.600 -0.611 -0.642 -0.641 -0.654 + -0.671 -0.679 -0.685 -0.698 -0.695 -0.708 -0.708 -0.716 -0.724 -0.743 + -0.734 -0.732 -0.757 -0.757 -0.768 -0.761 -0.775 -0.776 -0.784 -0.806 + -0.799 -0.800 -0.817 -0.809 -0.823 -0.822 -0.843 -0.844 -0.829 -0.831 + -0.844 -0.839 -0.833 -0.834 -0.845 -0.836 -0.832 -0.846 -0.835 -0.844 + -0.836 -0.836 -0.820 -0.823 -0.821 -0.816 -0.803 -0.805 -0.810 -0.795 + -0.792 -0.793 -0.786 -0.779 -0.772 -0.756 -0.753 -0.752 -0.738 -0.741 + -0.761 -0.731 -0.733 -0.723 -0.718 -0.704 -0.711 -0.696 -0.684 -0.688 + -0.659 -0.662 -0.644 -0.631 -0.607 -0.594 -0.547 -0.515 -0.501 -0.436 + + 1019 airs281SUBSET_aqua 1918 0.439809E-01 + -0.500 -0.548 -0.574 -0.599 -0.629 -0.653 -0.657 -0.688 -0.678 -0.685 + -0.701 -0.706 -0.703 -0.710 -0.706 -0.728 -0.718 -0.729 -0.735 -0.757 + -0.753 -0.749 -0.777 -0.765 -0.773 -0.769 -0.785 -0.796 -0.798 -0.823 + -0.825 -0.827 -0.833 -0.834 -0.846 -0.845 -0.864 -0.874 -0.862 -0.877 + -0.883 -0.875 -0.875 -0.883 -0.886 -0.878 -0.876 -0.884 -0.885 -0.883 + -0.874 -0.877 -0.864 -0.862 -0.859 -0.858 -0.836 -0.846 -0.841 -0.825 + -0.817 -0.814 -0.804 -0.799 -0.792 -0.776 -0.774 -0.775 -0.758 -0.756 + -0.783 -0.750 -0.748 -0.742 -0.738 -0.728 -0.737 -0.722 -0.719 -0.726 + -0.697 -0.703 -0.689 -0.684 -0.666 -0.647 -0.617 -0.589 -0.578 -0.525 + + 1020 airs281SUBSET_aqua 1924 0.438055E-01 + -0.522 -0.577 -0.602 -0.631 -0.671 -0.699 -0.706 -0.734 -0.725 -0.743 + -0.762 -0.771 -0.778 -0.783 -0.781 -0.808 -0.799 -0.817 -0.835 -0.846 + -0.847 -0.849 -0.879 -0.863 -0.878 -0.878 -0.891 -0.902 -0.899 -0.926 + -0.935 -0.937 -0.942 -0.936 -0.947 -0.944 -0.962 -0.966 -0.964 -0.985 + -0.974 -0.978 -0.975 -0.979 -0.989 -0.978 -0.978 -0.988 -0.987 -0.988 + -0.973 -0.982 -0.964 -0.968 -0.963 -0.958 -0.933 -0.949 -0.946 -0.931 + -0.918 -0.927 -0.908 -0.905 -0.894 -0.879 -0.872 -0.866 -0.852 -0.845 + -0.874 -0.848 -0.840 -0.829 -0.816 -0.807 -0.814 -0.793 -0.783 -0.783 + -0.762 -0.761 -0.741 -0.732 -0.712 -0.694 -0.655 -0.624 -0.610 -0.554 + + 1021 airs281SUBSET_aqua 1928 0.421038E-01 + -0.381 -0.446 -0.470 -0.496 -0.531 -0.569 -0.567 -0.605 -0.594 -0.612 + -0.630 -0.631 -0.635 -0.650 -0.652 -0.672 -0.664 -0.683 -0.698 -0.719 + -0.712 -0.718 -0.745 -0.739 -0.749 -0.733 -0.763 -0.769 -0.771 -0.801 + -0.800 -0.810 -0.814 -0.813 -0.819 -0.824 -0.838 -0.852 -0.841 -0.852 + -0.861 -0.857 -0.854 -0.854 -0.865 -0.857 -0.852 -0.867 -0.863 -0.864 + -0.852 -0.853 -0.845 -0.835 -0.836 -0.826 -0.806 -0.819 -0.812 -0.801 + -0.796 -0.791 -0.781 -0.770 -0.755 -0.748 -0.739 -0.739 -0.722 -0.711 + -0.742 -0.712 -0.705 -0.691 -0.696 -0.668 -0.680 -0.663 -0.653 -0.655 + -0.627 -0.623 -0.613 -0.603 -0.581 -0.558 -0.522 -0.493 -0.479 -0.420 + + 1022 airs281SUBSET_aqua 1937 0.409952E-01 + -0.522 -0.581 -0.580 -0.626 -0.661 -0.671 -0.688 -0.721 -0.717 -0.747 + -0.757 -0.771 -0.772 -0.792 -0.793 -0.812 -0.818 -0.851 -0.853 -0.891 + -0.879 -0.892 -0.929 -0.913 -0.931 -0.913 -0.953 -0.956 -0.954 -0.988 + -0.991 -0.988 -1.007 -0.999 -1.000 -1.005 -1.024 -1.046 -1.039 -1.052 + -1.041 -1.040 -1.042 -1.054 -1.058 -1.066 -1.057 -1.061 -1.072 -1.056 + -1.051 -1.052 -1.043 -1.036 -1.030 -1.029 -0.992 -1.011 -1.013 -0.997 + -0.981 -0.976 -0.970 -0.956 -0.954 -0.944 -0.923 -0.920 -0.893 -0.886 + -0.915 -0.890 -0.881 -0.860 -0.857 -0.830 -0.836 -0.812 -0.810 -0.800 + -0.788 -0.775 -0.761 -0.750 -0.727 -0.703 -0.656 -0.646 -0.644 -0.591 + + 1023 airs281SUBSET_aqua 1941 0.375243E-01 + -0.274 -0.386 -0.409 -0.495 -0.549 -0.582 -0.596 -0.656 -0.645 -0.692 + -0.718 -0.727 -0.746 -0.777 -0.775 -0.814 -0.819 -0.866 -0.903 -0.937 + -0.932 -0.942 -0.990 -0.969 -0.999 -0.973 -1.018 -1.054 -1.039 -1.083 + -1.093 -1.086 -1.099 -1.080 -1.097 -1.093 -1.125 -1.132 -1.138 -1.154 + -1.152 -1.132 -1.149 -1.149 -1.152 -1.163 -1.154 -1.146 -1.179 -1.147 + -1.150 -1.146 -1.143 -1.135 -1.136 -1.129 -1.084 -1.109 -1.110 -1.087 + -1.069 -1.082 -1.056 -1.040 -1.028 -1.016 -0.991 -0.982 -0.948 -0.931 + -0.959 -0.932 -0.921 -0.881 -0.889 -0.842 -0.845 -0.803 -0.795 -0.781 + -0.761 -0.727 -0.705 -0.680 -0.644 -0.616 -0.546 -0.506 -0.460 -0.384 + + 1024 airs281SUBSET_aqua 2099 -0.299826E-01 + 2.160 1.779 2.335 2.546 2.597 2.714 2.810 2.910 2.934 2.875 + 3.176 3.005 3.051 3.347 3.014 3.048 3.464 3.067 3.109 3.479 + 3.201 2.925 3.464 2.945 3.017 3.640 2.974 3.133 3.597 3.240 + 2.958 3.756 3.015 3.259 3.647 3.139 2.961 3.586 3.133 3.186 + 3.569 3.009 3.128 3.686 3.109 3.065 3.710 3.174 2.950 3.564 + 3.048 3.178 3.577 3.050 3.011 3.491 3.110 3.040 3.468 3.005 + 3.019 3.490 3.013 3.065 3.386 3.086 3.187 3.239 2.973 2.986 + 3.308 3.028 2.908 3.248 2.905 2.909 3.033 2.816 2.838 2.978 + 2.577 2.739 2.667 2.730 2.598 2.750 2.337 2.005 1.446 1.804 + + 1025 airs281SUBSET_aqua 2100 -0.200706E-01 + -1.887 -1.845 -1.458 -1.229 -1.231 -0.860 -0.784 -0.683 -0.381 -0.269 + -0.313 0.008 0.162 0.124 0.290 0.471 0.452 0.610 0.712 0.667 + 0.876 0.884 0.858 1.009 1.128 1.205 1.103 1.210 1.249 1.390 + 1.255 1.426 1.404 1.464 1.399 1.485 1.504 1.416 1.563 1.615 + 1.512 1.462 1.566 1.555 1.550 1.547 1.557 1.525 1.504 1.467 + 1.461 1.548 1.436 1.436 1.438 1.301 1.315 1.386 1.230 1.203 + 1.227 1.200 1.111 1.050 0.938 0.987 0.876 0.751 0.716 0.662 + 0.540 0.551 0.358 0.315 0.219 0.094 -0.102 -0.142 -0.240 -0.504 + -0.609 -0.730 -1.041 -0.908 -1.169 -1.484 -1.576 -1.793 -2.385 -2.365 + + 1026 airs281SUBSET_aqua 2101 -0.101323E-01 + 1.455 1.151 1.741 2.015 2.023 2.298 2.493 2.360 2.681 2.748 + 2.565 2.938 2.917 2.804 3.080 3.071 2.769 2.967 3.096 2.668 + 3.084 2.951 2.458 2.792 2.819 2.808 2.652 2.738 2.544 2.982 + 2.592 2.689 2.697 2.859 2.395 2.813 2.649 2.301 2.796 2.785 + 2.343 2.507 2.666 2.408 2.569 2.648 2.499 2.621 2.475 2.288 + 2.596 2.556 2.195 2.543 2.507 2.370 2.647 2.572 2.308 2.568 + 2.737 2.398 2.608 2.589 2.312 2.666 2.633 2.290 2.571 2.553 + 2.395 2.750 2.544 2.524 2.563 2.629 2.249 2.502 2.484 2.192 + 2.216 2.365 1.907 2.299 2.124 1.651 1.839 1.407 0.738 0.901 + + 1027 airs281SUBSET_aqua 2103 0.135202E-01 + -11.024-10.309 -9.608 -8.989 -8.514 -7.861 -7.440 -6.975 -6.518 -6.190 + -5.837 -5.414 -5.098 -4.930 -4.649 -4.437 -4.197 -4.055 -3.858 -3.715 + -3.582 -3.539 -3.387 -3.249 -3.112 -2.902 -2.975 -2.889 -2.774 -2.711 + -2.676 -2.477 -2.505 -2.398 -2.446 -2.340 -2.374 -2.347 -2.248 -2.211 + -2.217 -2.235 -2.211 -2.132 -2.192 -2.199 -2.240 -2.215 -2.287 -2.199 + -2.285 -2.262 -2.308 -2.334 -2.407 -2.434 -2.411 -2.441 -2.578 -2.630 + -2.649 -2.831 -2.888 -2.956 -3.107 -3.179 -3.282 -3.440 -3.499 -3.626 + -3.825 -4.026 -4.259 -4.347 -4.644 -4.851 -5.068 -5.383 -5.651 -5.944 + -6.350 -6.806 -7.206 -7.539 -8.073 -8.639 -9.192 -9.783-10.501-11.245 + + 1028 airs281SUBSET_aqua 2104 0.265440E-01 + -9.297 -8.643 -7.943 -7.281 -6.894 -6.331 -5.905 -5.541 -5.119 -4.788 + -4.540 -4.186 -3.950 -3.791 -3.560 -3.332 -3.128 -3.032 -2.846 -2.736 + -2.570 -2.560 -2.427 -2.319 -2.185 -2.057 -2.099 -2.039 -1.957 -1.848 + -1.846 -1.732 -1.722 -1.646 -1.690 -1.615 -1.628 -1.618 -1.544 -1.516 + -1.488 -1.532 -1.500 -1.456 -1.509 -1.497 -1.508 -1.477 -1.536 -1.501 + -1.538 -1.544 -1.594 -1.596 -1.626 -1.656 -1.634 -1.677 -1.778 -1.793 + -1.843 -1.932 -1.995 -2.080 -2.196 -2.198 -2.334 -2.450 -2.499 -2.614 + -2.738 -2.893 -3.097 -3.199 -3.448 -3.656 -3.800 -4.068 -4.337 -4.587 + -4.997 -5.296 -5.692 -5.975 -6.482 -6.950 -7.463 -8.165 -8.812 -9.487 + + 1029 airs281SUBSET_aqua 2106 0.500200E-01 + -0.538 -0.504 -0.405 -0.353 -0.330 -0.278 -0.212 -0.173 -0.150 -0.114 + -0.097 -0.062 -0.041 -0.044 -0.005 -0.005 0.008 0.018 0.001 0.009 + 0.028 -0.007 -0.009 0.006 0.015 0.029 -0.016 -0.012 -0.016 -0.011 + -0.033 -0.025 -0.039 -0.031 -0.040 -0.033 -0.071 -0.069 -0.075 -0.091 + -0.075 -0.088 -0.090 -0.083 -0.094 -0.100 -0.093 -0.080 -0.115 -0.078 + -0.092 -0.086 -0.088 -0.072 -0.083 -0.068 -0.041 -0.040 -0.049 -0.047 + -0.027 -0.036 -0.033 -0.030 -0.028 -0.004 -0.015 -0.017 -0.002 0.018 + -0.022 -0.020 -0.033 -0.026 -0.052 -0.057 -0.072 -0.086 -0.105 -0.132 + -0.173 -0.194 -0.229 -0.252 -0.306 -0.352 -0.404 -0.474 -0.562 -0.608 + + 1030 airs281SUBSET_aqua 2107 0.575348E-01 + 0.081 0.035 0.040 0.027 -0.001 -0.001 0.013 0.011 0.035 0.032 + 0.021 0.026 0.050 0.041 0.042 0.052 0.046 0.045 0.040 0.033 + 0.051 0.028 0.027 0.029 0.035 0.025 0.002 -0.014 -0.020 0.010 + -0.024 -0.022 -0.036 -0.018 -0.034 -0.052 -0.058 -0.071 -0.062 -0.078 + -0.078 -0.081 -0.083 -0.074 -0.093 -0.082 -0.112 -0.087 -0.093 -0.076 + -0.077 -0.072 -0.071 -0.075 -0.056 -0.064 -0.044 -0.047 -0.041 -0.035 + -0.023 -0.021 -0.002 -0.004 0.004 0.017 0.018 0.011 0.031 0.042 + 0.016 0.029 0.019 0.033 0.020 0.016 0.008 0.006 0.003 -0.010 + -0.021 -0.007 -0.012 -0.022 -0.024 -0.028 0.003 0.008 -0.018 0.021 + + 1031 airs281SUBSET_aqua 2108 0.620511E-01 + 0.038 -0.014 -0.037 -0.052 -0.078 -0.102 -0.092 -0.091 -0.084 -0.094 + -0.098 -0.104 -0.094 -0.101 -0.104 -0.095 -0.089 -0.098 -0.114 -0.116 + -0.107 -0.122 -0.127 -0.128 -0.130 -0.130 -0.145 -0.157 -0.156 -0.152 + -0.164 -0.156 -0.179 -0.176 -0.175 -0.182 -0.198 -0.200 -0.197 -0.199 + -0.198 -0.203 -0.190 -0.196 -0.206 -0.218 -0.206 -0.212 -0.206 -0.190 + -0.211 -0.202 -0.199 -0.208 -0.189 -0.209 -0.186 -0.185 -0.187 -0.173 + -0.162 -0.167 -0.160 -0.147 -0.154 -0.145 -0.134 -0.144 -0.141 -0.122 + -0.140 -0.127 -0.129 -0.109 -0.124 -0.111 -0.136 -0.124 -0.120 -0.112 + -0.117 -0.120 -0.124 -0.116 -0.119 -0.113 -0.076 -0.079 -0.073 -0.024 + + 1032 airs281SUBSET_aqua 2109 0.627320E-01 + -0.038 -0.086 -0.111 -0.131 -0.156 -0.179 -0.173 -0.185 -0.175 -0.177 + -0.181 -0.174 -0.167 -0.179 -0.171 -0.171 -0.158 -0.165 -0.176 -0.183 + -0.176 -0.188 -0.200 -0.197 -0.190 -0.195 -0.211 -0.225 -0.231 -0.227 + -0.241 -0.241 -0.256 -0.258 -0.262 -0.270 -0.275 -0.287 -0.280 -0.282 + -0.294 -0.299 -0.288 -0.289 -0.304 -0.305 -0.306 -0.309 -0.306 -0.295 + -0.294 -0.299 -0.285 -0.294 -0.283 -0.280 -0.262 -0.260 -0.256 -0.253 + -0.246 -0.232 -0.236 -0.220 -0.228 -0.212 -0.199 -0.214 -0.201 -0.189 + -0.210 -0.193 -0.201 -0.194 -0.205 -0.193 -0.200 -0.204 -0.203 -0.198 + -0.210 -0.217 -0.216 -0.208 -0.203 -0.209 -0.176 -0.166 -0.157 -0.110 + + 1033 airs281SUBSET_aqua 2110 0.605728E-01 + -0.187 -0.239 -0.255 -0.279 -0.306 -0.327 -0.332 -0.321 -0.330 -0.330 + -0.336 -0.335 -0.331 -0.344 -0.343 -0.341 -0.340 -0.348 -0.351 -0.364 + -0.354 -0.372 -0.375 -0.381 -0.375 -0.381 -0.392 -0.402 -0.408 -0.403 + -0.411 -0.406 -0.423 -0.419 -0.425 -0.433 -0.438 -0.453 -0.424 -0.430 + -0.445 -0.456 -0.432 -0.432 -0.452 -0.446 -0.449 -0.456 -0.447 -0.440 + -0.448 -0.445 -0.439 -0.433 -0.440 -0.434 -0.424 -0.410 -0.421 -0.417 + -0.413 -0.397 -0.399 -0.393 -0.403 -0.384 -0.379 -0.394 -0.374 -0.370 + -0.388 -0.366 -0.373 -0.350 -0.364 -0.358 -0.356 -0.356 -0.357 -0.345 + -0.351 -0.348 -0.354 -0.339 -0.342 -0.334 -0.313 -0.297 -0.297 -0.235 + + 1034 airs281SUBSET_aqua 2111 0.561995E-01 + -0.326 -0.399 -0.420 -0.444 -0.480 -0.497 -0.509 -0.504 -0.507 -0.504 + -0.511 -0.507 -0.493 -0.514 -0.503 -0.502 -0.493 -0.501 -0.507 -0.518 + -0.508 -0.529 -0.533 -0.530 -0.532 -0.537 -0.550 -0.566 -0.573 -0.560 + -0.587 -0.574 -0.599 -0.597 -0.614 -0.620 -0.629 -0.645 -0.618 -0.618 + -0.641 -0.660 -0.630 -0.643 -0.646 -0.658 -0.651 -0.664 -0.644 -0.645 + -0.638 -0.648 -0.633 -0.627 -0.629 -0.624 -0.603 -0.599 -0.605 -0.586 + -0.589 -0.567 -0.570 -0.562 -0.568 -0.544 -0.543 -0.555 -0.534 -0.532 + -0.549 -0.527 -0.533 -0.512 -0.533 -0.535 -0.531 -0.531 -0.534 -0.530 + -0.529 -0.533 -0.537 -0.517 -0.516 -0.516 -0.485 -0.467 -0.463 -0.384 + + 1035 airs281SUBSET_aqua 2112 0.510602E-01 + -0.543 -0.621 -0.631 -0.654 -0.691 -0.698 -0.711 -0.711 -0.709 -0.707 + -0.719 -0.706 -0.689 -0.714 -0.700 -0.702 -0.687 -0.702 -0.696 -0.715 + -0.699 -0.726 -0.730 -0.721 -0.730 -0.723 -0.740 -0.749 -0.751 -0.752 + -0.772 -0.757 -0.773 -0.784 -0.796 -0.803 -0.811 -0.831 -0.805 -0.810 + -0.827 -0.851 -0.818 -0.835 -0.838 -0.845 -0.837 -0.852 -0.833 -0.842 + -0.830 -0.843 -0.834 -0.822 -0.830 -0.831 -0.805 -0.801 -0.813 -0.788 + -0.797 -0.780 -0.783 -0.770 -0.776 -0.753 -0.750 -0.765 -0.745 -0.748 + -0.767 -0.741 -0.744 -0.727 -0.747 -0.748 -0.741 -0.739 -0.746 -0.745 + -0.732 -0.736 -0.746 -0.726 -0.720 -0.725 -0.696 -0.678 -0.681 -0.600 + + 1036 airs281SUBSET_aqua 2113 0.460380E-01 + -0.767 -0.843 -0.847 -0.865 -0.892 -0.888 -0.896 -0.893 -0.878 -0.869 + -0.875 -0.852 -0.831 -0.857 -0.838 -0.831 -0.818 -0.834 -0.816 -0.834 + -0.814 -0.850 -0.847 -0.836 -0.844 -0.825 -0.851 -0.865 -0.857 -0.869 + -0.893 -0.867 -0.888 -0.894 -0.921 -0.918 -0.935 -0.961 -0.931 -0.941 + -0.960 -0.982 -0.958 -0.972 -0.971 -0.982 -0.977 -0.997 -0.977 -0.993 + -0.976 -0.994 -0.982 -0.963 -0.976 -0.982 -0.950 -0.947 -0.965 -0.934 + -0.942 -0.930 -0.933 -0.925 -0.922 -0.902 -0.891 -0.916 -0.891 -0.902 + -0.923 -0.885 -0.897 -0.877 -0.903 -0.898 -0.901 -0.895 -0.906 -0.918 + -0.899 -0.908 -0.927 -0.910 -0.906 -0.921 -0.893 -0.884 -0.903 -0.815 + + 1037 airs281SUBSET_aqua 2114 0.420995E-01 + -0.892 -0.969 -0.966 -0.976 -1.015 -0.996 -1.003 -1.005 -0.997 -0.973 + -0.982 -0.960 -0.936 -0.967 -0.936 -0.930 -0.910 -0.925 -0.901 -0.929 + -0.898 -0.933 -0.933 -0.912 -0.925 -0.881 -0.929 -0.932 -0.921 -0.935 + -0.965 -0.923 -0.952 -0.962 -0.982 -0.988 -0.990 -1.026 -1.002 -0.997 + -1.036 -1.057 -1.028 -1.054 -1.042 -1.058 -1.061 -1.070 -1.060 -1.077 + -1.060 -1.080 -1.065 -1.053 -1.068 -1.074 -1.050 -1.047 -1.084 -1.039 + -1.045 -1.049 -1.044 -1.040 -1.045 -1.026 -1.006 -1.041 -1.017 -1.026 + -1.048 -1.008 -1.021 -1.006 -1.033 -1.027 -1.024 -1.011 -1.017 -1.037 + -1.020 -1.026 -1.049 -1.026 -1.015 -1.035 -1.008 -0.996 -1.027 -0.935 + + 1038 airs281SUBSET_aqua 2115 0.393321E-01 + -0.934 -1.007 -0.997 -1.003 -1.027 -1.008 -1.013 -1.018 -0.994 -0.976 + -0.988 -0.946 -0.924 -0.947 -0.918 -0.910 -0.894 -0.907 -0.877 -0.898 + -0.862 -0.904 -0.896 -0.885 -0.891 -0.851 -0.891 -0.898 -0.881 -0.905 + -0.924 -0.884 -0.916 -0.916 -0.950 -0.948 -0.973 -0.998 -0.974 -0.983 + -1.008 -1.033 -1.017 -1.034 -1.032 -1.043 -1.038 -1.063 -1.055 -1.076 + -1.056 -1.084 -1.066 -1.056 -1.072 -1.080 -1.047 -1.058 -1.083 -1.044 + -1.058 -1.061 -1.054 -1.055 -1.047 -1.026 -1.021 -1.044 -1.026 -1.041 + -1.063 -1.023 -1.039 -1.017 -1.043 -1.034 -1.041 -1.027 -1.040 -1.060 + -1.028 -1.038 -1.062 -1.039 -1.030 -1.056 -1.023 -1.020 -1.058 -0.968 + + 1039 airs281SUBSET_aqua 2116 0.374861E-01 + -0.962 -1.034 -1.018 -1.022 -1.038 -1.016 -1.019 -1.021 -0.993 -0.969 + -0.979 -0.939 -0.911 -0.939 -0.904 -0.891 -0.877 -0.890 -0.852 -0.871 + -0.832 -0.880 -0.871 -0.857 -0.864 -0.811 -0.867 -0.863 -0.850 -0.879 + -0.892 -0.851 -0.890 -0.882 -0.917 -0.921 -0.944 -0.976 -0.950 -0.960 + -0.993 -1.016 -1.003 -1.021 -1.014 -1.030 -1.028 -1.050 -1.045 -1.067 + -1.049 -1.083 -1.060 -1.052 -1.067 -1.076 -1.046 -1.061 -1.090 -1.044 + -1.059 -1.063 -1.058 -1.060 -1.052 -1.029 -1.021 -1.051 -1.030 -1.048 + -1.071 -1.030 -1.046 -1.026 -1.048 -1.044 -1.052 -1.032 -1.046 -1.074 + -1.035 -1.045 -1.073 -1.051 -1.040 -1.071 -1.042 -1.037 -1.082 -0.992 + + 1040 airs281SUBSET_aqua 2117 0.361424E-01 + -0.970 -1.039 -1.018 -1.015 -1.028 -1.007 -1.012 -1.006 -0.979 -0.950 + -0.957 -0.911 -0.885 -0.908 -0.868 -0.859 -0.841 -0.853 -0.817 -0.828 + -0.790 -0.835 -0.828 -0.817 -0.824 -0.766 -0.824 -0.825 -0.806 -0.837 + -0.855 -0.807 -0.851 -0.841 -0.885 -0.886 -0.912 -0.944 -0.917 -0.929 + -0.960 -0.988 -0.976 -0.997 -0.990 -1.007 -1.005 -1.027 -1.025 -1.050 + -1.032 -1.064 -1.044 -1.030 -1.058 -1.060 -1.029 -1.043 -1.070 -1.031 + -1.043 -1.049 -1.042 -1.044 -1.037 -1.013 -1.005 -1.035 -1.018 -1.034 + -1.057 -1.014 -1.033 -1.011 -1.038 -1.025 -1.040 -1.020 -1.038 -1.060 + -1.029 -1.037 -1.060 -1.040 -1.028 -1.068 -1.038 -1.036 -1.087 -0.997 + + 1041 airs281SUBSET_aqua 2118 0.350331E-01 + -0.951 -1.015 -0.995 -0.991 -1.006 -0.972 -0.973 -0.972 -0.939 -0.912 + -0.917 -0.870 -0.839 -0.860 -0.818 -0.806 -0.787 -0.803 -0.761 -0.773 + -0.732 -0.783 -0.771 -0.757 -0.769 -0.712 -0.767 -0.767 -0.751 -0.785 + -0.800 -0.752 -0.795 -0.783 -0.827 -0.831 -0.860 -0.890 -0.870 -0.878 + -0.912 -0.940 -0.932 -0.952 -0.942 -0.963 -0.963 -0.985 -0.984 -1.012 + -0.992 -1.022 -1.008 -0.992 -1.015 -1.027 -0.990 -1.007 -1.034 -0.994 + -1.005 -1.013 -1.008 -1.012 -1.001 -0.978 -0.970 -0.996 -0.981 -0.998 + -1.024 -0.978 -0.995 -0.977 -0.999 -0.992 -1.006 -0.983 -1.002 -1.026 + -0.987 -1.002 -1.031 -1.015 -0.999 -1.038 -1.011 -1.010 -1.062 -0.975 + + 1042 airs281SUBSET_aqua 2119 0.340060E-01 + -0.946 -1.011 -0.984 -0.978 -0.987 -0.955 -0.956 -0.954 -0.920 -0.889 + -0.893 -0.844 -0.810 -0.829 -0.791 -0.774 -0.755 -0.767 -0.724 -0.734 + -0.693 -0.748 -0.735 -0.720 -0.732 -0.668 -0.734 -0.727 -0.709 -0.749 + -0.764 -0.714 -0.757 -0.749 -0.790 -0.795 -0.825 -0.858 -0.835 -0.844 + -0.883 -0.908 -0.904 -0.925 -0.913 -0.933 -0.937 -0.961 -0.962 -0.989 + -0.966 -0.997 -0.983 -0.971 -0.993 -1.004 -0.968 -0.988 -1.016 -0.976 + -0.986 -1.000 -0.987 -0.993 -0.981 -0.957 -0.949 -0.983 -0.960 -0.984 + -1.009 -0.962 -0.981 -0.958 -0.985 -0.974 -0.990 -0.963 -0.983 -1.012 + -0.973 -0.987 -1.014 -0.994 -0.984 -1.025 -0.996 -0.997 -1.052 -0.968 + + 1043 airs281SUBSET_aqua 2120 0.331146E-01 + -0.960 -1.018 -0.991 -0.983 -0.992 -0.953 -0.954 -0.949 -0.916 -0.883 + -0.887 -0.832 -0.797 -0.817 -0.771 -0.756 -0.736 -0.750 -0.703 -0.712 + -0.670 -0.729 -0.715 -0.697 -0.710 -0.651 -0.714 -0.705 -0.683 -0.721 + -0.740 -0.691 -0.731 -0.723 -0.769 -0.773 -0.804 -0.831 -0.812 -0.826 + -0.860 -0.894 -0.885 -0.906 -0.900 -0.923 -0.925 -0.951 -0.951 -0.978 + -0.958 -0.990 -0.973 -0.962 -0.984 -0.994 -0.960 -0.978 -1.009 -0.970 + -0.978 -0.994 -0.982 -0.985 -0.974 -0.954 -0.944 -0.972 -0.956 -0.981 + -0.999 -0.956 -0.976 -0.955 -0.984 -0.969 -0.984 -0.964 -0.981 -1.016 + -0.971 -0.988 -1.013 -0.997 -0.984 -1.030 -1.002 -1.004 -1.064 -0.978 + + 1044 airs281SUBSET_aqua 2121 0.323085E-01 + -0.934 -0.993 -0.962 -0.952 -0.961 -0.925 -0.922 -0.918 -0.880 -0.844 + -0.850 -0.793 -0.751 -0.773 -0.727 -0.712 -0.692 -0.703 -0.653 -0.665 + -0.622 -0.680 -0.666 -0.650 -0.661 -0.596 -0.669 -0.663 -0.645 -0.676 + -0.699 -0.644 -0.688 -0.678 -0.726 -0.728 -0.755 -0.789 -0.772 -0.784 + -0.821 -0.852 -0.847 -0.869 -0.864 -0.883 -0.887 -0.914 -0.915 -0.944 + -0.925 -0.959 -0.943 -0.930 -0.954 -0.964 -0.928 -0.947 -0.979 -0.938 + -0.948 -0.963 -0.952 -0.958 -0.944 -0.923 -0.918 -0.944 -0.926 -0.949 + -0.973 -0.922 -0.940 -0.928 -0.954 -0.938 -0.955 -0.935 -0.952 -0.982 + -0.938 -0.957 -0.985 -0.967 -0.957 -1.000 -0.971 -0.978 -1.032 -0.951 + + 1045 airs281SUBSET_aqua 2122 0.311233E-01 + -0.719 -0.823 -0.768 -0.776 -0.799 -0.767 -0.778 -0.813 -0.783 -0.770 + -0.817 -0.770 -0.774 -0.814 -0.772 -0.776 -0.799 -0.829 -0.783 -0.826 + -0.801 -0.832 -0.842 -0.841 -0.847 -0.826 -0.835 -0.839 -0.846 -0.873 + -0.880 -0.845 -0.863 -0.869 -0.894 -0.893 -0.898 -0.912 -0.893 -0.906 + -0.907 -0.937 -0.926 -0.917 -0.904 -0.916 -0.908 -0.932 -0.921 -0.944 + -0.896 -0.937 -0.913 -0.900 -0.918 -0.940 -0.885 -0.905 -0.913 -0.891 + -0.878 -0.918 -0.913 -0.901 -0.884 -0.846 -0.835 -0.861 -0.838 -0.877 + -0.875 -0.852 -0.871 -0.854 -0.858 -0.848 -0.856 -0.822 -0.834 -0.878 + -0.811 -0.816 -0.851 -0.810 -0.795 -0.840 -0.793 -0.816 -0.876 -0.770 + + 1046 airs281SUBSET_aqua 2123 0.304179E-01 + -0.688 -0.789 -0.737 -0.752 -0.768 -0.732 -0.742 -0.787 -0.750 -0.741 + -0.785 -0.736 -0.733 -0.776 -0.735 -0.747 -0.761 -0.793 -0.758 -0.793 + -0.778 -0.808 -0.815 -0.815 -0.818 -0.802 -0.809 -0.810 -0.819 -0.841 + -0.856 -0.823 -0.833 -0.831 -0.873 -0.867 -0.868 -0.890 -0.866 -0.884 + -0.878 -0.912 -0.907 -0.902 -0.879 -0.890 -0.880 -0.910 -0.897 -0.919 + -0.873 -0.914 -0.886 -0.871 -0.889 -0.916 -0.852 -0.875 -0.883 -0.858 + -0.845 -0.896 -0.886 -0.884 -0.857 -0.827 -0.813 -0.829 -0.816 -0.845 + -0.853 -0.819 -0.847 -0.834 -0.829 -0.824 -0.825 -0.790 -0.805 -0.847 + -0.780 -0.783 -0.814 -0.778 -0.767 -0.803 -0.755 -0.788 -0.841 -0.742 + + 1047 airs281SUBSET_aqua 2128 0.275931E-01 + -0.691 -0.789 -0.726 -0.735 -0.758 -0.717 -0.725 -0.770 -0.728 -0.712 + -0.760 -0.705 -0.711 -0.751 -0.711 -0.716 -0.743 -0.766 -0.719 -0.757 + -0.731 -0.773 -0.775 -0.775 -0.775 -0.757 -0.773 -0.777 -0.777 -0.802 + -0.805 -0.780 -0.785 -0.793 -0.819 -0.825 -0.829 -0.840 -0.818 -0.832 + -0.831 -0.865 -0.848 -0.852 -0.830 -0.838 -0.826 -0.863 -0.844 -0.875 + -0.832 -0.858 -0.831 -0.829 -0.844 -0.863 -0.815 -0.834 -0.843 -0.820 + -0.811 -0.850 -0.842 -0.832 -0.815 -0.783 -0.768 -0.789 -0.774 -0.811 + -0.817 -0.783 -0.813 -0.795 -0.795 -0.786 -0.793 -0.753 -0.771 -0.823 + -0.751 -0.753 -0.792 -0.746 -0.736 -0.785 -0.733 -0.765 -0.836 -0.733 + + 1048 airs281SUBSET_aqua 2134 0.247456E-01 + -0.651 -0.745 -0.673 -0.677 -0.696 -0.656 -0.660 -0.705 -0.662 -0.648 + -0.698 -0.648 -0.643 -0.682 -0.649 -0.651 -0.681 -0.700 -0.654 -0.695 + -0.662 -0.700 -0.707 -0.714 -0.710 -0.687 -0.698 -0.702 -0.709 -0.737 + -0.731 -0.705 -0.714 -0.723 -0.749 -0.762 -0.759 -0.767 -0.745 -0.768 + -0.754 -0.787 -0.773 -0.778 -0.755 -0.762 -0.747 -0.793 -0.777 -0.805 + -0.759 -0.781 -0.764 -0.752 -0.768 -0.791 -0.738 -0.760 -0.772 -0.749 + -0.737 -0.779 -0.772 -0.769 -0.748 -0.712 -0.692 -0.721 -0.704 -0.742 + -0.747 -0.714 -0.744 -0.727 -0.724 -0.721 -0.734 -0.682 -0.700 -0.756 + -0.682 -0.691 -0.720 -0.679 -0.671 -0.718 -0.669 -0.707 -0.785 -0.686 + + 1049 airs281SUBSET_aqua 2141 0.224300E-01 + -0.610 -0.699 -0.630 -0.630 -0.643 -0.599 -0.608 -0.647 -0.602 -0.586 + -0.639 -0.578 -0.577 -0.621 -0.587 -0.585 -0.615 -0.633 -0.598 -0.629 + -0.596 -0.642 -0.641 -0.642 -0.646 -0.620 -0.631 -0.636 -0.643 -0.663 + -0.663 -0.640 -0.638 -0.653 -0.676 -0.694 -0.693 -0.694 -0.678 -0.694 + -0.694 -0.718 -0.698 -0.716 -0.686 -0.691 -0.684 -0.727 -0.704 -0.739 + -0.689 -0.710 -0.694 -0.688 -0.699 -0.721 -0.669 -0.692 -0.706 -0.682 + -0.666 -0.713 -0.703 -0.703 -0.679 -0.640 -0.620 -0.653 -0.633 -0.677 + -0.680 -0.641 -0.677 -0.661 -0.656 -0.652 -0.671 -0.618 -0.640 -0.695 + -0.619 -0.626 -0.654 -0.619 -0.609 -0.667 -0.615 -0.655 -0.740 -0.641 + + 1050 airs281SUBSET_aqua 2145 0.175892E-01 + -0.465 -0.528 -0.456 -0.445 -0.460 -0.417 -0.433 -0.466 -0.420 -0.411 + -0.444 -0.386 -0.398 -0.434 -0.401 -0.406 -0.426 -0.453 -0.421 -0.446 + -0.409 -0.453 -0.446 -0.466 -0.469 -0.426 -0.441 -0.445 -0.463 -0.466 + -0.464 -0.442 -0.441 -0.460 -0.479 -0.494 -0.492 -0.486 -0.474 -0.489 + -0.495 -0.515 -0.496 -0.512 -0.480 -0.488 -0.478 -0.520 -0.506 -0.541 + -0.487 -0.505 -0.498 -0.493 -0.497 -0.525 -0.467 -0.502 -0.515 -0.482 + -0.467 -0.514 -0.510 -0.505 -0.489 -0.449 -0.432 -0.454 -0.447 -0.485 + -0.488 -0.451 -0.488 -0.452 -0.462 -0.453 -0.469 -0.427 -0.438 -0.486 + -0.421 -0.432 -0.446 -0.422 -0.415 -0.470 -0.413 -0.456 -0.560 -0.478 + + 1051 airs281SUBSET_aqua 2149 0.168638E-01 + -0.469 -0.531 -0.458 -0.449 -0.463 -0.409 -0.427 -0.461 -0.411 -0.410 + -0.442 -0.377 -0.389 -0.430 -0.390 -0.395 -0.425 -0.448 -0.420 -0.441 + -0.404 -0.447 -0.432 -0.458 -0.456 -0.423 -0.433 -0.432 -0.454 -0.453 + -0.452 -0.433 -0.435 -0.451 -0.476 -0.487 -0.480 -0.480 -0.469 -0.477 + -0.487 -0.505 -0.491 -0.500 -0.469 -0.481 -0.462 -0.514 -0.489 -0.529 + -0.481 -0.498 -0.493 -0.486 -0.490 -0.511 -0.453 -0.486 -0.504 -0.480 + -0.461 -0.505 -0.497 -0.495 -0.486 -0.438 -0.425 -0.444 -0.429 -0.476 + -0.485 -0.447 -0.487 -0.451 -0.456 -0.441 -0.462 -0.417 -0.433 -0.481 + -0.414 -0.426 -0.438 -0.417 -0.410 -0.465 -0.410 -0.454 -0.563 -0.479 + + 1052 airs281SUBSET_aqua 2153 0.153216E-01 + -0.562 -0.621 -0.543 -0.533 -0.540 -0.485 -0.502 -0.536 -0.484 -0.472 + -0.510 -0.446 -0.449 -0.492 -0.449 -0.462 -0.487 -0.501 -0.468 -0.495 + -0.453 -0.499 -0.486 -0.514 -0.505 -0.469 -0.478 -0.483 -0.507 -0.505 + -0.507 -0.480 -0.482 -0.495 -0.512 -0.535 -0.521 -0.531 -0.516 -0.510 + -0.536 -0.551 -0.536 -0.545 -0.513 -0.524 -0.508 -0.553 -0.541 -0.581 + -0.517 -0.545 -0.538 -0.527 -0.531 -0.556 -0.499 -0.546 -0.555 -0.527 + -0.503 -0.553 -0.547 -0.545 -0.538 -0.496 -0.473 -0.502 -0.490 -0.528 + -0.544 -0.491 -0.543 -0.506 -0.515 -0.502 -0.521 -0.479 -0.501 -0.544 + -0.481 -0.501 -0.512 -0.487 -0.481 -0.536 -0.490 -0.539 -0.650 -0.569 + + 1053 airs281SUBSET_aqua 2164 0.125064E-01 + -0.618 -0.669 -0.586 -0.556 -0.562 -0.504 -0.519 -0.558 -0.502 -0.482 + -0.517 -0.448 -0.456 -0.487 -0.452 -0.460 -0.483 -0.495 -0.466 -0.488 + -0.448 -0.491 -0.477 -0.504 -0.496 -0.459 -0.469 -0.470 -0.489 -0.491 + -0.489 -0.458 -0.463 -0.484 -0.490 -0.516 -0.505 -0.503 -0.492 -0.495 + -0.520 -0.525 -0.507 -0.528 -0.488 -0.497 -0.483 -0.528 -0.514 -0.555 + -0.498 -0.518 -0.515 -0.507 -0.509 -0.536 -0.476 -0.518 -0.530 -0.516 + -0.488 -0.544 -0.528 -0.531 -0.523 -0.479 -0.465 -0.482 -0.477 -0.514 + -0.531 -0.483 -0.537 -0.506 -0.508 -0.496 -0.517 -0.477 -0.500 -0.550 + -0.485 -0.498 -0.524 -0.498 -0.497 -0.555 -0.514 -0.567 -0.698 -0.617 + + 1054 airs281SUBSET_aqua 2189 0.721694E-02 + -0.754 -0.779 -0.687 -0.640 -0.638 -0.580 -0.592 -0.632 -0.551 -0.526 + -0.573 -0.490 -0.496 -0.513 -0.497 -0.488 -0.514 -0.523 -0.487 -0.514 + -0.467 -0.506 -0.493 -0.509 -0.504 -0.465 -0.487 -0.479 -0.493 -0.502 + -0.479 -0.456 -0.464 -0.471 -0.484 -0.516 -0.492 -0.496 -0.489 -0.487 + -0.504 -0.512 -0.493 -0.517 -0.473 -0.488 -0.461 -0.520 -0.504 -0.538 + -0.492 -0.507 -0.515 -0.493 -0.502 -0.529 -0.463 -0.507 -0.526 -0.507 + -0.486 -0.531 -0.520 -0.533 -0.518 -0.478 -0.467 -0.490 -0.493 -0.536 + -0.546 -0.494 -0.560 -0.520 -0.535 -0.516 -0.550 -0.506 -0.524 -0.590 + -0.518 -0.541 -0.573 -0.556 -0.553 -0.622 -0.580 -0.652 -0.804 -0.728 + + 1055 airs281SUBSET_aqua 2197 0.560238E-02 + -0.811 -0.830 -0.727 -0.677 -0.683 -0.620 -0.632 -0.664 -0.576 -0.560 + -0.596 -0.514 -0.514 -0.532 -0.510 -0.504 -0.532 -0.541 -0.504 -0.520 + -0.481 -0.523 -0.514 -0.524 -0.525 -0.467 -0.496 -0.495 -0.505 -0.506 + -0.488 -0.473 -0.473 -0.480 -0.497 -0.531 -0.508 -0.507 -0.505 -0.494 + -0.511 -0.521 -0.508 -0.523 -0.488 -0.497 -0.469 -0.529 -0.523 -0.550 + -0.499 -0.511 -0.529 -0.507 -0.508 -0.534 -0.474 -0.513 -0.540 -0.520 + -0.495 -0.542 -0.532 -0.541 -0.527 -0.488 -0.477 -0.504 -0.505 -0.555 + -0.557 -0.501 -0.575 -0.528 -0.560 -0.532 -0.570 -0.522 -0.545 -0.614 + -0.540 -0.567 -0.597 -0.581 -0.587 -0.655 -0.614 -0.689 -0.852 -0.777 + + 1056 airs281SUBSET_aqua 2209 0.488770E-02 + -0.851 -0.867 -0.771 -0.704 -0.714 -0.652 -0.659 -0.672 -0.603 -0.574 + -0.608 -0.536 -0.527 -0.548 -0.520 -0.527 -0.549 -0.552 -0.508 -0.530 + -0.498 -0.534 -0.518 -0.532 -0.532 -0.471 -0.505 -0.507 -0.517 -0.520 + -0.501 -0.487 -0.492 -0.480 -0.499 -0.543 -0.506 -0.500 -0.503 -0.498 + -0.516 -0.532 -0.509 -0.525 -0.498 -0.493 -0.487 -0.537 -0.514 -0.556 + -0.512 -0.520 -0.530 -0.512 -0.524 -0.534 -0.480 -0.523 -0.548 -0.527 + -0.500 -0.556 -0.536 -0.550 -0.541 -0.509 -0.493 -0.516 -0.504 -0.558 + -0.565 -0.512 -0.595 -0.539 -0.569 -0.540 -0.578 -0.534 -0.563 -0.632 + -0.551 -0.583 -0.620 -0.601 -0.609 -0.674 -0.638 -0.721 -0.886 -0.813 + + 1057 airs281SUBSET_aqua 2226 0.513566E-02 + -0.861 -0.880 -0.772 -0.707 -0.715 -0.659 -0.658 -0.684 -0.607 -0.585 + -0.621 -0.539 -0.528 -0.549 -0.537 -0.533 -0.557 -0.565 -0.524 -0.539 + -0.500 -0.545 -0.530 -0.539 -0.528 -0.484 -0.506 -0.512 -0.524 -0.516 + -0.500 -0.491 -0.472 -0.499 -0.507 -0.553 -0.532 -0.513 -0.504 -0.507 + -0.526 -0.533 -0.532 -0.540 -0.495 -0.490 -0.497 -0.548 -0.530 -0.564 + -0.520 -0.534 -0.549 -0.524 -0.523 -0.540 -0.492 -0.536 -0.561 -0.539 + -0.510 -0.550 -0.547 -0.551 -0.545 -0.509 -0.510 -0.521 -0.519 -0.570 + -0.589 -0.515 -0.601 -0.560 -0.586 -0.557 -0.596 -0.544 -0.583 -0.633 + -0.569 -0.588 -0.633 -0.613 -0.616 -0.691 -0.646 -0.739 -0.899 -0.826 + + 1058 airs281SUBSET_aqua 2234 0.711476E-02 + -0.834 -0.853 -0.752 -0.696 -0.700 -0.645 -0.646 -0.670 -0.589 -0.578 + -0.611 -0.528 -0.518 -0.545 -0.541 -0.525 -0.548 -0.575 -0.522 -0.542 + -0.506 -0.551 -0.530 -0.537 -0.530 -0.497 -0.505 -0.513 -0.531 -0.526 + -0.508 -0.494 -0.484 -0.503 -0.514 -0.540 -0.525 -0.513 -0.512 -0.509 + -0.530 -0.536 -0.523 -0.542 -0.490 -0.494 -0.496 -0.542 -0.539 -0.567 + -0.529 -0.524 -0.555 -0.529 -0.528 -0.553 -0.491 -0.534 -0.570 -0.543 + -0.511 -0.557 -0.550 -0.564 -0.550 -0.514 -0.510 -0.518 -0.529 -0.575 + -0.583 -0.519 -0.597 -0.572 -0.588 -0.561 -0.600 -0.545 -0.583 -0.638 + -0.573 -0.601 -0.631 -0.606 -0.606 -0.690 -0.630 -0.719 -0.877 -0.803 + + 1059 airs281SUBSET_aqua 2280 0.612109E-02 + -0.869 -0.879 -0.778 -0.705 -0.710 -0.658 -0.647 -0.677 -0.605 -0.581 + -0.613 -0.537 -0.525 -0.542 -0.532 -0.533 -0.549 -0.559 -0.514 -0.537 + -0.501 -0.550 -0.525 -0.532 -0.521 -0.484 -0.501 -0.516 -0.551 -0.513 + -0.513 -0.496 -0.484 -0.509 -0.527 -0.556 -0.541 -0.537 -0.521 -0.526 + -0.550 -0.562 -0.535 -0.564 -0.523 -0.516 -0.511 -0.556 -0.540 -0.579 + -0.529 -0.553 -0.561 -0.540 -0.549 -0.568 -0.500 -0.557 -0.578 -0.547 + -0.523 -0.564 -0.562 -0.585 -0.566 -0.528 -0.514 -0.538 -0.543 -0.581 + -0.605 -0.541 -0.626 -0.603 -0.614 -0.581 -0.622 -0.590 -0.610 -0.665 + -0.617 -0.653 -0.686 -0.663 -0.680 -0.768 -0.717 -0.808 -0.981 -0.910 + + 1060 airs281SUBSET_aqua 2318 0.556809E-02 + -0.695 -0.717 -0.591 -0.523 -0.526 -0.460 -0.466 -0.469 -0.416 -0.397 + -0.412 -0.338 -0.328 -0.357 -0.347 -0.342 -0.349 -0.366 -0.342 -0.347 + -0.325 -0.356 -0.360 -0.360 -0.342 -0.315 -0.332 -0.343 -0.373 -0.342 + -0.346 -0.331 -0.330 -0.358 -0.335 -0.385 -0.379 -0.363 -0.362 -0.364 + -0.385 -0.397 -0.379 -0.392 -0.374 -0.351 -0.352 -0.409 -0.379 -0.405 + -0.383 -0.387 -0.393 -0.380 -0.390 -0.396 -0.343 -0.396 -0.416 -0.390 + -0.373 -0.400 -0.408 -0.401 -0.397 -0.358 -0.354 -0.364 -0.369 -0.411 + -0.437 -0.359 -0.437 -0.414 -0.435 -0.403 -0.444 -0.408 -0.439 -0.484 + -0.423 -0.454 -0.501 -0.493 -0.486 -0.572 -0.539 -0.628 -0.817 -0.749 + + 1061 airs281SUBSET_aqua 2321 0.252574E-02 + -0.943 -0.938 -0.810 -0.742 -0.728 -0.668 -0.670 -0.669 -0.598 -0.586 + -0.596 -0.529 -0.503 -0.522 -0.518 -0.518 -0.523 -0.525 -0.495 -0.503 + -0.478 -0.506 -0.493 -0.503 -0.487 -0.456 -0.466 -0.475 -0.508 -0.463 + -0.480 -0.462 -0.441 -0.476 -0.474 -0.514 -0.502 -0.491 -0.485 -0.490 + -0.503 -0.530 -0.510 -0.512 -0.486 -0.466 -0.469 -0.525 -0.499 -0.537 + -0.493 -0.513 -0.526 -0.503 -0.513 -0.515 -0.474 -0.523 -0.555 -0.503 + -0.513 -0.533 -0.529 -0.536 -0.545 -0.498 -0.489 -0.507 -0.511 -0.563 + -0.574 -0.510 -0.597 -0.571 -0.601 -0.574 -0.600 -0.569 -0.603 -0.673 + -0.613 -0.645 -0.703 -0.684 -0.696 -0.801 -0.751 -0.846 -1.037 -0.987 + + 1062 airs281SUBSET_aqua 2325 0.108450E-01 + -0.009 -0.030 0.076 0.147 0.120 0.194 0.151 0.180 0.187 0.194 + 0.233 0.265 0.245 0.225 0.211 0.218 0.211 0.190 0.200 0.181 + 0.206 0.183 0.134 0.171 0.155 0.213 0.162 0.142 0.110 0.145 + 0.116 0.131 0.127 0.116 0.135 0.073 0.100 0.076 0.114 0.094 + 0.061 0.048 0.096 0.056 0.076 0.110 0.104 0.040 0.071 0.058 + 0.080 0.078 0.067 0.100 0.069 0.074 0.125 0.083 0.067 0.081 + 0.107 0.087 0.098 0.121 0.087 0.123 0.133 0.114 0.133 0.143 + 0.091 0.177 0.128 0.151 0.153 0.155 0.119 0.171 0.128 0.140 + 0.167 0.175 0.116 0.116 0.169 0.057 0.130 0.058 -0.155 -0.072 + + 1063 airs281SUBSET_aqua 2328 0.166165E-02 + -0.922 -0.916 -0.789 -0.708 -0.695 -0.637 -0.638 -0.633 -0.567 -0.549 + -0.571 -0.498 -0.458 -0.489 -0.468 -0.475 -0.481 -0.498 -0.461 -0.472 + -0.444 -0.461 -0.458 -0.474 -0.454 -0.424 -0.432 -0.438 -0.475 -0.429 + -0.447 -0.422 -0.420 -0.451 -0.431 -0.487 -0.467 -0.468 -0.456 -0.450 + -0.472 -0.490 -0.482 -0.483 -0.462 -0.443 -0.445 -0.493 -0.474 -0.505 + -0.466 -0.475 -0.483 -0.475 -0.474 -0.496 -0.437 -0.493 -0.512 -0.479 + -0.469 -0.500 -0.496 -0.501 -0.502 -0.471 -0.458 -0.474 -0.475 -0.515 + -0.551 -0.478 -0.560 -0.532 -0.563 -0.536 -0.563 -0.538 -0.577 -0.636 + -0.579 -0.607 -0.662 -0.650 -0.662 -0.760 -0.723 -0.834 -1.018 -0.968 + + 1064 airs281SUBSET_aqua 2333 0.822694E-03 + -0.981 -0.969 -0.838 -0.759 -0.740 -0.672 -0.684 -0.672 -0.593 -0.579 + -0.599 -0.521 -0.492 -0.520 -0.500 -0.496 -0.512 -0.521 -0.474 -0.490 + -0.470 -0.493 -0.481 -0.488 -0.462 -0.436 -0.457 -0.456 -0.490 -0.448 + -0.466 -0.447 -0.434 -0.457 -0.451 -0.504 -0.475 -0.473 -0.478 -0.472 + -0.489 -0.510 -0.500 -0.487 -0.477 -0.458 -0.463 -0.511 -0.481 -0.509 + -0.490 -0.493 -0.495 -0.498 -0.499 -0.509 -0.454 -0.514 -0.536 -0.498 + -0.496 -0.526 -0.516 -0.527 -0.529 -0.491 -0.470 -0.493 -0.506 -0.551 + -0.579 -0.503 -0.593 -0.571 -0.604 -0.561 -0.590 -0.577 -0.604 -0.664 + -0.612 -0.652 -0.706 -0.693 -0.714 -0.806 -0.765 -0.874 -1.064 -1.019 + + 1065 airs281SUBSET_aqua 2339 0.118031E-01 + 0.083 0.065 0.171 0.233 0.219 0.273 0.252 0.257 0.263 0.294 + 0.308 0.344 0.331 0.309 0.291 0.294 0.292 0.254 0.267 0.240 + 0.284 0.250 0.202 0.240 0.235 0.266 0.237 0.218 0.180 0.201 + 0.181 0.205 0.193 0.173 0.192 0.132 0.163 0.152 0.168 0.145 + 0.133 0.107 0.152 0.128 0.140 0.176 0.153 0.094 0.132 0.121 + 0.140 0.129 0.120 0.146 0.143 0.145 0.181 0.161 0.119 0.136 + 0.162 0.149 0.166 0.171 0.161 0.182 0.199 0.176 0.190 0.212 + 0.159 0.248 0.199 0.212 0.226 0.233 0.196 0.242 0.196 0.216 + 0.250 0.252 0.199 0.196 0.251 0.156 0.215 0.157 -0.059 0.020 + + 1066 airs281SUBSET_aqua 2348 0.213117E-02 + -0.941 -0.932 -0.800 -0.729 -0.713 -0.647 -0.663 -0.662 -0.583 -0.559 + -0.573 -0.505 -0.475 -0.511 -0.495 -0.495 -0.510 -0.514 -0.470 -0.478 + -0.444 -0.489 -0.468 -0.480 -0.462 -0.443 -0.438 -0.437 -0.488 -0.448 + -0.453 -0.433 -0.427 -0.452 -0.450 -0.490 -0.461 -0.474 -0.460 -0.475 + -0.486 -0.512 -0.490 -0.492 -0.463 -0.441 -0.466 -0.510 -0.479 -0.526 + -0.480 -0.493 -0.509 -0.497 -0.488 -0.517 -0.467 -0.504 -0.538 -0.506 + -0.495 -0.520 -0.517 -0.536 -0.520 -0.493 -0.473 -0.487 -0.502 -0.539 + -0.568 -0.494 -0.577 -0.553 -0.589 -0.555 -0.584 -0.563 -0.596 -0.657 + -0.601 -0.625 -0.691 -0.669 -0.681 -0.778 -0.739 -0.846 -1.033 -0.977 + + 1067 airs281SUBSET_aqua 2353 0.125926E-01 + 0.178 0.168 0.281 0.332 0.315 0.376 0.347 0.360 0.366 0.392 + 0.409 0.445 0.432 0.410 0.393 0.389 0.383 0.363 0.367 0.348 + 0.379 0.344 0.307 0.350 0.322 0.363 0.331 0.316 0.265 0.313 + 0.280 0.311 0.295 0.277 0.290 0.238 0.270 0.249 0.279 0.263 + 0.229 0.201 0.254 0.223 0.231 0.263 0.249 0.192 0.240 0.216 + 0.239 0.250 0.221 0.253 0.247 0.237 0.282 0.252 0.221 0.237 + 0.266 0.240 0.264 0.276 0.254 0.278 0.299 0.281 0.307 0.306 + 0.264 0.346 0.306 0.311 0.322 0.327 0.300 0.346 0.300 0.311 + 0.350 0.342 0.289 0.283 0.333 0.240 0.313 0.247 0.028 0.115 + + 1068 airs281SUBSET_aqua 2355 0.378958E-02 + -0.687 -0.695 -0.554 -0.489 -0.484 -0.416 -0.430 -0.421 -0.360 -0.344 + -0.359 -0.273 -0.269 -0.296 -0.287 -0.288 -0.299 -0.305 -0.272 -0.291 + -0.262 -0.288 -0.298 -0.279 -0.281 -0.245 -0.264 -0.257 -0.307 -0.269 + -0.294 -0.266 -0.262 -0.287 -0.270 -0.330 -0.300 -0.299 -0.293 -0.308 + -0.324 -0.336 -0.310 -0.334 -0.302 -0.288 -0.298 -0.342 -0.315 -0.349 + -0.313 -0.320 -0.329 -0.320 -0.322 -0.345 -0.287 -0.333 -0.370 -0.321 + -0.322 -0.346 -0.341 -0.351 -0.349 -0.318 -0.292 -0.306 -0.318 -0.353 + -0.380 -0.307 -0.391 -0.361 -0.383 -0.352 -0.394 -0.361 -0.394 -0.445 + -0.391 -0.422 -0.466 -0.470 -0.459 -0.552 -0.518 -0.611 -0.805 -0.740 + + 1069 airs281SUBSET_aqua 2357 0.826303E-02 + -0.353 -0.408 -0.252 -0.261 -0.176 -0.080 -0.106 -0.129 -0.138 -0.031 + 0.060 0.215 0.009 0.016 0.092 0.040 0.104 0.001 0.089 0.017 + 0.067 -0.062 0.021 0.054 -0.002 0.113 0.076 -0.057 0.022 0.102 + 0.071 0.228 -0.042 0.026 -0.023 -0.134 -0.028 -0.026 0.030 0.011 + 0.070 -0.081 -0.120 0.074 -0.020 0.046 -0.079 -0.034 -0.022 -0.043 + -0.100 -0.034 0.039 0.090 0.055 -0.158 -0.035 -0.030 -0.113 -0.062 + -0.060 -0.070 0.008 -0.091 -0.066 -0.075 -0.029 0.056 0.046 0.048 + -0.153 0.046 -0.042 -0.069 -0.012 -0.030 -0.175 -0.096 -0.005 -0.225 + 0.040 -0.080 -0.187 -0.124 -0.017 -0.238 -0.164 -0.290 -0.489 -0.428 + + 1070 airs281SUBSET_aqua 2363 0.682664E-02 + -0.449 -0.468 -0.334 -0.256 -0.256 -0.186 -0.207 -0.196 -0.147 -0.138 + -0.136 -0.069 -0.077 -0.100 -0.083 -0.090 -0.092 -0.098 -0.085 -0.094 + -0.077 -0.106 -0.120 -0.098 -0.107 -0.075 -0.088 -0.089 -0.139 -0.106 + -0.129 -0.098 -0.097 -0.121 -0.115 -0.169 -0.141 -0.146 -0.127 -0.135 + -0.152 -0.181 -0.151 -0.171 -0.151 -0.123 -0.125 -0.196 -0.156 -0.167 + -0.154 -0.156 -0.166 -0.150 -0.155 -0.177 -0.123 -0.165 -0.188 -0.161 + -0.147 -0.175 -0.173 -0.168 -0.169 -0.143 -0.117 -0.135 -0.129 -0.155 + -0.185 -0.109 -0.167 -0.157 -0.175 -0.141 -0.187 -0.145 -0.184 -0.222 + -0.165 -0.193 -0.237 -0.228 -0.218 -0.310 -0.264 -0.356 -0.559 -0.493 + + 1071 airs281SUBSET_aqua 2370 0.801402E-02 + -0.333 -0.351 -0.219 -0.154 -0.163 -0.102 -0.110 -0.110 -0.064 -0.057 + -0.061 0.011 -0.004 -0.028 -0.021 -0.013 -0.026 -0.046 -0.022 -0.046 + -0.012 -0.047 -0.072 -0.042 -0.056 -0.018 -0.037 -0.037 -0.080 -0.049 + -0.078 -0.051 -0.058 -0.083 -0.065 -0.119 -0.087 -0.100 -0.077 -0.107 + -0.114 -0.142 -0.107 -0.135 -0.111 -0.089 -0.086 -0.136 -0.110 -0.132 + -0.114 -0.107 -0.133 -0.111 -0.119 -0.131 -0.080 -0.118 -0.150 -0.122 + -0.108 -0.132 -0.111 -0.117 -0.123 -0.098 -0.068 -0.082 -0.084 -0.102 + -0.138 -0.055 -0.114 -0.094 -0.115 -0.085 -0.129 -0.089 -0.120 -0.146 + -0.095 -0.116 -0.165 -0.156 -0.137 -0.227 -0.179 -0.256 -0.458 -0.391 + + 1072 airs281SUBSET_aqua 2371 0.629497E-02 + -0.447 -0.464 -0.329 -0.261 -0.267 -0.195 -0.209 -0.201 -0.157 -0.151 + -0.141 -0.084 -0.085 -0.113 -0.098 -0.097 -0.108 -0.119 -0.103 -0.113 + -0.101 -0.117 -0.144 -0.121 -0.125 -0.080 -0.102 -0.101 -0.152 -0.120 + -0.143 -0.115 -0.116 -0.138 -0.125 -0.170 -0.152 -0.160 -0.148 -0.158 + -0.173 -0.192 -0.174 -0.188 -0.164 -0.134 -0.154 -0.205 -0.162 -0.200 + -0.167 -0.175 -0.183 -0.165 -0.178 -0.189 -0.136 -0.182 -0.208 -0.183 + -0.164 -0.201 -0.185 -0.195 -0.198 -0.155 -0.125 -0.147 -0.156 -0.174 + -0.200 -0.123 -0.195 -0.178 -0.193 -0.162 -0.195 -0.161 -0.208 -0.235 + -0.173 -0.207 -0.252 -0.248 -0.236 -0.323 -0.272 -0.358 -0.558 -0.491 + + 1073 airs281SUBSET_aqua 2377 0.645234E-02 + -0.412 -0.428 -0.289 -0.226 -0.215 -0.158 -0.173 -0.158 -0.101 -0.097 + -0.083 -0.027 -0.041 -0.070 -0.050 -0.046 -0.051 -0.079 -0.040 -0.062 + -0.043 -0.061 -0.084 -0.059 -0.056 -0.025 -0.050 -0.054 -0.093 -0.061 + -0.082 -0.054 -0.056 -0.092 -0.073 -0.122 -0.099 -0.100 -0.089 -0.096 + -0.129 -0.144 -0.112 -0.136 -0.107 -0.088 -0.092 -0.141 -0.114 -0.142 + -0.113 -0.124 -0.136 -0.118 -0.125 -0.136 -0.097 -0.125 -0.167 -0.128 + -0.117 -0.145 -0.132 -0.133 -0.140 -0.107 -0.074 -0.102 -0.098 -0.123 + -0.163 -0.069 -0.146 -0.139 -0.143 -0.119 -0.153 -0.129 -0.161 -0.190 + -0.144 -0.173 -0.224 -0.213 -0.194 -0.284 -0.241 -0.324 -0.525 -0.456 + + 1074 amsua_aqua 1 0.524094E-02 + -3.987 -4.015 -3.992 -3.955 -3.776 -3.744 -3.634 -3.556 -3.542 -3.430 + -3.382 -3.293 -3.163 -3.020 -2.988 -2.967 -2.977 -2.965 -3.023 -3.070 + -3.090 -3.278 -3.483 -3.843 -4.087 -4.114 -4.165 -4.173 -4.007 -3.926 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1075 amsua_aqua 2 0.283729E-02 + -1.638 -1.909 -2.093 -2.302 -2.380 -2.391 -2.400 -2.314 -2.302 -2.196 + -2.136 -2.106 -1.960 -1.930 -1.823 -1.845 -1.804 -1.821 -1.916 -1.974 + -2.009 -2.194 -2.386 -2.607 -2.742 -2.811 -2.810 -2.789 -2.611 -2.364 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1076 amsua_aqua 3 0.171295E-01 + -0.580 -0.087 0.347 0.753 1.168 1.332 1.569 1.683 1.975 2.153 + 2.362 2.228 2.366 2.305 2.373 2.358 2.279 2.155 1.988 1.836 + 1.555 1.267 1.072 0.801 0.484 0.139 -0.259 -0.894 -1.470 -2.466 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1077 amsua_aqua 4 0.382441E-01 + -2.370 -2.394 -2.159 -1.776 -1.314 -0.987 -0.706 -0.515 -0.345 -0.150 + 0.035 0.167 0.274 0.389 0.405 0.392 0.371 0.259 0.135 0.025 + -0.178 -0.436 -0.620 -0.883 -1.165 -1.601 -2.167 -2.701 -3.080 -3.285 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1078 amsua_aqua 5 0.483379E-01 + -1.709 -1.746 -1.656 -1.438 -1.162 -0.998 -0.904 -0.805 -0.721 -0.658 + -0.591 -0.517 -0.489 -0.466 -0.465 -0.466 -0.482 -0.502 -0.552 -0.607 + -0.668 -0.754 -0.853 -0.996 -1.121 -1.375 -1.755 -2.120 -2.348 -2.513 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1079 amsua_aqua 6 0.488233E-01 + -1.073 -1.057 -1.031 -0.984 -0.842 -0.793 -0.782 -0.742 -0.738 -0.732 + -0.728 -0.687 -0.703 -0.721 -0.759 -0.779 -0.802 -0.836 -0.844 -0.895 + -0.898 -0.987 -1.035 -1.132 -1.221 -1.395 -1.665 -1.932 -2.152 -2.292 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1080 amsua_aqua 7 0.385469E-01 + -1.410 -1.414 -1.446 -1.376 -1.286 -1.228 -1.218 -1.207 -1.203 -1.208 + -1.206 -1.219 -1.215 -1.248 -1.264 -1.286 -1.294 -1.320 -1.349 -1.354 + -1.422 -1.463 -1.491 -1.570 -1.674 -1.808 -2.056 -2.269 -2.447 -2.573 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1081 amsua_aqua 8 0.247199E-01 + -1.359 -1.417 -1.354 -1.199 -0.981 -0.884 -0.852 -0.857 -0.781 -0.774 + -0.756 -0.817 -0.756 -0.835 -0.841 -0.861 -0.887 -0.906 -0.911 -0.872 + -0.946 -1.003 -0.987 -1.078 -1.137 -1.326 -1.511 -1.857 -2.054 -2.382 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1082 amsua_aqua 9 -0.129174E-01 + -0.766 -0.714 -0.762 -0.651 -0.591 -0.584 -0.601 -0.594 -0.521 -0.510 + -0.445 -0.498 -0.508 -0.614 -0.589 -0.601 -0.649 -0.687 -0.702 -0.761 + -0.815 -0.893 -0.947 -1.023 -1.092 -1.166 -1.322 -1.548 -1.659 -1.867 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1083 amsua_aqua 10 -0.305115E-01 + -0.600 -0.555 -0.574 -0.527 -0.449 -0.413 -0.407 -0.400 -0.374 -0.340 + -0.328 -0.303 -0.299 -0.294 -0.296 -0.308 -0.336 -0.376 -0.417 -0.469 + -0.541 -0.600 -0.669 -0.743 -0.816 -0.904 -1.101 -1.335 -1.483 -1.618 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1084 amsua_aqua 11 -0.453832E-01 + -0.712 -0.631 -0.625 -0.556 -0.460 -0.412 -0.382 -0.357 -0.316 -0.277 + -0.240 -0.213 -0.204 -0.187 -0.192 -0.205 -0.229 -0.270 -0.325 -0.382 + -0.464 -0.542 -0.624 -0.713 -0.810 -0.910 -1.123 -1.377 -1.554 -1.746 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1085 amsua_aqua 12 -0.699151E-01 + -1.458 -1.308 -1.250 -1.128 -0.992 -0.916 -0.862 -0.808 -0.748 -0.686 + -0.637 -0.594 -0.569 -0.550 -0.550 -0.571 -0.593 -0.646 -0.717 -0.789 + -0.883 -0.984 -1.097 -1.207 -1.326 -1.460 -1.709 -2.032 -2.260 -2.534 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1086 amsua_aqua 13 -0.923337E-01 + -2.880 -2.691 -2.607 -2.448 -2.289 -2.192 -2.112 -2.035 -1.956 -1.870 + -1.804 -1.746 -1.701 -1.683 -1.683 -1.694 -1.727 -1.789 -1.877 -1.963 + -2.076 -2.203 -2.341 -2.473 -2.614 -2.783 -3.061 -3.430 -3.702 -4.008 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1087 amsua_aqua 14 -0.581326E-01 + -3.183 -3.206 -3.275 -3.242 -3.175 -3.156 -3.134 -3.111 -3.074 -3.024 + -2.974 -2.938 -2.917 -2.900 -2.908 -2.914 -2.945 -2.998 -3.079 -3.147 + -3.231 -3.335 -3.425 -3.520 -3.588 -3.697 -3.889 -4.151 -4.288 -4.389 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1088 amsua_aqua 15 0.857854E-02 + 1.645 1.331 1.233 1.289 1.506 1.680 1.944 2.105 2.201 2.361 + 2.399 2.427 2.531 2.610 2.675 2.612 2.604 2.511 2.429 2.265 + 2.332 2.194 2.139 2.019 1.914 1.819 1.704 1.643 1.846 2.233 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1089 avhrr3_n16 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1090 avhrr3_n16 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1091 avhrr3_n16 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1092 avhrr3_n17 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1093 avhrr3_n17 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1094 avhrr3_n17 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1095 avhrr3_n18 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1096 avhrr3_n18 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1097 avhrr3_n18 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1098 ssmi_f13 1 0.321687E-02 + -1.681 -1.582 -1.551 -1.513 -1.444 -1.520 -1.445 -1.526 -1.500 -1.513 + -1.489 -1.508 -1.515 -1.510 -1.531 -1.529 -1.521 -1.549 -1.535 -1.561 + -1.554 -1.563 -1.576 -1.588 -1.586 -1.553 -1.572 -1.580 -1.572 -1.615 + -1.592 -1.594 -1.642 -1.583 -1.620 -1.616 -1.625 -1.679 -1.641 -1.644 + -1.629 -1.656 -1.656 -1.682 -1.714 -1.698 -1.735 -1.784 -1.755 -1.728 + -1.722 -1.776 -1.770 -1.804 -1.854 -1.860 -1.927 -1.957 -1.992 -2.069 + -2.221 -2.304 -2.502 -2.722 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1099 ssmi_f13 2 0.310436E-02 + -2.380 -2.335 -2.320 -2.285 -2.276 -2.342 -2.240 -2.359 -2.241 -2.274 + -2.269 -2.274 -2.313 -2.305 -2.284 -2.286 -2.240 -2.293 -2.296 -2.298 + -2.309 -2.298 -2.235 -2.301 -2.306 -2.277 -2.260 -2.312 -2.293 -2.253 + -2.241 -2.236 -2.297 -2.243 -2.284 -2.244 -2.235 -2.299 -2.214 -2.253 + -2.217 -2.266 -2.254 -2.223 -2.258 -2.265 -2.266 -2.295 -2.285 -2.232 + -2.280 -2.307 -2.293 -2.303 -2.380 -2.329 -2.380 -2.380 -2.371 -2.470 + -2.545 -2.552 -2.692 -2.858 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1100 ssmi_f13 3 0.890618E-02 + -0.088 -0.043 -0.030 0.033 0.055 -0.007 0.054 -0.028 0.025 0.008 + 0.039 -0.004 0.026 0.017 0.002 0.002 0.019 0.014 0.022 -0.012 + -0.026 -0.044 -0.038 -0.010 -0.016 0.018 0.024 0.002 0.021 -0.002 + 0.033 -0.008 -0.075 -0.027 -0.048 -0.039 -0.037 -0.087 -0.032 -0.071 + -0.043 -0.096 -0.097 -0.081 -0.137 -0.142 -0.158 -0.228 -0.206 -0.176 + -0.200 -0.286 -0.243 -0.299 -0.314 -0.351 -0.486 -0.517 -0.554 -0.687 + -0.856 -1.024 -1.235 -1.530 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1101 ssmi_f13 4 0.483788E-02 + -2.328 -2.202 -2.147 -2.160 -2.110 -2.202 -2.167 -2.184 -2.148 -2.191 + -2.179 -2.170 -2.174 -2.167 -2.144 -2.166 -2.131 -2.135 -2.133 -2.157 + -2.166 -2.154 -2.178 -2.172 -2.189 -2.155 -2.143 -2.152 -2.149 -2.192 + -2.155 -2.175 -2.205 -2.199 -2.195 -2.186 -2.198 -2.231 -2.239 -2.245 + -2.234 -2.242 -2.254 -2.278 -2.292 -2.294 -2.329 -2.346 -2.373 -2.365 + -2.390 -2.451 -2.457 -2.500 -2.531 -2.561 -2.659 -2.678 -2.745 -2.830 + -2.978 -3.004 -3.227 -3.526 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1102 ssmi_f13 5 0.483620E-02 + 0.723 0.957 1.017 1.013 1.022 0.914 1.068 0.908 1.009 1.001 + 1.043 1.118 1.056 1.030 1.049 1.072 1.144 1.084 1.087 1.096 + 1.110 1.148 1.150 1.102 1.114 1.153 1.135 1.148 1.115 1.126 + 1.195 1.161 1.092 1.180 1.191 1.210 1.205 1.180 1.236 1.128 + 1.206 1.227 1.204 1.120 1.169 1.141 1.184 1.158 1.147 1.218 + 1.175 1.215 1.197 1.201 1.116 1.182 1.086 1.122 1.166 1.151 + 1.031 1.084 0.939 0.582 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1103 ssmi_f13 6 0.121361E-01 + -1.153 -0.984 -0.970 -0.917 -0.901 -0.955 -0.950 -0.950 -0.918 -0.934 + -0.962 -0.930 -0.939 -0.911 -0.957 -0.967 -0.935 -0.994 -0.965 -1.002 + -0.984 -0.959 -0.991 -0.984 -1.015 -0.974 -0.972 -1.008 -0.964 -0.985 + -0.978 -1.031 -1.018 -1.013 -1.012 -1.015 -1.028 -1.052 -1.071 -1.057 + -1.028 -1.061 -1.058 -1.066 -1.092 -1.084 -1.133 -1.130 -1.147 -1.125 + -1.152 -1.225 -1.239 -1.255 -1.293 -1.359 -1.407 -1.462 -1.539 -1.649 + -1.776 -1.893 -2.117 -2.616 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1104 ssmi_f13 7 0.119904E-01 + 2.310 2.550 2.442 2.493 2.513 2.444 2.447 2.399 2.532 2.504 + 2.488 2.561 2.497 2.537 2.468 2.576 2.531 2.537 2.565 2.520 + 2.583 2.548 2.534 2.496 2.453 2.561 2.535 2.537 2.504 2.607 + 2.604 2.476 2.522 2.530 2.627 2.582 2.553 2.552 2.532 2.569 + 2.633 2.561 2.582 2.520 2.545 2.567 2.460 2.493 2.523 2.513 + 2.532 2.488 2.453 2.541 2.497 2.475 2.384 2.386 2.342 2.296 + 2.282 2.146 2.022 1.577 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1105 ssmi_f14 1 0.321032E-02 + -1.593 -1.504 -1.410 -1.465 -1.438 -1.391 -1.352 -1.400 -1.437 -1.385 + -1.407 -1.425 -1.423 -1.428 -1.406 -1.397 -1.379 -1.403 -1.417 -1.415 + -1.416 -1.367 -1.377 -1.424 -1.407 -1.421 -1.435 -1.429 -1.431 -1.447 + -1.443 -1.454 -1.449 -1.463 -1.478 -1.483 -1.513 -1.487 -1.461 -1.451 + -1.454 -1.496 -1.502 -1.503 -1.549 -1.561 -1.547 -1.585 -1.551 -1.553 + -1.570 -1.573 -1.621 -1.617 -1.643 -1.704 -1.752 -1.811 -1.883 -1.988 + -2.114 -2.336 -2.535 -2.803 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1106 ssmi_f14 2 0.308784E-02 + -2.665 -2.602 -2.574 -2.670 -2.582 -2.560 -2.517 -2.583 -2.599 -2.562 + -2.562 -2.608 -2.545 -2.561 -2.543 -2.554 -2.547 -2.574 -2.582 -2.562 + -2.587 -2.539 -2.505 -2.490 -2.523 -2.591 -2.545 -2.533 -2.554 -2.563 + -2.502 -2.558 -2.508 -2.587 -2.565 -2.544 -2.621 -2.543 -2.511 -2.570 + -2.504 -2.527 -2.531 -2.515 -2.612 -2.529 -2.503 -2.537 -2.500 -2.575 + -2.576 -2.605 -2.581 -2.655 -2.584 -2.672 -2.742 -2.747 -2.790 -2.791 + -2.913 -3.044 -3.171 -3.311 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1107 ssmi_f14 3 0.886750E-02 + -0.099 -0.035 0.062 0.027 0.069 0.042 0.100 0.079 0.033 0.110 + 0.087 0.055 0.059 0.080 0.069 0.059 0.103 0.053 0.021 0.062 + 0.031 0.102 0.098 0.100 0.083 0.039 0.076 0.070 0.087 0.038 + 0.063 0.048 0.066 0.025 0.027 0.033 -0.053 0.009 0.010 0.011 + 0.010 -0.046 -0.038 -0.028 -0.073 -0.124 -0.074 -0.112 -0.077 -0.096 + -0.104 -0.114 -0.202 -0.267 -0.282 -0.353 -0.410 -0.485 -0.541 -0.626 + -0.786 -1.087 -1.393 -1.699 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1108 ssmi_f14 4 0.482671E-02 + -1.799 -1.643 -1.583 -1.603 -1.620 -1.616 -1.567 -1.587 -1.625 -1.565 + -1.561 -1.555 -1.616 -1.576 -1.556 -1.558 -1.521 -1.542 -1.536 -1.532 + -1.575 -1.525 -1.505 -1.565 -1.564 -1.553 -1.567 -1.551 -1.568 -1.536 + -1.575 -1.560 -1.546 -1.580 -1.566 -1.596 -1.611 -1.624 -1.610 -1.601 + -1.570 -1.609 -1.666 -1.625 -1.647 -1.663 -1.650 -1.692 -1.656 -1.713 + -1.770 -1.737 -1.817 -1.844 -1.862 -1.909 -1.924 -2.025 -2.121 -2.231 + -2.355 -2.497 -2.654 -2.898 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1109 ssmi_f14 5 0.482559E-02 + 0.650 0.922 0.931 0.903 0.800 0.917 0.938 0.828 0.820 0.916 + 0.916 0.883 0.810 0.864 0.953 0.915 0.955 0.987 0.968 0.988 + 0.976 0.963 1.090 0.977 0.977 0.956 0.954 0.967 0.950 1.025 + 0.961 1.047 0.991 0.968 0.961 1.018 0.962 0.931 0.897 0.961 + 1.002 0.987 0.956 1.015 0.935 0.986 1.001 0.981 1.018 0.994 + 0.967 1.011 1.021 1.015 0.994 0.978 0.974 0.917 0.905 0.941 + 0.843 0.721 0.618 0.268 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1110 ssmi_f14 6 0.119663E-01 + -1.196 -1.019 -0.930 -0.943 -0.972 -0.943 -0.943 -0.915 -0.901 -0.879 + -0.878 -0.875 -0.907 -0.931 -0.899 -0.928 -0.920 -0.886 -0.901 -0.922 + -0.909 -0.889 -0.873 -0.915 -0.931 -0.871 -0.926 -0.891 -0.892 -0.858 + -0.922 -0.898 -0.931 -0.925 -0.906 -0.926 -0.947 -0.951 -0.943 -0.938 + -0.920 -0.925 -0.961 -0.967 -0.995 -1.009 -0.997 -1.050 -1.034 -1.058 + -1.063 -1.084 -1.146 -1.126 -1.206 -1.206 -1.274 -1.348 -1.468 -1.600 + -1.746 -1.962 -2.213 -2.749 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1111 ssmi_f14 7 0.118528E-01 + 2.025 2.157 2.200 2.273 2.105 2.177 2.155 2.147 2.205 2.183 + 2.298 2.214 2.181 2.164 2.171 2.236 2.205 2.238 2.195 2.238 + 2.209 2.192 2.303 2.195 2.219 2.290 2.230 2.282 2.235 2.346 + 2.262 2.325 2.221 2.305 2.223 2.281 2.246 2.178 2.199 2.258 + 2.321 2.333 2.193 2.281 2.167 2.202 2.281 2.205 2.207 2.207 + 2.218 2.277 2.146 2.263 2.129 2.132 2.113 2.131 1.998 1.906 + 1.774 1.547 1.324 0.798 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1112 ssmi_f15 1 0.320266E-02 + -2.715 -2.611 -2.634 -2.605 -2.494 -2.468 -2.543 -2.562 -2.527 -2.493 + -2.491 -2.563 -2.558 -2.540 -2.452 -2.467 -2.511 -2.512 -2.491 -2.431 + -2.441 -2.450 -2.475 -2.474 -2.386 -2.398 -2.371 -2.417 -2.436 -2.388 + -2.390 -2.451 -2.445 -2.426 -2.320 -2.376 -2.362 -2.427 -2.418 -2.414 + -2.404 -2.435 -2.436 -2.426 -2.349 -2.341 -2.377 -2.436 -2.456 -2.406 + -2.425 -2.393 -2.413 -2.389 -2.337 -2.331 -2.391 -2.510 -2.564 -2.538 + -2.610 -2.698 -2.877 -3.082 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1113 ssmi_f15 2 0.309105E-02 + -2.282 -2.178 -2.190 -2.135 -2.093 -2.092 -2.155 -2.201 -2.121 -2.082 + -2.112 -2.099 -2.124 -2.119 -2.099 -2.131 -2.144 -2.130 -2.070 -2.159 + -2.086 -2.117 -2.132 -2.119 -2.075 -2.119 -2.093 -2.113 -2.129 -2.140 + -2.142 -2.198 -2.138 -2.182 -2.126 -2.171 -2.168 -2.178 -2.200 -2.203 + -2.213 -2.268 -2.207 -2.203 -2.197 -2.226 -2.231 -2.224 -2.225 -2.256 + -2.314 -2.310 -2.264 -2.268 -2.272 -2.222 -2.287 -2.387 -2.420 -2.391 + -2.470 -2.574 -2.637 -2.786 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1114 ssmi_f15 3 0.970669E-02 + 3.605 4.757 5.749 6.333 6.726 7.168 7.317 7.569 7.818 8.427 + 8.366 8.605 8.557 8.928 8.881 9.261 9.162 8.941 9.062 9.225 + 9.477 9.271 9.465 9.415 9.657 9.372 9.263 8.878 8.567 8.125 + 7.685 7.257 6.843 6.344 6.043 5.843 5.450 4.820 4.295 4.026 + 3.613 3.139 3.046 2.756 2.677 2.453 2.432 2.287 2.145 2.050 + 1.984 1.851 1.825 1.734 1.635 1.577 1.362 1.232 1.178 1.072 + 0.887 0.708 0.441 0.004 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1115 ssmi_f15 4 0.483776E-02 + -2.666 -2.463 -2.436 -2.431 -2.354 -2.378 -2.410 -2.409 -2.419 -2.454 + -2.435 -2.387 -2.337 -2.326 -2.341 -2.322 -2.343 -2.350 -2.302 -2.280 + -2.289 -2.305 -2.263 -2.289 -2.273 -2.291 -2.277 -2.250 -2.261 -2.252 + -2.233 -2.281 -2.244 -2.234 -2.183 -2.252 -2.242 -2.247 -2.182 -2.233 + -2.253 -2.257 -2.238 -2.262 -2.275 -2.277 -2.242 -2.248 -2.322 -2.363 + -2.325 -2.298 -2.300 -2.290 -2.350 -2.371 -2.355 -2.389 -2.454 -2.430 + -2.521 -2.606 -2.752 -3.027 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1116 ssmi_f15 5 0.483638E-02 + 0.734 1.150 1.178 1.157 1.193 1.172 1.065 1.127 1.120 1.100 + 1.148 1.204 1.258 1.236 1.171 1.207 1.201 1.224 1.265 1.286 + 1.263 1.277 1.299 1.280 1.278 1.289 1.268 1.300 1.341 1.328 + 1.314 1.335 1.289 1.307 1.294 1.284 1.266 1.247 1.254 1.238 + 1.258 1.217 1.248 1.255 1.222 1.249 1.282 1.206 1.194 1.150 + 1.212 1.192 1.215 1.311 1.224 1.266 1.231 1.100 1.139 1.126 + 1.108 1.109 0.998 0.558 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1117 ssmi_f15 6 0.121063E-01 + -1.755 -1.603 -1.560 -1.542 -1.525 -1.489 -1.517 -1.491 -1.474 -1.476 + -1.444 -1.448 -1.444 -1.434 -1.430 -1.440 -1.404 -1.387 -1.378 -1.434 + -1.440 -1.399 -1.377 -1.411 -1.393 -1.405 -1.405 -1.372 -1.374 -1.369 + -1.376 -1.387 -1.382 -1.365 -1.377 -1.412 -1.405 -1.434 -1.424 -1.414 + -1.411 -1.432 -1.439 -1.445 -1.403 -1.417 -1.413 -1.426 -1.463 -1.444 + -1.480 -1.474 -1.495 -1.463 -1.500 -1.535 -1.613 -1.633 -1.701 -1.766 + -1.848 -1.971 -2.096 -2.469 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1118 ssmi_f15 7 0.119934E-01 + 2.197 2.367 2.464 2.444 2.433 2.484 2.391 2.467 2.466 2.460 + 2.512 2.533 2.597 2.587 2.549 2.498 2.567 2.717 2.639 2.540 + 2.586 2.655 2.654 2.574 2.539 2.620 2.522 2.571 2.682 2.616 + 2.649 2.577 2.573 2.579 2.503 2.488 2.493 2.501 2.459 2.482 + 2.440 2.439 2.458 2.444 2.502 2.436 2.504 2.422 2.429 2.396 + 2.364 2.334 2.406 2.427 2.294 2.284 2.212 2.250 2.148 2.216 + 2.015 1.980 1.833 1.358 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1119 ssmis_f16 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1120 ssmis_f16 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1121 ssmis_f16 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1122 ssmis_f16 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1123 ssmis_f16 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1124 ssmis_f16 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1125 ssmis_f16 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1126 ssmis_f16 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1127 ssmis_f16 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1128 ssmis_f16 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1129 ssmis_f16 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1130 ssmis_f16 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1131 ssmis_f16 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1132 ssmis_f16 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1133 ssmis_f16 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1134 ssmis_f16 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1135 ssmis_f16 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1136 ssmis_f16 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1137 ssmis_f16 19 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1138 ssmis_f16 20 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1139 ssmis_f16 21 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1140 ssmis_f16 22 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1141 ssmis_f16 23 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1142 ssmis_f16 24 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1143 amsre_aqua 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1144 amsre_aqua 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1145 amsre_aqua 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1146 amsre_aqua 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1147 amsre_aqua 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1148 amsre_aqua 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1149 amsre_aqua 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1150 amsre_aqua 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1151 amsre_aqua 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1152 amsre_aqua 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1153 amsre_aqua 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1154 amsre_aqua 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1155 sndr_g11 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1156 sndr_g11 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1157 sndr_g11 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1158 sndr_g11 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1159 sndr_g11 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1160 sndr_g11 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1161 sndr_g11 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1162 sndr_g11 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1163 sndr_g11 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1164 sndr_g11 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1165 sndr_g11 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1166 sndr_g11 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1167 sndr_g11 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1168 sndr_g11 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1169 sndr_g11 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1170 sndr_g11 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1171 sndr_g11 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1172 sndr_g11 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1173 imgr_g11 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1174 imgr_g11 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1175 imgr_g11 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1176 imgr_g11 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1177 sndr_g12 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1178 sndr_g12 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1179 sndr_g12 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1180 sndr_g12 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1181 sndr_g12 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1182 sndr_g12 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1183 sndr_g12 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1184 sndr_g12 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1185 sndr_g12 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1186 sndr_g12 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1187 sndr_g12 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1188 sndr_g12 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1189 sndr_g12 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1190 sndr_g12 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1191 sndr_g12 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1192 sndr_g12 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1193 sndr_g12 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1194 sndr_g12 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1195 imgr_g12 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1196 imgr_g12 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1197 imgr_g12 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1198 imgr_g12 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1199 sndr_g13 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1200 sndr_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1201 sndr_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1202 sndr_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1203 sndr_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1204 sndr_g13 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1205 sndr_g13 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1206 sndr_g13 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1207 sndr_g13 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1208 sndr_g13 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1209 sndr_g13 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1210 sndr_g13 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1211 sndr_g13 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1212 sndr_g13 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1213 sndr_g13 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1214 sndr_g13 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1215 sndr_g13 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1216 sndr_g13 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1217 imgr_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1218 imgr_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1219 imgr_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1220 imgr_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1221 sndrD1_g11 1 -0.285696E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.868 -0.985 -1.065 -1.121 + -1.070 -1.117 -1.090 -1.083 -1.127 -1.118 -1.125 -1.109 -1.111 -1.150 + -1.148 -1.174 -1.172 -1.179 -1.197 -1.217 -1.215 -1.219 -1.240 -1.239 + -1.253 -1.255 -1.287 -1.296 -1.284 -1.299 -1.281 -1.325 -1.318 -1.314 + -1.310 -1.318 -1.355 -1.365 -1.364 -1.360 -1.401 -1.397 -1.412 -1.410 + -1.415 -1.420 -1.429 -1.441 -1.480 -1.489 -1.472 -1.486 -1.551 -1.511 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1222 sndrD1_g11 2 0.460280E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.364 -0.429 -0.466 -0.527 + -0.482 -0.473 -0.515 -0.495 -0.538 -0.495 -0.486 -0.472 -0.443 -0.440 + -0.502 -0.504 -0.493 -0.513 -0.504 -0.546 -0.532 -0.573 -0.548 -0.571 + -0.581 -0.591 -0.613 -0.633 -0.617 -0.646 -0.645 -0.688 -0.676 -0.692 + -0.698 -0.728 -0.758 -0.784 -0.800 -0.805 -0.845 -0.841 -0.884 -0.901 + -0.923 -0.945 -0.981 -0.994 -1.043 -1.023 -1.015 -1.046 -1.090 -1.099 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1223 sndrD1_g11 3 0.474065E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.834 0.784 0.819 0.830 + 0.827 0.822 0.791 0.842 0.821 0.820 0.849 0.840 0.861 0.842 + 0.847 0.885 0.860 0.885 0.864 0.869 0.849 0.859 0.861 0.856 + 0.868 0.857 0.854 0.879 0.850 0.860 0.857 0.847 0.849 0.835 + 0.844 0.808 0.814 0.809 0.789 0.797 0.767 0.759 0.679 0.670 + 0.610 0.543 0.544 0.431 0.326 0.304 0.274 0.232 0.201 0.130 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1224 sndrD1_g11 4 0.513580E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.124 0.131 0.046 0.213 + 0.154 0.122 0.069 0.091 0.033 0.047 0.060 0.062 0.058 0.068 + 0.117 0.126 0.154 0.147 0.170 0.139 0.121 0.128 0.139 0.142 + 0.159 0.156 0.138 0.154 0.129 0.151 0.157 0.156 0.151 0.167 + 0.202 0.183 0.220 0.221 0.269 0.260 0.265 0.282 0.242 0.276 + 0.202 0.142 0.158 0.094 0.070 -0.051 0.107 0.083 0.023 0.036 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1225 sndrD1_g11 5 0.439086E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.354 0.822 0.749 1.319 + 1.331 1.228 1.152 1.203 1.092 1.129 1.173 1.108 1.130 1.097 + 1.157 1.155 1.203 1.200 1.192 1.132 1.101 1.095 1.140 1.126 + 1.162 1.158 1.157 1.196 1.189 1.204 1.245 1.248 1.242 1.291 + 1.325 1.306 1.330 1.394 1.424 1.428 1.390 1.408 1.363 1.329 + 1.243 1.150 1.131 0.878 0.763 0.571 0.771 0.854 0.796 0.834 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1226 sndrD1_g11 6 0.214709E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.883 1.082 0.821 1.150 + 0.998 0.845 0.735 0.758 0.574 0.563 0.597 0.500 0.538 0.508 + 0.570 0.547 0.570 0.590 0.484 0.390 0.317 0.285 0.326 0.279 + 0.352 0.295 0.277 0.329 0.327 0.314 0.371 0.384 0.345 0.391 + 0.468 0.441 0.476 0.584 0.619 0.624 0.525 0.509 0.434 0.328 + 0.089 -0.086 -0.306 -0.703 -0.932 -1.232 -0.886 -0.639 -0.587 -0.490 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1227 sndrD1_g11 7 0.137315E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.746 0.677 0.584 0.766 + 0.753 0.526 0.451 0.430 0.254 0.207 0.254 0.162 0.191 0.134 + 0.210 0.167 0.190 0.183 0.060 -0.001 -0.075 -0.104 -0.059 -0.124 + -0.051 -0.117 -0.123 -0.077 -0.090 -0.090 -0.038 -0.019 -0.068 -0.036 + 0.041 0.018 0.045 0.133 0.130 0.108 0.041 -0.009 -0.064 -0.163 + -0.398 -0.562 -0.845 -1.305 -1.477 -1.928 -1.483 -1.170 -1.074 -0.907 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1228 sndrD1_g11 8 0.102447E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.613 0.510 0.441 0.567 + 0.539 0.341 0.299 0.275 0.123 0.090 0.127 0.027 0.046 -0.014 + 0.047 0.018 0.038 0.001 -0.130 -0.164 -0.217 -0.262 -0.240 -0.295 + -0.252 -0.320 -0.332 -0.287 -0.304 -0.305 -0.271 -0.268 -0.304 -0.285 + -0.225 -0.258 -0.240 -0.156 -0.165 -0.192 -0.277 -0.341 -0.388 -0.500 + -0.739 -0.965 -1.320 -1.720 -1.969 -2.482 -2.061 -1.753 -1.602 -1.382 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1229 sndrD1_g11 9 -0.957399E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.235 0.164 0.100 0.159 + 0.137 0.042 0.038 0.019 -0.063 -0.126 -0.076 -0.123 -0.140 -0.178 + -0.107 -0.117 -0.098 -0.127 -0.203 -0.249 -0.343 -0.354 -0.397 -0.396 + -0.340 -0.378 -0.359 -0.276 -0.306 -0.276 -0.214 -0.235 -0.218 -0.187 + -0.146 -0.177 -0.138 -0.163 -0.140 -0.132 -0.172 -0.202 -0.136 -0.177 + -0.367 -0.416 -0.644 -0.802 -0.751 -1.225 -0.927 -0.939 -1.104 -0.905 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1230 sndrD1_g11 10 0.563132E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.022 0.350 0.107 0.420 + 0.273 0.204 0.150 0.228 0.098 0.165 0.226 0.187 0.143 0.223 + 0.220 0.345 0.283 0.306 0.288 0.183 0.147 0.084 0.171 0.185 + 0.258 0.246 0.212 0.262 0.287 0.334 0.390 0.344 0.294 0.403 + 0.449 0.462 0.437 0.586 0.637 0.662 0.597 0.588 0.587 0.523 + 0.428 0.275 0.092 0.138 -0.004 -0.145 -0.116 -0.016 0.150 -0.128 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1231 sndrD1_g11 11 0.759207E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.180 0.549 0.516 0.702 + 0.738 0.431 0.412 0.560 0.494 0.572 0.737 0.661 0.618 0.807 + 0.823 0.942 0.722 0.699 0.811 0.669 0.676 0.634 0.729 0.778 + 0.798 0.784 0.738 0.807 0.736 0.868 0.870 0.910 0.846 0.914 + 0.914 0.944 0.998 1.042 1.010 1.030 0.999 1.076 0.993 1.045 + 0.979 0.931 0.956 1.121 1.327 1.201 1.212 1.464 1.695 1.324 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1232 sndrD1_g11 12 0.763748E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.020 0.057 0.129 0.312 + 0.198 0.214 0.176 0.397 0.261 0.293 0.357 0.359 0.300 0.545 + 0.628 0.573 0.362 0.405 0.520 0.369 0.310 0.364 0.352 0.378 + 0.396 0.427 0.402 0.485 0.428 0.464 0.401 0.513 0.404 0.424 + 0.423 0.451 0.479 0.541 0.538 0.551 0.512 0.545 0.599 0.558 + 0.514 0.442 0.364 0.451 0.602 0.568 0.647 0.744 0.919 0.702 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1233 sndrD1_g11 13 0.403562E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.446 -0.620 -0.666 -0.681 + -0.734 -0.789 -0.793 -0.785 -0.817 -0.815 -0.751 -0.784 -0.794 -0.821 + -0.791 -0.805 -0.760 -0.810 -0.799 -0.806 -0.804 -0.803 -0.806 -0.792 + -0.787 -0.793 -0.791 -0.763 -0.788 -0.778 -0.790 -0.775 -0.810 -0.821 + -0.814 -0.803 -0.835 -0.818 -0.819 -0.849 -0.891 -0.878 -0.913 -0.908 + -0.933 -1.053 -1.157 -1.089 -1.098 -1.168 -1.088 -0.988 -0.895 -0.822 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1234 sndrD1_g11 14 0.485477E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.811 -0.840 -0.972 -0.967 + -0.979 -1.047 -1.072 -1.066 -1.070 -1.074 -1.045 -1.042 -1.065 -1.076 + -1.055 -1.047 -1.010 -1.026 -1.022 -1.016 -1.012 -1.015 -0.994 -0.975 + -0.974 -0.974 -0.972 -0.957 -0.964 -0.948 -0.953 -0.950 -0.959 -0.948 + -0.941 -0.936 -0.957 -0.947 -0.936 -0.972 -0.996 -0.986 -0.989 -1.002 + -0.985 -1.017 -1.060 -0.945 -0.973 -0.857 -0.775 -0.718 -0.739 -0.605 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1235 sndrD1_g11 15 0.418650E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 -0.913 + -7.936 -7.190 -7.868 -7.884 -7.801 -7.672 -7.689 -7.691 -7.578 -7.468 + -7.582 -7.552 -7.487 -7.488 -7.448 -7.395 -7.345 -7.277 -7.191 -7.110 + -7.079 -6.924 -6.850 -6.852 -6.772 -6.629 -6.371 -6.213 -5.946 -5.908 + -5.343 -5.200 -5.329 -4.522 -3.469 -3.798 -3.113 -2.771 -2.580 -2.674 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1236 sndrD1_g11 16 0.230111E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.204 -0.928 -0.908 -0.994 + -1.004 -1.079 -0.865 -0.968 -0.993 -1.006 -0.949 -0.950 -0.961 -0.958 + -1.020 -1.019 -0.935 -1.022 -0.913 -0.952 -0.905 -0.887 -0.884 -0.850 + -0.872 -0.814 -0.776 -0.802 -0.814 -0.762 -0.757 -0.769 -0.791 -0.806 + -0.838 -0.832 -0.919 -0.905 -0.927 -0.939 -0.998 -0.957 -0.987 -0.979 + -0.993 -0.993 -1.255 -1.289 -1.252 -1.357 -0.937 -0.763 -0.421 -0.144 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1237 sndrD1_g11 17 0.574195E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.272 -0.670 -0.658 -0.810 + -0.813 -0.891 -0.625 -0.751 -0.779 -0.793 -0.728 -0.743 -0.745 -0.769 + -0.817 -0.830 -0.739 -0.837 -0.708 -0.744 -0.686 -0.668 -0.678 -0.636 + -0.678 -0.611 -0.566 -0.588 -0.595 -0.552 -0.544 -0.562 -0.604 -0.610 + -0.649 -0.642 -0.753 -0.744 -0.782 -0.822 -0.883 -0.839 -0.912 -0.898 + -0.946 -1.033 -1.346 -1.535 -1.755 -1.956 -1.421 -1.168 -0.601 -0.353 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1238 sndrD1_g11 18 0.651413E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.064 -0.164 -0.179 -0.266 + -0.252 -0.393 -0.140 -0.270 -0.321 -0.323 -0.271 -0.307 -0.285 -0.312 + -0.350 -0.345 -0.247 -0.325 -0.283 -0.306 -0.254 -0.254 -0.242 -0.207 + -0.239 -0.218 -0.181 -0.176 -0.170 -0.144 -0.127 -0.135 -0.189 -0.177 + -0.195 -0.192 -0.268 -0.239 -0.289 -0.340 -0.424 -0.420 -0.481 -0.495 + -0.583 -0.725 -1.067 -1.384 -1.736 -2.061 -1.488 -1.200 -0.690 -0.375 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1239 sndrD2_g11 1 -0.287743E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.863 -0.866 -0.904 -0.929 + -0.908 -0.913 -0.888 -0.933 -0.931 -0.946 -0.929 -0.923 -0.934 -0.924 + -0.949 -0.974 -0.960 -0.988 -1.004 -0.990 -0.992 -0.997 -1.027 -1.021 + -1.025 -1.043 -1.045 -1.054 -1.050 -1.069 -1.061 -1.070 -1.074 -1.094 + -1.101 -1.096 -1.134 -1.156 -1.171 -1.186 -1.191 -1.210 -1.219 -1.236 + -1.215 -1.211 -1.234 -1.237 -1.240 -1.197 -1.258 -1.302 -1.333 -1.340 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1240 sndrD2_g11 2 0.440734E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.440 -0.484 -0.518 -0.520 + -0.508 -0.513 -0.506 -0.504 -0.510 -0.508 -0.490 -0.496 -0.502 -0.454 + -0.523 -0.524 -0.510 -0.529 -0.523 -0.540 -0.525 -0.553 -0.560 -0.559 + -0.578 -0.584 -0.598 -0.608 -0.609 -0.625 -0.630 -0.648 -0.659 -0.687 + -0.694 -0.720 -0.742 -0.762 -0.771 -0.796 -0.807 -0.846 -0.862 -0.877 + -0.911 -0.905 -0.932 -0.948 -0.965 -0.943 -1.012 -1.040 -1.066 -1.105 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1241 sndrD2_g11 3 0.483756E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.786 0.798 0.823 0.832 + 0.830 0.835 0.817 0.888 0.845 0.866 0.915 0.896 0.905 0.888 + 0.893 0.918 0.884 0.922 0.893 0.876 0.876 0.869 0.883 0.865 + 0.891 0.870 0.893 0.895 0.877 0.879 0.873 0.865 0.867 0.856 + 0.859 0.834 0.831 0.833 0.826 0.813 0.781 0.758 0.675 0.655 + 0.578 0.557 0.501 0.405 0.332 0.339 0.268 0.165 0.126 0.030 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1242 sndrD2_g11 4 0.517983E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.126 0.203 0.194 0.228 + 0.177 0.167 0.106 0.172 0.089 0.153 0.162 0.174 0.170 0.117 + 0.136 0.169 0.177 0.163 0.145 0.147 0.137 0.110 0.151 0.160 + 0.169 0.169 0.155 0.179 0.149 0.173 0.174 0.175 0.171 0.190 + 0.230 0.208 0.233 0.257 0.294 0.285 0.316 0.268 0.283 0.289 + 0.250 0.164 0.174 0.108 -0.013 0.110 -0.038 0.150 0.064 -0.003 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1243 sndrD2_g11 5 0.441504E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.923 0.598 0.509 1.304 + 1.284 1.251 1.221 1.250 1.168 1.223 1.234 1.232 1.223 1.166 + 1.140 1.154 1.153 1.154 1.123 1.115 1.046 1.020 1.092 1.075 + 1.115 1.111 1.135 1.169 1.146 1.178 1.198 1.213 1.202 1.275 + 1.323 1.290 1.322 1.396 1.433 1.402 1.440 1.394 1.427 1.347 + 1.273 1.209 1.151 0.913 0.768 0.754 0.684 0.701 0.568 0.044 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1244 sndrD2_g11 6 0.217394E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.795 1.107 1.105 1.183 + 1.155 0.895 0.905 0.909 0.715 0.813 0.849 0.813 0.796 0.658 + 0.615 0.634 0.607 0.579 0.500 0.450 0.333 0.282 0.383 0.325 + 0.360 0.365 0.360 0.397 0.371 0.376 0.418 0.458 0.431 0.528 + 0.626 0.552 0.599 0.693 0.805 0.713 0.745 0.675 0.623 0.561 + 0.321 0.205 -0.066 -0.446 -0.583 -0.730 -0.824 -0.386 -0.184 0.004 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1245 sndrD2_g11 7 0.140525E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.658 0.841 0.880 0.956 + 1.005 0.686 0.715 0.707 0.491 0.549 0.593 0.562 0.570 0.380 + 0.332 0.367 0.300 0.280 0.201 0.149 0.037 -0.013 0.084 0.040 + 0.088 0.061 0.066 0.090 0.086 0.081 0.128 0.174 0.135 0.212 + 0.301 0.229 0.274 0.348 0.406 0.325 0.325 0.272 0.265 0.183 + 0.023 -0.177 -0.438 -0.831 -0.949 -1.117 -1.131 -0.669 -0.371 -0.018 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1246 sndrD2_g11 8 0.105487E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.496 0.624 0.673 0.642 + 0.710 0.432 0.457 0.455 0.290 0.321 0.359 0.332 0.331 0.172 + 0.131 0.147 0.056 0.027 -0.046 -0.094 -0.175 -0.237 -0.170 -0.213 + -0.171 -0.221 -0.224 -0.192 -0.193 -0.201 -0.179 -0.130 -0.177 -0.126 + -0.050 -0.121 -0.066 -0.023 0.019 -0.034 -0.077 -0.102 -0.135 -0.206 + -0.386 -0.646 -0.907 -1.271 -1.358 -1.593 -1.656 -1.110 -0.650 -0.066 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1247 sndrD2_g11 9 -0.954866E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.106 0.203 0.173 0.180 + 0.205 0.088 0.086 0.076 -0.004 0.011 -0.001 -0.041 -0.011 -0.108 + -0.078 -0.097 -0.103 -0.141 -0.207 -0.267 -0.340 -0.384 -0.388 -0.406 + -0.307 -0.345 -0.322 -0.275 -0.275 -0.254 -0.182 -0.219 -0.226 -0.146 + -0.170 -0.162 -0.170 -0.102 -0.162 -0.120 -0.094 -0.096 -0.153 -0.101 + -0.189 -0.319 -0.425 -0.345 -0.711 -0.378 -0.639 -0.252 -0.465 -0.023 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1248 sndrD2_g11 10 0.564734E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.045 0.377 0.314 0.382 + 0.285 0.328 0.214 0.400 0.228 0.393 0.403 0.399 0.422 0.326 + 0.276 0.366 0.373 0.337 0.345 0.205 0.172 0.109 0.206 0.191 + 0.259 0.247 0.229 0.305 0.287 0.357 0.355 0.419 0.323 0.460 + 0.510 0.495 0.517 0.737 0.675 0.704 0.654 0.633 0.619 0.661 + 0.495 0.383 0.211 0.378 0.146 -0.065 -0.362 -0.187 0.314 0.214 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1249 sndrD2_g11 11 0.764548E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.206 0.477 0.557 0.668 + 0.647 0.587 0.570 0.803 0.646 0.731 0.922 0.845 0.881 0.876 + 0.917 0.934 0.764 0.821 0.856 0.660 0.737 0.611 0.676 0.771 + 0.770 0.770 0.770 0.805 0.732 0.871 0.795 0.936 0.837 0.850 + 0.856 0.934 1.016 1.038 1.060 1.001 1.029 0.961 0.894 1.027 + 0.930 0.972 0.854 0.866 0.849 1.067 0.831 1.401 1.448 1.253 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1250 sndrD2_g11 12 0.784383E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.187 -0.007 0.181 0.149 + 0.197 0.263 0.237 0.261 0.370 0.274 0.402 0.466 0.553 0.718 + 0.622 0.481 0.375 0.490 0.591 0.358 0.424 0.329 0.356 0.497 + 0.440 0.447 0.443 0.535 0.438 0.488 0.425 0.574 0.480 0.418 + 0.469 0.439 0.488 0.597 0.639 0.616 0.562 0.655 0.620 0.669 + 0.570 0.568 0.438 0.426 0.526 0.538 0.606 0.660 0.982 0.494 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1251 sndrD2_g11 13 0.406323E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.598 -0.542 -0.597 -0.733 + -0.762 -0.796 -0.809 -0.791 -0.814 -0.809 -0.774 -0.804 -0.796 -0.844 + -0.841 -0.847 -0.846 -0.877 -0.868 -0.868 -0.872 -0.885 -0.865 -0.835 + -0.856 -0.851 -0.848 -0.809 -0.796 -0.819 -0.812 -0.796 -0.827 -0.852 + -0.825 -0.817 -0.824 -0.820 -0.840 -0.837 -0.838 -0.870 -0.904 -0.871 + -0.845 -0.997 -1.058 -1.103 -1.017 -0.886 -1.113 -0.584 -0.360 -0.029 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1252 sndrD2_g11 14 0.488063E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.166 -0.106 -0.135 -0.275 + -0.234 -0.283 -0.336 -0.265 -0.320 -0.332 -0.270 -0.259 -0.261 -0.326 + -0.299 -0.245 -0.238 -0.272 -0.262 -0.194 -0.224 -0.239 -0.185 -0.178 + -0.176 -0.163 -0.134 -0.118 -0.163 -0.087 -0.071 -0.053 -0.065 -0.088 + -0.060 -0.025 -0.017 -0.078 -0.128 -0.100 -0.132 -0.157 -0.097 -0.182 + -0.004 -0.189 -0.108 0.179 0.462 0.961 0.618 0.503 0.329 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1253 sndrD2_g11 15 0.440498E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -6.618 0.000 -7.251 -6.879 -7.205 -7.359 -7.272 + -7.271 -7.075 -7.237 -7.345 -7.210 -7.275 -7.064 -6.990 -6.954 -6.898 + -6.871 -6.941 -6.840 -6.699 -6.554 -6.407 -6.164 -6.162 -5.982 -5.882 + -5.720 -5.588 -5.747 -5.483 -5.234 -5.197 -4.912 -4.949 -4.122 -3.962 + -3.316 -3.379 -2.823 -1.974 -1.556 -0.678 -1.114 -0.147 -0.215 -0.366 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1254 sndrD2_g11 16 0.228467E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.743 -0.644 -0.915 -0.973 + -0.903 -0.898 -0.963 -0.839 -0.922 -0.976 -0.914 -0.947 -0.899 -0.929 + -0.975 -0.961 -0.969 -0.988 -0.907 -0.928 -0.932 -0.906 -0.892 -0.807 + -0.836 -0.856 -0.793 -0.802 -0.776 -0.775 -0.780 -0.731 -0.783 -0.865 + -0.849 -0.798 -0.848 -0.912 -0.935 -0.909 -0.926 -0.950 -0.954 -0.933 + -0.855 -1.027 -0.995 -0.825 -0.899 -0.805 -0.654 -0.101 -0.055 -0.032 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1255 sndrD2_g11 17 0.570127E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.526 -0.418 -0.638 -0.731 + -0.643 -0.625 -0.681 -0.538 -0.627 -0.717 -0.625 -0.651 -0.637 -0.645 + -0.716 -0.710 -0.687 -0.727 -0.652 -0.675 -0.654 -0.623 -0.650 -0.529 + -0.538 -0.569 -0.510 -0.526 -0.465 -0.499 -0.510 -0.458 -0.511 -0.613 + -0.572 -0.549 -0.605 -0.697 -0.739 -0.728 -0.736 -0.797 -0.819 -0.740 + -0.729 -1.034 -0.977 -0.904 -1.079 -0.903 -0.831 -0.089 -0.038 -0.098 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1256 sndrD2_g11 18 0.661280E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.162 -0.067 -0.106 -0.221 + -0.116 -0.173 -0.209 -0.054 -0.203 -0.240 -0.138 -0.211 -0.137 -0.209 + -0.251 -0.251 -0.245 -0.266 -0.294 -0.244 -0.262 -0.227 -0.213 -0.154 + -0.174 -0.180 -0.140 -0.133 -0.100 -0.118 -0.106 -0.068 -0.112 -0.172 + -0.122 -0.101 -0.138 -0.192 -0.232 -0.286 -0.287 -0.370 -0.378 -0.333 + -0.446 -0.668 -0.699 -0.654 -1.007 -0.922 -0.888 -0.144 -0.063 -0.122 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1257 sndrD3_g11 1 -0.288189E-01 + 0.000 0.000 0.000 0.000 0.000 -0.110 -0.810 -0.877 -0.859 -0.886 + -0.878 -0.861 -0.881 -0.878 -0.868 -0.890 -0.881 -0.875 -0.909 -0.898 + -0.896 -0.925 -0.934 -0.941 -0.935 -0.948 -0.954 -0.974 -0.989 -0.982 + -0.983 -0.997 -1.017 -1.013 -1.012 -1.026 -1.043 -1.060 -1.053 -1.064 + -1.069 -1.080 -1.117 -1.135 -1.159 -1.168 -1.191 -1.198 -1.202 -1.237 + -1.241 -1.207 -1.221 -1.229 -1.224 -1.226 -1.274 -1.347 -1.358 -1.364 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1258 sndrD3_g11 2 0.502600E-02 + 0.000 0.000 0.000 0.000 0.000 -0.014 -0.491 -0.529 -0.524 -0.525 + -0.521 -0.507 -0.541 -0.517 -0.516 -0.509 -0.488 -0.480 -0.483 -0.480 + -0.489 -0.508 -0.510 -0.511 -0.524 -0.541 -0.539 -0.558 -0.570 -0.566 + -0.560 -0.581 -0.596 -0.605 -0.607 -0.618 -0.637 -0.654 -0.657 -0.682 + -0.692 -0.714 -0.741 -0.756 -0.777 -0.796 -0.832 -0.842 -0.866 -0.895 + -0.917 -0.913 -0.936 -0.957 -0.963 -0.970 -1.013 -1.073 -1.087 -1.095 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1259 sndrD3_g11 3 0.483269E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.772 0.757 0.780 0.817 + 0.798 0.811 0.817 0.811 0.804 0.830 0.839 0.849 0.845 0.842 + 0.819 0.853 0.867 0.888 0.879 0.852 0.864 0.850 0.864 0.852 + 0.882 0.872 0.876 0.889 0.865 0.872 0.865 0.862 0.860 0.855 + 0.843 0.835 0.840 0.832 0.833 0.822 0.777 0.759 0.704 0.676 + 0.635 0.580 0.588 0.496 0.434 0.336 0.307 0.248 0.148 0.124 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1260 sndrD3_g11 4 0.517895E-01 + 0.000 0.000 0.000 0.000 0.000 0.025 0.153 0.094 0.079 0.232 + 0.152 0.094 0.105 0.072 0.047 0.073 0.063 0.079 0.068 0.051 + 0.033 0.070 0.161 0.126 0.171 0.137 0.164 0.139 0.154 0.154 + 0.198 0.178 0.161 0.197 0.170 0.184 0.197 0.179 0.198 0.209 + 0.235 0.251 0.249 0.293 0.321 0.344 0.322 0.321 0.315 0.309 + 0.261 0.208 0.209 0.130 0.165 0.035 0.048 0.133 0.147 0.104 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1261 sndrD3_g11 5 0.442519E-01 + 0.000 0.000 0.000 0.000 0.000 0.026 0.802 0.797 0.904 1.365 + 1.271 1.203 1.176 1.200 1.123 1.136 1.131 1.120 1.132 1.084 + 1.024 1.087 1.176 1.132 1.191 1.119 1.148 1.117 1.132 1.141 + 1.214 1.178 1.191 1.240 1.201 1.264 1.267 1.276 1.259 1.328 + 1.352 1.381 1.365 1.452 1.513 1.507 1.443 1.459 1.469 1.421 + 1.345 1.271 1.246 0.915 1.028 0.697 0.813 0.996 1.097 0.294 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1262 sndrD3_g11 6 0.219180E-01 + 0.000 0.000 0.000 0.000 0.000 0.016 0.655 0.922 0.809 1.066 + 1.006 0.758 0.724 0.686 0.593 0.592 0.597 0.517 0.564 0.448 + 0.339 0.423 0.581 0.432 0.503 0.372 0.411 0.341 0.365 0.298 + 0.453 0.361 0.344 0.429 0.369 0.413 0.447 0.464 0.400 0.495 + 0.557 0.582 0.574 0.714 0.790 0.772 0.655 0.612 0.620 0.542 + 0.288 0.130 0.002 -0.639 -0.486 -0.883 -0.610 -0.293 -0.255 0.001 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1263 sndrD3_g11 7 0.141650E-01 + 0.000 0.000 0.000 0.000 0.000 0.122 0.675 0.655 0.690 0.801 + 0.791 0.515 0.489 0.457 0.348 0.322 0.322 0.260 0.299 0.157 + 0.056 0.143 0.285 0.107 0.188 0.063 0.078 0.025 0.060 -0.019 + 0.138 0.037 0.026 0.104 0.042 0.090 0.113 0.126 0.062 0.136 + 0.202 0.211 0.204 0.324 0.350 0.318 0.230 0.175 0.190 0.123 + -0.081 -0.249 -0.442 -1.097 -0.966 -1.332 -1.068 -0.715 -0.715 -0.146 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1264 sndrD3_g11 8 0.105820E-01 + 0.000 0.000 0.000 0.000 0.000 0.086 0.422 0.307 0.365 0.398 + 0.372 0.156 0.129 0.127 0.013 -0.020 -0.013 -0.074 -0.041 -0.167 + -0.257 -0.193 -0.085 -0.256 -0.193 -0.296 -0.294 -0.349 -0.322 -0.406 + -0.270 -0.377 -0.373 -0.308 -0.374 -0.347 -0.334 -0.319 -0.388 -0.332 + -0.273 -0.285 -0.278 -0.173 -0.173 -0.210 -0.295 -0.347 -0.327 -0.410 + -0.620 -0.824 -1.027 -1.674 -1.591 -2.033 -1.807 -1.425 -1.432 -0.362 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1265 sndrD3_g11 9 -0.952801E-02 + 0.000 0.000 0.000 0.000 0.000 0.017 0.111 0.061 0.090 0.056 + 0.063 -0.039 -0.070 -0.051 -0.134 -0.185 -0.189 -0.222 -0.182 -0.245 + -0.270 -0.229 -0.153 -0.297 -0.270 -0.331 -0.386 -0.389 -0.459 -0.479 + -0.361 -0.396 -0.357 -0.298 -0.347 -0.280 -0.248 -0.240 -0.285 -0.253 + -0.222 -0.198 -0.185 -0.196 -0.242 -0.184 -0.149 -0.184 -0.199 -0.194 + -0.362 -0.310 -0.339 -0.613 -0.596 -0.834 -1.157 -0.918 -1.013 -0.149 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1266 sndrD3_g11 10 0.566853E-01 + 0.000 0.000 0.000 0.000 0.000 -0.038 0.236 0.170 -0.092 0.257 + 0.215 0.029 0.124 0.129 0.128 0.078 0.114 0.059 0.089 0.039 + 0.030 0.126 0.296 0.171 0.225 0.107 0.173 0.133 0.129 0.161 + 0.256 0.211 0.231 0.238 0.276 0.306 0.344 0.344 0.297 0.433 + 0.443 0.488 0.454 0.611 0.680 0.702 0.597 0.613 0.579 0.537 + 0.458 0.282 0.273 0.314 0.027 0.013 0.033 0.445 0.496 0.173 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1267 sndrD3_g11 11 0.764410E-01 + 0.000 0.000 0.000 0.000 0.000 -0.088 0.468 0.402 0.151 0.524 + 0.537 0.319 0.497 0.388 0.608 0.495 0.593 0.544 0.524 0.607 + 0.542 0.752 0.859 0.589 0.784 0.628 0.663 0.690 0.759 0.705 + 0.847 0.747 0.785 0.799 0.809 0.814 0.862 0.917 0.823 0.900 + 0.892 0.957 1.011 1.018 1.055 1.077 1.005 1.036 1.016 1.029 + 0.942 0.967 1.062 1.203 1.084 1.348 1.294 1.677 1.671 1.682 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1268 sndrD3_g11 12 0.771385E-01 + 0.000 0.000 0.000 0.000 0.000 0.235 0.105 0.065 -0.054 0.092 + 0.308 0.193 0.421 0.123 0.315 0.324 0.347 0.399 0.369 0.483 + 0.468 0.541 0.513 0.431 0.563 0.348 0.416 0.378 0.429 0.484 + 0.518 0.406 0.499 0.546 0.494 0.480 0.520 0.540 0.436 0.512 + 0.470 0.479 0.597 0.554 0.596 0.601 0.578 0.626 0.646 0.624 + 0.499 0.470 0.534 0.563 0.570 0.736 0.827 0.949 1.112 0.742 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1269 sndrD3_g11 13 0.405406E-01 + 0.000 0.000 0.000 0.000 0.000 -0.049 -0.582 -0.723 -0.720 -0.743 + -0.804 -0.833 -0.840 -0.815 -0.862 -0.843 -0.827 -0.845 -0.848 -0.879 + -0.893 -0.901 -0.818 -0.893 -0.832 -0.815 -0.823 -0.830 -0.830 -0.821 + -0.803 -0.811 -0.789 -0.777 -0.782 -0.781 -0.791 -0.775 -0.811 -0.801 + -0.805 -0.789 -0.810 -0.819 -0.815 -0.815 -0.826 -0.831 -0.833 -0.851 + -0.828 -0.912 -0.954 -1.011 -1.041 -1.037 -0.875 -0.736 -0.646 -0.135 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1270 sndrD3_g11 14 0.489606E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.788 -0.942 -0.970 -0.976 + -1.008 -1.047 -1.060 -1.042 -1.077 -1.057 -1.046 -1.043 -1.034 -1.073 + -1.083 -1.070 -0.991 -1.042 -1.001 -0.981 -0.981 -0.980 -0.974 -0.959 + -0.944 -0.952 -0.945 -0.930 -0.921 -0.916 -0.916 -0.920 -0.928 -0.905 + -0.913 -0.892 -0.929 -0.958 -0.943 -0.921 -0.959 -0.931 -0.920 -0.918 + -0.835 -0.931 -0.896 -0.864 -0.875 -0.765 -0.686 -0.607 -0.494 -0.105 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1271 sndrD3_g11 15 0.423867E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -7.792 -0.581 -7.739 -7.613 -7.579 -7.607 -7.493 -7.444 + -7.450 -7.460 -7.450 -7.365 -7.345 -7.288 -7.199 -7.213 -7.166 -7.067 + -7.012 -6.800 -6.782 -6.695 -6.618 -6.536 -6.324 -6.133 -5.847 -5.648 + -5.489 -4.987 -4.941 -4.263 -3.921 -3.376 -3.257 -2.944 -2.711 -2.573 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1272 sndrD3_g11 16 0.226114E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.844 -0.953 -0.955 -1.016 + -1.083 -1.075 -1.029 -1.001 -1.023 -1.062 -0.987 -1.034 -1.009 -1.014 + -1.010 -1.052 -1.005 -1.041 -1.037 -0.944 -0.976 -0.923 -0.934 -0.849 + -0.903 -0.884 -0.809 -0.837 -0.825 -0.777 -0.802 -0.786 -0.816 -0.848 + -0.863 -0.869 -0.908 -0.930 -0.997 -0.932 -0.959 -0.984 -0.949 -0.973 + -0.989 -0.989 -1.083 -1.064 -1.121 -1.025 -0.810 -0.423 -0.269 -0.135 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1273 sndrD3_g11 17 0.563422E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.584 -0.685 -0.674 -0.774 + -0.823 -0.806 -0.758 -0.684 -0.729 -0.802 -0.691 -0.767 -0.713 -0.731 + -0.726 -0.783 -0.733 -0.788 -0.786 -0.665 -0.728 -0.665 -0.679 -0.587 + -0.642 -0.605 -0.544 -0.563 -0.559 -0.503 -0.524 -0.510 -0.561 -0.590 + -0.610 -0.640 -0.691 -0.702 -0.810 -0.742 -0.786 -0.836 -0.795 -0.806 + -0.853 -0.940 -1.121 -1.468 -1.380 -1.371 -1.040 -0.565 -0.421 -0.234 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1274 sndrD3_g11 18 0.659215E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.057 -0.205 -0.229 -0.268 + -0.329 -0.348 -0.289 -0.242 -0.306 -0.355 -0.263 -0.361 -0.282 -0.305 + -0.352 -0.376 -0.306 -0.389 -0.333 -0.275 -0.301 -0.276 -0.268 -0.232 + -0.223 -0.221 -0.171 -0.164 -0.163 -0.122 -0.128 -0.110 -0.169 -0.152 + -0.173 -0.171 -0.244 -0.212 -0.298 -0.286 -0.339 -0.396 -0.381 -0.401 + -0.455 -0.640 -0.838 -1.361 -1.305 -1.431 -1.113 -0.607 -0.403 -0.261 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1275 sndrD4_g11 1 -0.291236E-01 + 0.000 0.000 0.000 0.000 0.000 -0.699 -0.861 -0.872 -0.903 -0.909 + -0.880 -0.894 -0.886 -0.909 -0.919 -0.932 -0.951 -0.938 -0.935 -0.945 + -0.939 -0.951 -0.954 -0.970 -0.969 -0.983 -0.979 -0.993 -0.993 -0.990 + -1.003 -1.008 -1.030 -1.023 -1.030 -1.019 -1.040 -1.052 -1.060 -1.070 + -1.077 -1.070 -1.112 -1.117 -1.149 -1.164 -1.156 -1.180 -1.182 -1.205 + -1.196 -1.183 -1.219 -1.215 -1.212 -1.232 -1.304 -1.316 -1.354 -1.310 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1276 sndrD4_g11 2 0.447478E-02 + 0.000 0.000 0.000 0.000 0.000 -0.232 -0.406 -0.404 -0.430 -0.474 + -0.416 -0.424 -0.439 -0.439 -0.437 -0.409 -0.477 -0.428 -0.405 -0.437 + -0.438 -0.442 -0.452 -0.443 -0.430 -0.450 -0.461 -0.482 -0.480 -0.509 + -0.494 -0.516 -0.524 -0.550 -0.551 -0.560 -0.578 -0.594 -0.615 -0.639 + -0.646 -0.662 -0.691 -0.696 -0.735 -0.762 -0.775 -0.800 -0.830 -0.852 + -0.878 -0.879 -0.913 -0.931 -0.949 -0.962 -1.029 -1.067 -1.085 -1.097 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1277 sndrD4_g11 3 0.483161E-01 + 0.000 0.000 0.000 0.000 0.000 0.108 0.731 0.717 0.731 0.723 + 0.746 0.733 0.745 0.764 0.735 0.787 0.755 0.761 0.783 0.769 + 0.733 0.782 0.818 0.860 0.825 0.798 0.818 0.793 0.814 0.824 + 0.832 0.814 0.831 0.857 0.824 0.830 0.828 0.815 0.821 0.802 + 0.808 0.797 0.798 0.794 0.789 0.783 0.745 0.694 0.665 0.670 + 0.565 0.528 0.529 0.482 0.337 0.331 0.255 0.183 0.174 0.192 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1278 sndrD4_g11 4 0.516648E-01 + 0.000 0.000 0.000 0.000 0.000 0.062 0.228 0.146 0.192 0.140 + 0.081 0.068 0.055 0.045 -0.025 0.059 0.015 0.021 0.029 0.038 + -0.020 0.022 0.122 0.153 0.098 0.112 0.118 0.089 0.124 0.130 + 0.167 0.137 0.132 0.165 0.128 0.162 0.172 0.161 0.176 0.171 + 0.207 0.202 0.229 0.254 0.279 0.307 0.306 0.311 0.293 0.341 + 0.246 0.236 0.247 0.241 0.044 0.066 0.009 0.063 0.049 0.135 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1279 sndrD4_g11 5 0.440513E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.136 0.039 1.027 + 0.483 1.371 1.467 1.482 1.347 1.469 1.452 1.387 1.419 1.395 + 1.320 1.343 1.478 1.530 1.430 1.419 1.435 1.387 1.437 1.429 + 1.490 1.455 1.485 1.512 1.487 1.541 1.583 1.560 1.584 1.615 + 1.634 1.639 1.649 1.760 1.767 1.758 1.806 1.777 1.785 1.807 + 1.676 1.700 1.586 1.453 1.139 1.068 1.026 1.171 1.224 0.855 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1280 sndrD4_g11 6 0.217272E-01 + 0.000 0.000 0.000 0.000 0.000 0.083 1.000 1.044 1.056 1.238 + 1.104 0.915 0.876 0.806 0.541 0.699 0.740 0.534 0.586 0.529 + 0.339 0.386 0.584 0.672 0.454 0.444 0.397 0.322 0.367 0.309 + 0.410 0.331 0.352 0.399 0.328 0.387 0.471 0.412 0.444 0.479 + 0.514 0.494 0.535 0.695 0.722 0.694 0.699 0.639 0.631 0.623 + 0.339 0.317 0.101 -0.343 -0.568 -0.690 -0.539 -0.303 -0.251 -0.291 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1281 sndrD4_g11 7 0.139899E-01 + 0.000 0.000 0.000 0.000 0.000 0.206 0.928 0.976 0.975 0.991 + 0.926 0.703 0.619 0.556 0.349 0.443 0.514 0.290 0.345 0.235 + 0.059 0.133 0.276 0.338 0.141 0.130 0.100 0.016 0.076 -0.012 + 0.093 0.014 0.041 0.089 0.029 0.074 0.146 0.103 0.119 0.154 + 0.197 0.150 0.176 0.350 0.304 0.278 0.255 0.215 0.198 0.221 + -0.038 -0.074 -0.360 -0.777 -0.907 -1.050 -0.988 -0.667 -0.649 -0.603 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1282 sndrD4_g11 8 0.104171E-01 + 0.000 0.000 0.000 0.000 0.000 0.167 0.643 0.637 0.620 0.608 + 0.572 0.358 0.279 0.226 0.042 0.101 0.185 -0.022 0.040 -0.091 + -0.227 -0.190 -0.087 -0.072 -0.230 -0.253 -0.277 -0.347 -0.323 -0.412 + -0.317 -0.399 -0.386 -0.336 -0.404 -0.379 -0.335 -0.356 -0.362 -0.351 + -0.303 -0.359 -0.319 -0.167 -0.217 -0.251 -0.283 -0.323 -0.355 -0.342 + -0.599 -0.713 -0.971 -1.345 -1.586 -1.763 -1.783 -1.364 -1.337 -1.217 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1283 sndrD4_g11 9 -0.956945E-02 + 0.000 0.000 0.000 0.000 0.000 0.048 0.217 0.225 0.202 0.125 + 0.126 0.009 -0.004 -0.050 -0.168 -0.167 -0.119 -0.239 -0.185 -0.284 + -0.306 -0.281 -0.211 -0.238 -0.368 -0.430 -0.406 -0.483 -0.530 -0.526 + -0.470 -0.461 -0.423 -0.371 -0.455 -0.369 -0.342 -0.321 -0.340 -0.344 + -0.287 -0.293 -0.274 -0.238 -0.268 -0.273 -0.216 -0.235 -0.280 -0.230 + -0.372 -0.265 -0.475 -0.419 -0.735 -0.767 -1.102 -0.993 -0.713 -0.349 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1284 sndrD4_g11 10 0.566531E-01 + 0.000 0.000 0.000 0.000 0.000 -0.287 0.102 0.006 0.113 0.148 + 0.131 0.136 0.122 0.169 0.052 0.093 0.103 0.078 0.117 0.085 + -0.068 0.052 0.318 0.329 0.137 0.086 0.091 -0.011 0.115 0.067 + 0.164 0.120 0.170 0.175 0.178 0.228 0.280 0.264 0.253 0.309 + 0.389 0.379 0.407 0.486 0.561 0.606 0.637 0.540 0.571 0.598 + 0.301 0.255 0.354 0.346 -0.079 -0.268 0.070 0.041 0.361 0.222 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1285 sndrD4_g11 11 0.764518E-01 + 0.000 0.000 0.000 0.000 0.000 0.004 0.330 0.218 0.378 0.374 + 0.474 0.344 0.548 0.403 0.444 0.460 0.589 0.514 0.565 0.556 + 0.397 0.569 0.744 0.714 0.600 0.571 0.606 0.525 0.611 0.603 + 0.694 0.626 0.615 0.695 0.655 0.693 0.759 0.727 0.745 0.773 + 0.789 0.781 0.877 0.924 0.950 0.945 0.945 0.940 0.928 1.036 + 0.845 0.843 0.849 0.934 1.063 1.268 1.042 1.554 1.676 1.007 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1286 sndrD4_g11 12 0.774063E-01 + 0.000 0.000 0.000 0.000 0.000 0.342 0.307 0.128 0.092 0.045 + 0.038 0.266 0.326 0.302 0.282 0.201 0.297 0.433 0.490 0.432 + 0.402 0.533 0.484 0.445 0.411 0.267 0.392 0.364 0.428 0.418 + 0.489 0.388 0.414 0.457 0.432 0.415 0.392 0.456 0.488 0.436 + 0.406 0.414 0.479 0.522 0.546 0.568 0.553 0.530 0.582 0.759 + 0.442 0.411 0.372 0.498 0.613 0.713 0.613 0.904 0.943 1.141 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1287 sndrD4_g11 13 0.404856E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.230 -0.799 -0.780 -0.989 + -1.059 -1.107 -1.112 -1.128 -1.171 -1.138 -1.109 -1.161 -1.168 -1.203 + -1.249 -1.240 -1.176 -1.193 -1.219 -1.216 -1.208 -1.216 -1.203 -1.204 + -1.202 -1.218 -1.194 -1.162 -1.190 -1.198 -1.187 -1.178 -1.216 -1.227 + -1.226 -1.212 -1.235 -1.217 -1.245 -1.214 -1.250 -1.217 -1.247 -1.270 + -1.230 -1.278 -1.325 -1.334 -1.365 -1.303 -1.381 -1.043 -1.072 -0.809 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1288 sndrD4_g11 14 0.488768E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 -0.824 -0.904 -0.914 -0.998 + -1.079 -1.102 -1.128 -1.138 -1.159 -1.134 -1.098 -1.144 -1.138 -1.162 + -1.207 -1.169 -1.125 -1.114 -1.155 -1.147 -1.128 -1.115 -1.088 -1.088 + -1.098 -1.096 -1.080 -1.051 -1.067 -1.064 -1.053 -1.042 -1.066 -1.059 + -1.058 -1.035 -1.062 -1.042 -1.076 -1.038 -1.072 -1.033 -1.041 -1.051 + -0.986 -1.012 -1.011 -0.858 -0.927 -0.833 -0.883 -0.545 -0.651 -0.319 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1289 sndrD4_g11 15 0.426942E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -7.758 -7.748 -7.760 -7.694 -7.610 -7.554 -7.479 -7.421 + -7.443 -7.423 -7.430 -7.304 -7.313 -7.280 -7.215 -7.172 -7.109 -7.038 + -6.975 -6.737 -6.750 -6.664 -6.593 -6.378 -6.200 -5.939 -5.822 -5.630 + -5.145 -4.796 -4.721 -4.061 -3.401 -3.211 -3.008 -2.759 -2.437 -2.234 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1290 sndrD4_g11 16 0.226329E-01 + 0.000 0.000 0.000 0.000 0.000 -0.040 -0.716 -0.580 -0.871 -0.962 + -0.963 -1.048 -0.976 -0.951 -1.026 -0.983 -0.950 -1.021 -0.990 -1.023 + -1.048 -1.032 -1.061 -1.075 -1.014 -1.008 -0.997 -0.968 -0.986 -0.890 + -0.968 -0.910 -0.856 -0.836 -0.862 -0.850 -0.864 -0.840 -0.891 -0.887 + -0.902 -0.899 -0.935 -0.958 -1.013 -0.931 -1.015 -0.995 -1.022 -1.030 + -0.935 -0.982 -0.947 -1.093 -0.961 -0.833 -0.886 -0.465 -0.348 -0.389 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1291 sndrD4_g11 17 0.563436E-02 + 0.000 0.000 0.000 0.000 0.000 -0.030 -0.409 -0.320 -0.585 -0.688 + -0.681 -0.768 -0.670 -0.631 -0.743 -0.694 -0.637 -0.728 -0.694 -0.740 + -0.768 -0.763 -0.802 -0.791 -0.752 -0.754 -0.725 -0.688 -0.710 -0.615 + -0.694 -0.631 -0.567 -0.547 -0.587 -0.561 -0.576 -0.553 -0.627 -0.619 + -0.639 -0.645 -0.700 -0.724 -0.805 -0.723 -0.834 -0.841 -0.859 -0.848 + -0.803 -0.947 -0.929 -1.215 -1.124 -0.956 -0.923 -0.506 -0.535 -0.418 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1292 sndrD4_g11 18 0.652246E-02 + 0.000 0.000 0.000 0.000 0.000 -0.010 -0.039 -0.044 -0.049 -0.206 + -0.162 -0.314 -0.239 -0.190 -0.330 -0.262 -0.233 -0.322 -0.272 -0.331 + -0.398 -0.378 -0.345 -0.357 -0.355 -0.349 -0.319 -0.324 -0.322 -0.278 + -0.298 -0.292 -0.228 -0.193 -0.225 -0.202 -0.187 -0.178 -0.230 -0.231 + -0.233 -0.221 -0.283 -0.252 -0.345 -0.310 -0.381 -0.434 -0.472 -0.405 + -0.465 -0.605 -0.685 -1.072 -1.165 -1.106 -0.910 -0.460 -0.548 -0.373 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1293 sndrD1_g12 1 -0.302705E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.678 -0.757 -0.791 -0.814 -0.825 -0.858 -0.810 + -0.816 -0.824 -0.855 -0.818 -0.839 -0.854 -0.861 -0.877 -0.882 -0.910 + -0.896 -0.894 -0.873 -0.890 -0.889 -0.882 -0.887 -0.909 -0.892 -0.907 + -0.890 -0.917 -0.891 -0.925 -0.928 -0.915 -0.916 -0.922 -0.916 -0.941 + -0.966 -0.940 -0.956 -0.920 -0.968 -0.970 -0.927 -1.049 -1.071 -1.096 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1294 sndrD1_g12 2 0.936010E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.490 -0.508 -0.494 -0.512 -0.500 -0.524 -0.521 + -0.519 -0.501 -0.514 -0.508 -0.519 -0.540 -0.551 -0.558 -0.557 -0.574 + -0.582 -0.574 -0.579 -0.584 -0.601 -0.603 -0.609 -0.619 -0.636 -0.653 + -0.655 -0.663 -0.664 -0.694 -0.707 -0.688 -0.708 -0.717 -0.713 -0.753 + -0.764 -0.764 -0.764 -0.770 -0.820 -0.805 -0.765 -0.862 -0.868 -0.951 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1295 sndrD1_g12 3 0.503977E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.609 0.635 0.684 0.703 0.719 0.729 0.725 + 0.737 0.744 0.732 0.758 0.757 0.749 0.757 0.769 0.774 0.781 + 0.783 0.783 0.779 0.805 0.788 0.763 0.757 0.748 0.739 0.702 + 0.733 0.686 0.709 0.683 0.702 0.682 0.674 0.674 0.638 0.592 + 0.601 0.594 0.573 0.584 0.536 0.437 0.496 0.527 0.582 0.528 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1296 sndrD1_g12 4 0.518413E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.407 0.425 0.463 0.531 0.565 0.575 0.550 + 0.551 0.562 0.578 0.614 0.614 0.568 0.593 0.552 0.559 0.542 + 0.545 0.538 0.549 0.535 0.529 0.534 0.500 0.525 0.545 0.511 + 0.536 0.533 0.545 0.528 0.569 0.550 0.527 0.535 0.526 0.508 + 0.522 0.478 0.499 0.528 0.463 0.423 0.460 0.557 0.631 0.766 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1297 sndrD1_g12 5 0.417850E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -1.472 -1.412 -1.367 -1.242 -1.211 -1.171 -1.238 + -1.240 -1.252 -1.255 -1.183 -1.164 -1.252 -1.231 -1.274 -1.298 -1.269 + -1.275 -1.246 -1.281 -1.262 -1.283 -1.285 -1.350 -1.316 -1.309 -1.342 + -1.294 -1.323 -1.317 -1.316 -1.297 -1.311 -1.317 -1.330 -1.350 -1.340 + -1.365 -1.400 -1.498 -1.414 -1.590 -1.801 -1.688 -1.584 -1.599 -1.482 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1298 sndrD1_g12 6 0.206582E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.660 0.699 0.837 0.957 1.001 1.058 1.001 + 1.054 1.017 1.042 1.115 1.142 1.031 1.033 0.961 0.918 0.947 + 0.937 0.920 0.872 0.857 0.809 0.813 0.752 0.773 0.773 0.719 + 0.738 0.711 0.699 0.698 0.713 0.644 0.618 0.562 0.519 0.464 + 0.385 0.266 -0.000 0.198 -0.065 -0.488 -0.437 -0.155 -0.333 -0.115 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1299 sndrD1_g12 7 0.131591E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.228 0.244 0.439 0.500 0.542 0.603 0.562 + 0.649 0.601 0.674 0.708 0.740 0.656 0.655 0.638 0.633 0.670 + 0.655 0.632 0.602 0.596 0.519 0.546 0.477 0.465 0.448 0.375 + 0.386 0.354 0.332 0.326 0.316 0.243 0.213 0.157 0.118 0.086 + -0.035 -0.133 -0.440 -0.304 -0.507 -0.802 -0.780 -0.716 -0.886 -0.531 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1300 sndrD1_g12 8 0.949616E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.038 0.018 0.167 0.201 0.205 0.256 0.228 + 0.347 0.300 0.391 0.368 0.410 0.364 0.352 0.377 0.391 0.424 + 0.391 0.338 0.305 0.281 0.206 0.212 0.142 0.091 0.048 -0.016 + -0.040 -0.067 -0.100 -0.133 -0.165 -0.252 -0.302 -0.392 -0.445 -0.467 + -0.628 -0.723 -0.976 -0.988 -1.112 -1.193 -1.249 -1.406 -1.565 -1.176 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1301 sndrD1_g12 9 -0.941833E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.096 0.072 0.170 0.169 0.115 0.162 0.143 + 0.240 0.203 0.253 0.210 0.234 0.237 0.235 0.278 0.291 0.268 + 0.284 0.231 0.204 0.218 0.172 0.157 0.123 0.052 0.048 0.055 + 0.030 0.002 -0.013 -0.015 -0.049 -0.119 -0.134 -0.208 -0.215 -0.143 + -0.412 -0.408 -0.449 -0.483 -0.489 -0.346 -0.564 -0.580 -0.313 -0.281 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1302 sndrD1_g12 10 0.549791E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.717 0.772 0.956 1.066 1.095 1.145 0.961 + 0.898 0.867 0.816 0.909 0.913 0.800 0.878 0.813 0.773 0.791 + 0.773 0.836 0.766 0.807 0.819 0.824 0.758 0.817 0.850 0.814 + 0.794 0.840 0.792 0.781 0.865 0.843 0.818 0.857 0.763 0.773 + 0.841 0.737 0.614 0.680 0.560 0.256 0.195 0.595 0.786 0.510 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1303 sndrD1_g12 11 0.738103E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.885 1.134 1.243 1.322 1.355 1.533 1.232 + 1.178 1.090 1.069 1.087 1.111 0.975 1.041 0.943 0.970 0.994 + 0.996 1.042 1.028 1.050 1.108 1.140 1.059 1.074 1.224 1.115 + 1.181 1.176 1.177 1.175 1.337 1.287 1.379 1.389 1.339 1.293 + 1.322 1.332 1.257 1.359 1.295 1.220 1.169 1.448 1.568 1.704 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1304 sndrD1_g12 12 0.797702E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.772 1.008 1.086 1.279 1.163 1.265 0.916 + 0.976 0.896 0.689 0.683 0.685 0.581 0.550 0.456 0.475 0.491 + 0.487 0.560 0.469 0.487 0.579 0.517 0.499 0.522 0.692 0.596 + 0.707 0.720 0.784 0.783 0.884 0.897 0.820 0.868 0.835 0.731 + 0.754 0.760 0.625 0.768 0.769 0.723 0.860 1.019 1.097 1.308 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1305 sndrD1_g12 13 0.386426E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.377 0.343 0.468 0.476 0.440 0.447 0.491 + 0.574 0.590 0.654 0.600 0.651 0.672 0.696 0.765 0.805 0.817 + 0.826 0.779 0.775 0.794 0.762 0.773 0.766 0.720 0.692 0.674 + 0.655 0.672 0.640 0.635 0.625 0.598 0.566 0.503 0.497 0.534 + 0.448 0.473 0.371 0.368 0.419 0.521 0.466 0.332 0.267 0.602 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1306 sndrD1_g12 14 0.491883E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.177 0.189 0.240 0.286 0.282 0.314 0.316 + 0.378 0.406 0.443 0.452 0.452 0.480 0.486 0.547 0.556 0.581 + 0.603 0.593 0.618 0.634 0.599 0.626 0.630 0.623 0.619 0.629 + 0.599 0.647 0.628 0.622 0.627 0.613 0.630 0.602 0.629 0.665 + 0.644 0.655 0.645 0.610 0.605 0.808 0.816 0.702 0.861 0.924 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1307 sndrD1_g12 15 0.448110E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -7.214 -7.130 -7.110 -7.139 -7.091 -7.012 -7.093 + -6.976 -6.937 -6.899 -6.914 -6.837 -6.793 -6.780 -6.694 -6.667 -6.644 + -6.599 -6.448 -6.384 -6.360 -6.296 -6.223 -6.079 -5.995 -5.855 -5.721 + -5.616 -5.559 -5.474 -5.327 -5.286 -5.217 -5.060 -4.938 -4.827 -4.468 + -4.387 -4.265 -4.245 -4.391 -4.155 -3.080 -3.681 -3.689 -3.768 -3.827 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1308 sndrD1_g12 16 0.232860E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.186 -0.358 -0.240 -0.334 -0.422 -0.442 -0.341 + -0.218 -0.181 -0.189 -0.257 -0.254 -0.145 -0.134 0.004 0.089 0.138 + 0.092 0.069 0.064 0.120 0.050 0.050 0.068 -0.025 -0.034 -0.085 + -0.182 -0.093 -0.148 -0.177 -0.268 -0.297 -0.363 -0.439 -0.394 -0.298 + -0.436 -0.422 -0.541 -0.622 -0.413 0.014 -0.118 -0.630 -0.618 -0.186 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1309 sndrD1_g12 17 0.567372E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.007 -0.137 0.006 -0.106 -0.227 -0.242 -0.128 + 0.014 0.064 0.052 -0.039 -0.033 0.087 0.105 0.283 0.392 0.439 + 0.382 0.350 0.359 0.434 0.320 0.311 0.340 0.210 0.205 0.130 + 0.011 0.127 0.031 -0.006 -0.165 -0.191 -0.283 -0.386 -0.322 -0.206 + -0.414 -0.384 -0.607 -0.731 -0.456 0.157 -0.085 -1.051 -1.010 -0.480 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1310 sndrD1_g12 18 0.583744E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.304 0.230 0.408 0.340 0.239 0.215 0.312 + 0.429 0.475 0.480 0.411 0.425 0.518 0.538 0.683 0.782 0.828 + 0.778 0.759 0.773 0.828 0.724 0.736 0.752 0.652 0.632 0.583 + 0.439 0.552 0.493 0.453 0.318 0.276 0.216 0.099 0.149 0.230 + 0.060 0.042 -0.184 -0.261 -0.160 0.346 0.054 -0.638 -0.767 -0.233 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1311 sndrD2_g12 1 -0.302785E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.662 -0.664 -0.743 -0.767 -0.756 -0.749 -0.744 + -0.731 -0.751 -0.765 -0.752 -0.803 -0.792 -0.808 -0.811 -0.807 -0.828 + -0.829 -0.821 -0.831 -0.829 -0.838 -0.841 -0.845 -0.842 -0.839 -0.849 + -0.849 -0.855 -0.855 -0.873 -0.869 -0.856 -0.874 -0.872 -0.874 -0.877 + -0.922 -0.935 -0.952 -0.931 -0.927 -0.988 -0.955 -0.977 -0.967 -1.008 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1312 sndrD2_g12 2 0.102221E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.522 -0.529 -0.551 -0.570 -0.556 -0.567 -0.585 + -0.538 -0.573 -0.568 -0.560 -0.580 -0.560 -0.578 -0.578 -0.571 -0.581 + -0.588 -0.605 -0.596 -0.592 -0.613 -0.605 -0.615 -0.636 -0.626 -0.634 + -0.643 -0.638 -0.640 -0.676 -0.657 -0.669 -0.690 -0.699 -0.687 -0.703 + -0.741 -0.739 -0.751 -0.750 -0.747 -0.783 -0.783 -0.807 -0.836 -0.837 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1313 sndrD2_g12 3 0.503275E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.521 0.563 0.565 0.587 0.622 0.622 0.595 + 0.608 0.613 0.627 0.636 0.627 0.635 0.632 0.644 0.651 0.651 + 0.646 0.650 0.651 0.651 0.644 0.635 0.617 0.604 0.611 0.583 + 0.582 0.573 0.569 0.541 0.545 0.546 0.526 0.509 0.503 0.481 + 0.484 0.455 0.459 0.452 0.434 0.330 0.330 0.389 0.373 0.423 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1314 sndrD2_g12 4 0.517530E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.444 0.493 0.518 0.555 0.585 0.603 0.577 + 0.582 0.572 0.622 0.628 0.629 0.604 0.612 0.586 0.571 0.567 + 0.551 0.550 0.544 0.532 0.529 0.523 0.506 0.502 0.515 0.504 + 0.512 0.515 0.514 0.501 0.531 0.516 0.503 0.493 0.499 0.469 + 0.444 0.446 0.450 0.442 0.440 0.344 0.444 0.469 0.567 0.549 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1315 sndrD2_g12 5 0.416268E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -1.653 -1.572 -1.507 -1.439 -1.390 -1.382 -1.434 + -1.434 -1.469 -1.403 -1.376 -1.382 -1.413 -1.412 -1.447 -1.477 -1.452 + -1.475 -1.470 -1.487 -1.493 -1.502 -1.509 -1.557 -1.547 -1.547 -1.586 + -1.574 -1.578 -1.589 -1.571 -1.552 -1.576 -1.574 -1.611 -1.602 -1.675 + -1.672 -1.677 -1.784 -1.897 -1.897 -2.051 -1.914 -2.035 -1.927 -1.777 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1316 sndrD2_g12 6 0.204529E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.594 0.666 0.796 0.917 0.938 0.996 0.938 + 0.955 0.922 1.032 1.023 1.023 0.965 0.968 0.906 0.842 0.857 + 0.827 0.794 0.771 0.725 0.692 0.686 0.634 0.641 0.611 0.581 + 0.533 0.561 0.533 0.540 0.537 0.478 0.444 0.345 0.309 0.212 + 0.148 0.022 -0.110 -0.431 -0.332 -0.764 -0.640 -0.790 -0.537 -0.239 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1317 sndrD2_g12 7 0.129669E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.165 0.260 0.408 0.482 0.521 0.542 0.512 + 0.568 0.539 0.663 0.641 0.645 0.631 0.615 0.594 0.561 0.590 + 0.560 0.530 0.507 0.477 0.416 0.442 0.368 0.343 0.277 0.248 + 0.197 0.215 0.180 0.180 0.151 0.098 0.060 -0.039 -0.093 -0.162 + -0.264 -0.345 -0.586 -0.960 -0.791 -1.146 -1.038 -1.350 -1.134 -0.811 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1318 sndrD2_g12 8 0.935361E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.074 0.002 0.126 0.171 0.173 0.197 0.182 + 0.260 0.234 0.356 0.296 0.310 0.328 0.310 0.314 0.296 0.320 + 0.284 0.235 0.210 0.173 0.102 0.126 0.038 0.010 -0.079 -0.133 + -0.169 -0.160 -0.204 -0.229 -0.282 -0.333 -0.394 -0.507 -0.573 -0.652 + -0.755 -0.816 -1.106 -1.500 -1.357 -1.503 -1.584 -1.980 -1.796 -1.403 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1319 sndrD2_g12 9 -0.947345E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.017 0.083 0.159 0.144 0.108 0.146 0.110 + 0.183 0.183 0.237 0.153 0.178 0.220 0.216 0.213 0.216 0.213 + 0.208 0.139 0.146 0.143 0.104 0.093 0.026 -0.003 -0.070 -0.063 + -0.050 -0.050 -0.113 -0.108 -0.119 -0.134 -0.177 -0.257 -0.302 -0.330 + -0.429 -0.424 -0.513 -0.689 -0.609 -0.681 -0.655 -0.806 -0.668 -0.531 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1320 sndrD2_g12 10 0.548775E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.540 0.666 0.805 0.939 0.945 0.978 0.817 + 0.703 0.719 0.743 0.779 0.776 0.677 0.745 0.662 0.635 0.624 + 0.613 0.640 0.608 0.636 0.644 0.644 0.619 0.656 0.657 0.630 + 0.612 0.632 0.585 0.586 0.652 0.652 0.604 0.588 0.612 0.449 + 0.586 0.425 0.465 0.433 0.314 0.124 0.106 0.344 0.500 0.259 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1321 sndrD2_g12 11 0.738658E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.821 1.097 1.177 1.344 1.286 1.370 1.138 + 1.021 1.010 1.018 1.019 1.027 0.879 0.950 0.883 0.880 0.904 + 0.884 0.914 0.941 0.995 1.025 1.030 0.981 1.030 1.078 1.014 + 1.078 1.019 1.051 1.030 1.205 1.141 1.212 1.171 1.224 1.120 + 1.236 1.080 1.235 1.267 0.994 1.048 1.067 1.223 1.488 1.432 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1322 sndrD2_g12 12 0.800446E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.782 1.003 1.053 1.194 1.127 1.066 0.909 + 0.818 0.791 0.667 0.623 0.634 0.553 0.475 0.382 0.415 0.371 + 0.372 0.360 0.423 0.407 0.530 0.467 0.421 0.459 0.535 0.490 + 0.624 0.569 0.651 0.606 0.758 0.745 0.774 0.703 0.777 0.648 + 0.724 0.666 0.714 0.780 0.653 0.720 0.868 0.708 1.090 1.058 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1323 sndrD2_g12 13 0.386235E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.364 0.338 0.437 0.421 0.383 0.428 0.427 + 0.532 0.540 0.587 0.567 0.586 0.640 0.642 0.680 0.698 0.736 + 0.725 0.675 0.686 0.671 0.625 0.679 0.667 0.654 0.614 0.586 + 0.578 0.599 0.611 0.551 0.555 0.535 0.469 0.423 0.434 0.403 + 0.372 0.357 0.272 0.092 0.135 0.114 0.140 -0.033 0.031 0.360 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1324 sndrD2_g12 14 0.492304E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.149 0.159 0.196 0.199 0.224 0.295 0.263 + 0.342 0.362 0.382 0.411 0.423 0.424 0.460 0.487 0.482 0.542 + 0.555 0.535 0.532 0.529 0.531 0.542 0.525 0.535 0.537 0.540 + 0.556 0.584 0.558 0.579 0.540 0.555 0.529 0.530 0.555 0.502 + 0.550 0.598 0.591 0.581 0.454 0.687 0.608 0.596 0.605 0.282 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1325 sndrD2_g12 15 0.452854E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -6.439 -6.792 -6.775 -6.888 -6.736 -6.714 -6.740 + -6.623 -6.567 -6.600 -6.490 -6.438 -6.523 -6.474 -6.338 -6.289 -6.310 + -6.182 -5.925 -5.955 -5.945 -5.777 -5.744 -5.625 -5.514 -5.406 -5.338 + -5.208 -5.091 -4.975 -4.793 -4.772 -4.704 -4.571 -4.475 -4.307 -4.035 + -3.806 -3.595 -3.564 -3.379 -3.319 -2.457 -2.664 -3.631 -3.183 -3.209 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1326 sndrD2_g12 16 0.232287E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.210 -0.254 -0.264 -0.354 -0.466 -0.453 -0.353 + -0.244 -0.245 -0.224 -0.294 -0.246 -0.188 -0.127 -0.062 -0.013 0.058 + -0.007 -0.034 -0.013 0.008 -0.067 -0.027 -0.071 -0.121 -0.232 -0.196 + -0.208 -0.163 -0.251 -0.318 -0.359 -0.393 -0.485 -0.540 -0.488 -0.517 + -0.562 -0.535 -0.685 -0.819 -0.563 -0.468 -0.549 -0.978 -0.808 -0.439 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1327 sndrD2_g12 17 0.565316E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.068 -0.129 0.006 -0.131 -0.241 -0.200 -0.112 + 0.021 0.017 0.043 -0.036 -0.042 0.080 0.093 0.203 0.309 0.360 + 0.289 0.271 0.293 0.320 0.231 0.254 0.225 0.153 -0.002 -0.001 + -0.027 0.045 -0.062 -0.163 -0.200 -0.273 -0.398 -0.463 -0.445 -0.387 + -0.498 -0.411 -0.737 -1.109 -0.741 -0.349 -0.722 -1.360 -1.130 -0.721 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1328 sndrD2_g12 18 0.576025E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.235 0.242 0.369 0.281 0.166 0.213 0.283 + 0.416 0.417 0.422 0.353 0.387 0.470 0.506 0.594 0.680 0.713 + 0.683 0.662 0.670 0.682 0.608 0.640 0.593 0.539 0.409 0.445 + 0.417 0.466 0.359 0.257 0.242 0.154 0.106 0.029 0.009 0.021 + -0.119 -0.040 -0.402 -0.849 -0.402 -0.282 -0.536 -1.080 -0.725 -0.675 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1329 sndrD3_g12 1 -0.298424E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.225 -0.627 -0.643 -0.687 -0.726 -0.739 -0.730 -0.716 + -0.726 -0.741 -0.730 -0.753 -0.777 -0.763 -0.775 -0.795 -0.788 -0.825 + -0.814 -0.805 -0.827 -0.823 -0.815 -0.831 -0.832 -0.830 -0.831 -0.820 + -0.831 -0.836 -0.829 -0.833 -0.840 -0.842 -0.867 -0.856 -0.847 -0.874 + -0.887 -0.891 -0.907 -0.893 -0.891 -0.988 -0.949 -0.939 -0.975 -0.946 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1330 sndrD3_g12 2 0.101800E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.152 -0.548 -0.533 -0.544 -0.566 -0.564 -0.572 -0.552 + -0.548 -0.553 -0.542 -0.573 -0.552 -0.542 -0.551 -0.569 -0.567 -0.579 + -0.588 -0.591 -0.591 -0.581 -0.591 -0.596 -0.604 -0.602 -0.611 -0.597 + -0.626 -0.618 -0.625 -0.649 -0.647 -0.644 -0.673 -0.683 -0.682 -0.703 + -0.706 -0.712 -0.738 -0.738 -0.716 -0.793 -0.784 -0.810 -0.844 -0.851 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1331 sndrD3_g12 3 0.504779E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.043 0.567 0.603 0.631 0.653 0.676 0.683 0.676 + 0.666 0.683 0.681 0.703 0.686 0.713 0.717 0.716 0.717 0.724 + 0.727 0.741 0.729 0.738 0.743 0.728 0.731 0.708 0.705 0.694 + 0.682 0.685 0.684 0.660 0.661 0.677 0.635 0.644 0.619 0.600 + 0.587 0.594 0.575 0.573 0.565 0.436 0.446 0.486 0.528 0.526 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1332 sndrD3_g12 4 0.518548E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.035 0.419 0.454 0.487 0.590 0.582 0.602 0.574 + 0.606 0.596 0.621 0.636 0.647 0.611 0.621 0.589 0.586 0.592 + 0.582 0.585 0.573 0.573 0.579 0.576 0.548 0.574 0.588 0.598 + 0.559 0.575 0.571 0.594 0.599 0.605 0.570 0.580 0.554 0.561 + 0.560 0.557 0.597 0.519 0.626 0.409 0.412 0.503 0.636 0.809 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1333 sndrD3_g12 5 0.418051E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -1.466 -1.422 -1.356 -1.227 -1.235 -1.207 -1.263 + -1.225 -1.280 -1.225 -1.183 -1.194 -1.245 -1.236 -1.276 -1.270 -1.236 + -1.277 -1.243 -1.268 -1.261 -1.271 -1.275 -1.328 -1.310 -1.297 -1.293 + -1.323 -1.318 -1.318 -1.316 -1.302 -1.321 -1.308 -1.305 -1.335 -1.349 + -1.332 -1.385 -1.415 -1.636 -1.485 -1.759 -1.771 -1.749 -1.585 -1.085 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1334 sndrD3_g12 6 0.207158E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.030 0.671 0.713 0.830 0.987 0.983 1.021 1.002 + 1.063 0.997 1.070 1.128 1.101 1.038 1.048 0.954 0.946 0.968 + 0.926 0.941 0.870 0.856 0.821 0.822 0.761 0.778 0.769 0.757 + 0.709 0.677 0.676 0.677 0.655 0.644 0.588 0.585 0.523 0.413 + 0.381 0.266 0.196 -0.161 -0.063 -0.439 -0.463 -0.405 -0.310 0.242 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1335 sndrD3_g12 7 0.131452E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.079 0.278 0.300 0.438 0.566 0.559 0.594 0.581 + 0.707 0.626 0.731 0.755 0.739 0.711 0.705 0.657 0.685 0.721 + 0.673 0.680 0.626 0.622 0.559 0.580 0.532 0.505 0.472 0.432 + 0.390 0.370 0.357 0.331 0.311 0.275 0.221 0.206 0.147 0.074 + 0.003 -0.103 -0.231 -0.691 -0.411 -0.700 -0.769 -0.935 -0.807 -0.228 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1336 sndrD3_g12 8 0.949354E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.085 0.042 0.036 0.145 0.223 0.196 0.228 0.228 + 0.372 0.300 0.418 0.395 0.392 0.406 0.368 0.383 0.404 0.431 + 0.380 0.352 0.300 0.297 0.209 0.229 0.174 0.112 0.057 -0.006 + -0.032 -0.069 -0.091 -0.132 -0.181 -0.232 -0.306 -0.338 -0.401 -0.462 + -0.564 -0.697 -0.806 -1.309 -0.975 -1.191 -1.271 -1.686 -1.462 -0.825 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1337 sndrD3_g12 9 -0.942103E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.009 -0.017 -0.004 0.057 0.086 0.039 0.053 0.064 + 0.179 0.132 0.198 0.147 0.150 0.202 0.172 0.190 0.206 0.200 + 0.199 0.131 0.148 0.138 0.088 0.077 0.061 -0.022 -0.039 -0.028 + -0.044 -0.044 -0.113 -0.089 -0.118 -0.178 -0.214 -0.241 -0.266 -0.246 + -0.332 -0.491 -0.267 -0.620 -0.386 -0.581 -0.883 -0.952 -0.556 -0.131 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1338 sndrD3_g12 10 0.549588E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.130 0.672 0.800 0.885 1.062 1.026 1.053 0.924 + 0.899 0.829 0.827 0.864 0.866 0.785 0.841 0.782 0.766 0.806 + 0.768 0.798 0.755 0.790 0.818 0.807 0.828 0.831 0.875 0.859 + 0.795 0.792 0.757 0.769 0.839 0.853 0.790 0.830 0.834 0.771 + 0.746 0.666 0.723 0.506 0.672 0.185 0.308 0.470 0.770 0.810 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1339 sndrD3_g12 11 0.738135E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.159 0.821 1.178 1.185 1.380 1.278 1.342 1.152 + 1.131 1.067 1.011 0.994 1.044 0.907 0.963 0.874 0.880 0.920 + 0.898 0.989 0.936 0.990 1.050 1.040 1.079 1.035 1.154 1.102 + 1.174 1.105 1.122 1.115 1.216 1.222 1.237 1.332 1.267 1.277 + 1.291 1.250 1.180 1.274 1.323 1.152 1.125 1.375 1.619 1.738 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1340 sndrD3_g12 12 0.799418E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.276 0.727 0.997 0.946 1.177 1.104 1.137 0.942 + 0.953 0.855 0.674 0.642 0.616 0.519 0.519 0.372 0.411 0.437 + 0.409 0.420 0.430 0.456 0.489 0.432 0.531 0.493 0.619 0.623 + 0.621 0.656 0.725 0.660 0.800 0.684 0.723 0.801 0.798 0.762 + 0.704 0.674 0.675 0.711 0.780 0.594 0.821 0.844 1.276 1.405 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1341 sndrD3_g12 13 0.386359E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.026 0.337 0.338 0.408 0.410 0.377 0.393 0.450 + 0.534 0.548 0.611 0.581 0.588 0.647 0.653 0.732 0.759 0.777 + 0.789 0.742 0.732 0.740 0.705 0.721 0.722 0.679 0.630 0.627 + 0.622 0.615 0.595 0.600 0.580 0.542 0.515 0.502 0.474 0.462 + 0.407 0.404 0.428 0.209 0.392 0.418 0.354 0.187 0.386 0.335 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1342 sndrD3_g12 14 0.492117E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.001 0.008 -0.011 0.021 0.086 0.078 0.092 0.121 + 0.190 0.212 0.230 0.230 0.255 0.252 0.284 0.327 0.343 0.367 + 0.389 0.375 0.375 0.390 0.380 0.406 0.422 0.398 0.389 0.383 + 0.380 0.404 0.376 0.401 0.417 0.388 0.386 0.388 0.381 0.409 + 0.348 0.410 0.425 0.387 0.478 0.492 0.429 0.574 0.595 0.299 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1343 sndrD3_g12 15 0.449803E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -7.030 -7.021 -6.940 -6.918 -6.927 -6.842 -6.809 + -6.822 -6.662 -6.741 -6.690 -6.657 -6.600 -6.594 -6.503 -6.497 -6.511 + -6.418 -6.331 -6.253 -6.169 -6.132 -5.973 -5.888 -5.826 -5.694 -5.627 + -5.527 -5.347 -5.278 -5.149 -4.969 -4.875 -4.756 -4.702 -4.390 -4.279 + -4.192 -3.981 -4.038 -3.930 -3.609 -2.918 -3.368 -3.324 -3.517 -3.487 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1344 sndrD3_g12 16 0.231982E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.273 -0.391 -0.334 -0.427 -0.508 -0.494 -0.369 + -0.290 -0.282 -0.245 -0.294 -0.326 -0.238 -0.196 -0.065 -0.017 0.081 + 0.018 -0.022 -0.030 0.057 -0.052 -0.025 0.009 -0.096 -0.187 -0.225 + -0.202 -0.245 -0.261 -0.302 -0.385 -0.368 -0.454 -0.521 -0.450 -0.447 + -0.485 -0.431 -0.542 -0.748 -0.367 -0.193 -0.379 -0.659 -0.531 -0.196 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1345 sndrD3_g12 17 0.565000E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 -0.065 -0.177 -0.075 -0.174 -0.301 -0.276 -0.127 + -0.014 -0.011 0.019 -0.063 -0.093 0.022 0.071 0.221 0.294 0.409 + 0.329 0.288 0.294 0.380 0.231 0.281 0.317 0.179 0.053 -0.000 + 0.033 -0.059 -0.008 -0.103 -0.230 -0.215 -0.332 -0.464 -0.347 -0.342 + -0.425 -0.340 -0.529 -0.882 -0.425 -0.087 -0.496 -1.004 -0.828 -0.387 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1346 sndrD3_g12 18 0.583311E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.244 0.187 0.310 0.250 0.141 0.165 0.277 + 0.405 0.383 0.429 0.378 0.367 0.431 0.488 0.610 0.683 0.771 + 0.713 0.688 0.679 0.770 0.627 0.685 0.699 0.586 0.478 0.442 + 0.471 0.362 0.389 0.330 0.239 0.229 0.142 0.026 0.087 0.080 + 0.017 0.034 -0.116 -0.469 -0.115 0.003 -0.329 -0.726 -0.606 -0.141 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1347 sndrD4_g12 1 -0.296068E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.363 -0.679 -0.673 -0.698 -0.709 -0.684 -0.697 -0.717 + -0.706 -0.710 -0.715 -0.741 -0.753 -0.740 -0.752 -0.751 -0.760 -0.762 + -0.784 -0.774 -0.781 -0.785 -0.792 -0.792 -0.798 -0.804 -0.802 -0.788 + -0.817 -0.800 -0.811 -0.813 -0.834 -0.824 -0.842 -0.836 -0.855 -0.841 + -0.866 -0.891 -0.898 -0.887 -0.880 -0.943 -0.935 -0.980 -0.944 -0.932 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1348 sndrD4_g12 2 0.111163E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.311 -0.487 -0.481 -0.499 -0.510 -0.498 -0.506 -0.507 + -0.502 -0.510 -0.500 -0.514 -0.530 -0.509 -0.520 -0.521 -0.529 -0.526 + -0.547 -0.538 -0.553 -0.554 -0.562 -0.571 -0.582 -0.593 -0.585 -0.588 + -0.618 -0.614 -0.620 -0.633 -0.644 -0.649 -0.665 -0.676 -0.687 -0.686 + -0.692 -0.721 -0.735 -0.749 -0.754 -0.776 -0.783 -0.851 -0.841 -0.843 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1349 sndrD4_g12 3 0.503854E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.705 0.666 0.699 0.707 0.714 0.740 0.743 0.740 + 0.747 0.733 0.758 0.777 0.764 0.785 0.778 0.780 0.790 0.793 + 0.785 0.791 0.778 0.784 0.779 0.768 0.751 0.747 0.739 0.717 + 0.717 0.696 0.688 0.685 0.679 0.664 0.654 0.652 0.649 0.613 + 0.598 0.599 0.576 0.585 0.563 0.413 0.415 0.492 0.491 0.425 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1350 sndrD4_g12 4 0.519221E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.479 0.370 0.426 0.440 0.493 0.503 0.538 0.495 + 0.519 0.520 0.542 0.566 0.537 0.548 0.547 0.517 0.514 0.515 + 0.498 0.517 0.489 0.481 0.476 0.475 0.449 0.474 0.486 0.481 + 0.462 0.459 0.471 0.476 0.488 0.473 0.482 0.468 0.458 0.460 + 0.437 0.455 0.492 0.496 0.463 0.369 0.358 0.511 0.587 0.526 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1351 sndrD4_g12 5 0.419129E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -1.503 -1.548 -1.503 -1.435 -1.366 -1.347 -1.322 -1.390 + -1.343 -1.389 -1.343 -1.300 -1.333 -1.342 -1.348 -1.418 -1.399 -1.365 + -1.415 -1.374 -1.405 -1.414 -1.431 -1.441 -1.489 -1.451 -1.473 -1.489 + -1.483 -1.487 -1.492 -1.503 -1.451 -1.514 -1.490 -1.492 -1.492 -1.509 + -1.570 -1.555 -1.573 -1.636 -1.776 -1.808 -1.970 -1.736 -1.599 -1.658 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1352 sndrD4_g12 6 0.207328E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.615 0.666 0.726 0.831 0.915 0.933 1.004 0.951 + 1.037 0.964 1.057 1.084 1.043 1.033 1.007 0.920 0.906 0.930 + 0.876 0.875 0.825 0.799 0.746 0.737 0.683 0.710 0.690 0.647 + 0.647 0.628 0.617 0.573 0.603 0.544 0.523 0.488 0.438 0.329 + 0.250 0.216 0.108 -0.048 -0.231 -0.449 -0.547 -0.339 -0.158 -0.203 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1353 sndrD4_g12 7 0.131851E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.087 0.109 0.162 0.305 0.349 0.352 0.402 0.370 + 0.494 0.439 0.549 0.554 0.523 0.536 0.511 0.472 0.491 0.523 + 0.460 0.471 0.422 0.409 0.318 0.337 0.279 0.274 0.226 0.167 + 0.154 0.164 0.131 0.052 0.090 0.025 -0.023 -0.052 -0.099 -0.173 + -0.277 -0.348 -0.476 -0.643 -0.809 -0.873 -1.068 -1.034 -0.854 -0.928 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1354 sndrD4_g12 8 0.955995E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.073 0.067 0.089 0.214 0.228 0.215 0.258 0.238 + 0.377 0.328 0.436 0.400 0.381 0.425 0.388 0.381 0.415 0.437 + 0.361 0.348 0.300 0.282 0.173 0.188 0.124 0.089 0.035 -0.038 + -0.055 -0.050 -0.102 -0.181 -0.162 -0.244 -0.341 -0.373 -0.445 -0.536 + -0.647 -0.750 -0.892 -1.134 -1.189 -1.201 -1.424 -1.545 -1.354 -1.408 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1355 sndrD4_g12 9 -0.938692E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.026 -0.036 -0.015 0.055 0.078 0.015 0.017 0.005 + 0.136 0.100 0.146 0.085 0.088 0.161 0.120 0.147 0.155 0.154 + 0.122 0.119 0.071 0.097 0.024 -0.010 -0.040 -0.116 -0.116 -0.141 + -0.107 -0.114 -0.181 -0.180 -0.180 -0.243 -0.312 -0.341 -0.357 -0.434 + -0.487 -0.549 -0.621 -0.695 -0.617 -0.650 -0.812 -0.529 -0.617 -0.742 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1356 sndrD4_g12 10 0.550482E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.657 0.601 0.711 0.882 0.947 0.960 1.014 0.861 + 0.840 0.769 0.732 0.835 0.820 0.735 0.746 0.650 0.688 0.692 + 0.640 0.716 0.668 0.681 0.720 0.674 0.647 0.690 0.729 0.741 + 0.701 0.719 0.657 0.707 0.744 0.729 0.700 0.739 0.668 0.635 + 0.689 0.590 0.488 0.528 0.415 0.154 0.214 0.489 0.431 0.526 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1357 sndrD4_g12 11 0.739372E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.878 0.788 1.054 1.269 1.244 1.243 1.332 1.095 + 1.037 0.991 0.925 1.014 0.999 0.898 0.906 0.811 0.845 0.877 + 0.825 0.908 0.881 0.941 0.959 0.952 0.924 0.951 1.027 1.050 + 1.013 1.079 1.010 1.071 1.087 1.139 1.111 1.204 1.115 1.175 + 1.133 1.221 1.072 1.144 1.035 0.930 1.134 1.100 1.340 1.206 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1358 sndrD4_g12 12 0.800009E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.985 0.809 0.952 1.081 1.206 1.067 1.275 0.842 + 0.931 0.819 0.672 0.632 0.658 0.552 0.521 0.374 0.398 0.473 + 0.406 0.449 0.417 0.459 0.435 0.443 0.380 0.440 0.541 0.575 + 0.604 0.604 0.590 0.624 0.661 0.645 0.626 0.590 0.609 0.584 + 0.472 0.582 0.516 0.654 0.602 0.433 0.641 0.584 0.880 0.962 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1359 sndrD4_g12 13 0.386854E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.048 0.047 0.063 0.148 0.118 0.082 0.101 0.151 + 0.243 0.255 0.302 0.265 0.266 0.333 0.343 0.401 0.457 0.452 + 0.454 0.421 0.394 0.410 0.359 0.374 0.369 0.328 0.304 0.270 + 0.256 0.308 0.239 0.225 0.206 0.199 0.130 0.106 0.079 0.102 + 0.045 0.017 -0.016 -0.153 -0.053 0.106 -0.015 -0.027 0.060 -0.021 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1360 sndrD4_g12 14 0.492655E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.043 -0.017 -0.014 0.021 0.059 0.060 0.081 0.117 + 0.172 0.149 0.190 0.177 0.187 0.221 0.244 0.272 0.298 0.312 + 0.328 0.315 0.307 0.335 0.306 0.322 0.330 0.316 0.325 0.330 + 0.328 0.343 0.335 0.320 0.320 0.316 0.295 0.318 0.275 0.301 + 0.313 0.334 0.350 0.258 0.337 0.374 0.435 0.338 0.383 0.543 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1361 sndrD4_g12 15 0.448752E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -5.604 -6.893 -6.807 -6.772 -6.724 -6.656 -6.624 -6.650 + -6.518 -6.548 -6.469 -6.445 -6.475 -6.408 -6.315 -6.300 -6.313 -6.224 + -6.225 -6.078 -6.012 -5.917 -5.927 -5.854 -5.779 -5.608 -5.536 -5.391 + -5.282 -5.215 -5.062 -4.980 -4.988 -4.764 -4.692 -4.556 -4.408 -4.189 + -4.236 -3.974 -3.957 -3.871 -3.648 -2.867 -3.286 -3.826 -3.513 -3.581 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1362 sndrD4_g12 16 0.231900E-01 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.047 -0.277 -0.376 -0.270 -0.382 -0.505 -0.498 -0.324 + -0.231 -0.238 -0.219 -0.265 -0.310 -0.225 -0.172 -0.046 0.068 0.079 + 0.021 -0.001 0.003 0.082 -0.054 0.007 0.009 -0.092 -0.139 -0.212 + -0.233 -0.122 -0.234 -0.284 -0.348 -0.333 -0.423 -0.489 -0.482 -0.498 + -0.455 -0.510 -0.603 -0.748 -0.453 -0.121 -0.334 -0.599 -0.480 -0.464 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1363 sndrD4_g12 17 0.565014E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 -0.031 -0.067 -0.133 -0.008 -0.139 -0.276 -0.270 -0.085 + 0.056 0.043 0.034 -0.019 -0.050 0.041 0.104 0.260 0.425 0.421 + 0.366 0.334 0.343 0.439 0.261 0.334 0.333 0.205 0.119 0.028 + 0.026 0.201 0.026 -0.075 -0.182 -0.163 -0.297 -0.389 -0.342 -0.391 + -0.340 -0.436 -0.549 -0.841 -0.489 0.122 -0.315 -0.854 -0.699 -0.749 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1364 sndrD4_g12 18 0.586564E-02 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.010 0.261 0.238 0.388 0.292 0.182 0.181 0.317 + 0.473 0.440 0.457 0.430 0.385 0.481 0.535 0.655 0.793 0.796 + 0.756 0.731 0.735 0.822 0.649 0.727 0.732 0.623 0.551 0.491 + 0.436 0.628 0.436 0.374 0.296 0.306 0.196 0.080 0.119 0.060 + 0.101 0.004 -0.160 -0.439 -0.189 0.293 -0.128 -0.560 -0.346 -0.464 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1365 sndrD1_g13 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1366 sndrD1_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1367 sndrD1_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1368 sndrD1_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1369 sndrD1_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1370 sndrD1_g13 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1371 sndrD1_g13 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1372 sndrD1_g13 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1373 sndrD1_g13 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1374 sndrD1_g13 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1375 sndrD1_g13 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1376 sndrD1_g13 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1377 sndrD1_g13 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1378 sndrD1_g13 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1379 sndrD1_g13 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1380 sndrD1_g13 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1381 sndrD1_g13 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1382 sndrD1_g13 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1383 sndrD2_g13 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1384 sndrD2_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1385 sndrD2_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1386 sndrD2_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1387 sndrD2_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1388 sndrD2_g13 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1389 sndrD2_g13 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1390 sndrD2_g13 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1391 sndrD2_g13 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1392 sndrD2_g13 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1393 sndrD2_g13 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1394 sndrD2_g13 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1395 sndrD2_g13 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1396 sndrD2_g13 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1397 sndrD2_g13 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1398 sndrD2_g13 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1399 sndrD2_g13 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1400 sndrD2_g13 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1401 sndrD3_g13 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1402 sndrD3_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1403 sndrD3_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1404 sndrD3_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1405 sndrD3_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1406 sndrD3_g13 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1407 sndrD3_g13 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1408 sndrD3_g13 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1409 sndrD3_g13 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1410 sndrD3_g13 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1411 sndrD3_g13 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1412 sndrD3_g13 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1413 sndrD3_g13 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1414 sndrD3_g13 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1415 sndrD3_g13 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1416 sndrD3_g13 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1417 sndrD3_g13 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1418 sndrD3_g13 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1419 sndrD4_g13 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1420 sndrD4_g13 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1421 sndrD4_g13 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1422 sndrD4_g13 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1423 sndrD4_g13 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1424 sndrD4_g13 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1425 sndrD4_g13 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1426 sndrD4_g13 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1427 sndrD4_g13 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1428 sndrD4_g13 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1429 sndrD4_g13 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1430 sndrD4_g13 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1431 sndrD4_g13 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1432 sndrD4_g13 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1433 sndrD4_g13 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1434 sndrD4_g13 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1435 sndrD4_g13 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1436 sndrD4_g13 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1437 hirs2_n14 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1438 hirs2_n14 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1439 hirs2_n14 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1440 hirs2_n14 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1441 hirs2_n14 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1442 hirs2_n14 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1443 hirs2_n14 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1444 hirs2_n14 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1445 hirs2_n14 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1446 hirs2_n14 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1447 hirs2_n14 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1448 hirs2_n14 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1449 hirs2_n14 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1450 hirs2_n14 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1451 hirs2_n14 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1452 hirs2_n14 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1453 hirs2_n14 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1454 hirs2_n14 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1455 hirs2_n14 19 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1456 msu_n14 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1457 msu_n14 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1458 msu_n14 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1459 msu_n14 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1460 hirs4_n19 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1461 hirs4_n19 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1462 hirs4_n19 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1463 hirs4_n19 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1464 hirs4_n19 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1465 hirs4_n19 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1466 hirs4_n19 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1467 hirs4_n19 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1468 hirs4_n19 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1469 hirs4_n19 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1470 hirs4_n19 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1471 hirs4_n19 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1472 hirs4_n19 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1473 hirs4_n19 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1474 hirs4_n19 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1475 hirs4_n19 16 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1476 hirs4_n19 17 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1477 hirs4_n19 18 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1478 hirs4_n19 19 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1479 amsua_n19 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1480 amsua_n19 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1481 amsua_n19 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1482 amsua_n19 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1483 amsua_n19 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1484 amsua_n19 6 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1485 amsua_n19 7 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1486 amsua_n19 8 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1487 amsua_n19 9 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1488 amsua_n19 10 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1489 amsua_n19 11 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1490 amsua_n19 12 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1491 amsua_n19 13 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1492 amsua_n19 14 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1493 amsua_n19 15 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1494 mhs_n19 1 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1495 mhs_n19 2 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1496 mhs_n19 3 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1497 mhs_n19 4 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + + 1498 mhs_n19 5 0.000000E+00 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 + diff --git a/fix/gsi/global_satinfo.txt b/fix/gsi/global_satinfo.txt new file mode 100644 index 000000000..0bf2d871f --- /dev/null +++ b/fix/gsi/global_satinfo.txt @@ -0,0 +1,3866 @@ +!sensor/instr/sat chan iuse error error_cld ermax var_b var_pg icld_det icloud iaerosol + amsua_n15 1 1 3.000 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n15 2 1 2.200 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n15 3 1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n15 4 1 0.600 3.000 2.500 10.000 0.000 -2 -1 -1 + amsua_n15 5 1 0.300 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 6 -1 0.230 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 7 1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 8 1 0.275 0.275 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 9 1 0.340 0.340 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 10 1 0.400 0.400 2.000 10.000 0.000 -2 -1 -1 + amsua_n15 11 -1 0.600 0.600 2.500 10.000 0.000 -2 -1 -1 + amsua_n15 12 -1 1.000 1.000 3.500 10.000 0.000 -2 -1 -1 + amsua_n15 13 -1 1.500 1.500 4.500 10.000 0.000 -2 -1 -1 + amsua_n15 14 -1 2.000 2.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n15 15 1 3.500 18.000 4.500 10.000 0.000 -2 -1 -1 + hirs3_n17 1 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs3_n17 2 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs3_n17 3 -1 0.530 0.000 2.500 10.000 0.000 1 -1 -1 + hirs3_n17 4 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 5 -1 0.360 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 6 -1 0.460 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 7 -1 0.570 0.000 2.500 10.000 0.000 1 -1 -1 + hirs3_n17 8 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + hirs3_n17 9 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs3_n17 10 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs3_n17 11 -1 1.200 0.000 3.500 10.000 0.000 1 -1 -1 + hirs3_n17 12 -1 1.600 0.000 4.500 10.000 0.000 1 -1 -1 + hirs3_n17 13 -1 0.364 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 14 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 15 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs3_n17 16 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs3_n17 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs3_n17 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs3_n17 19 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + amsub_n17 1 -1 4.500 0.000 6.000 10.000 0.000 -2 -1 -1 + amsub_n17 2 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + amsub_n17 3 -1 3.500 0.000 6.000 10.000 0.000 -2 -1 -1 + amsub_n17 4 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + amsub_n17 5 -1 2.800 0.000 6.000 10.000 0.000 -2 -1 -1 + amsua_n18 1 1 2.500 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n18 2 1 2.200 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n18 3 1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n18 4 1 0.550 3.000 2.500 10.000 0.000 -2 -1 -1 + amsua_n18 5 -1 0.300 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 6 1 0.230 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 7 1 0.230 0.230 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 8 -1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 9 -1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 10 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_n18 11 -1 0.400 0.400 2.500 10.000 0.000 -2 -1 -1 + amsua_n18 12 -1 0.550 0.550 3.500 10.000 0.000 -2 -1 -1 + amsua_n18 13 -1 0.800 0.800 4.500 10.000 0.000 -2 -1 -1 + amsua_n18 14 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n18 15 1 3.500 15.000 4.500 10.000 0.000 -2 -1 -1 + mhs_n18 1 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n18 2 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n18 3 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n18 4 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n18 5 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + hirs4_metop-a 1 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-a 2 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 3 -1 0.530 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 4 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 5 -1 0.360 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 6 -1 0.460 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 7 -1 0.570 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 8 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 9 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_metop-a 10 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 11 -1 1.200 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 12 -1 1.600 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_metop-a 13 -1 0.364 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 14 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 15 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-a 16 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_metop-a 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-a 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-a 19 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + amsua_metop-a 1 1 2.500 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 2 1 2.200 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 3 1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 4 1 0.550 3.000 2.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 5 1 0.300 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 6 1 0.230 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 7 -1 0.230 0.230 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 8 -1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 9 1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 10 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-a 11 -1 0.400 0.400 2.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 12 -1 0.550 0.550 3.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 13 -1 0.800 0.800 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 14 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-a 15 1 3.500 15.000 4.500 10.000 0.000 -2 -1 -1 + mhs_metop-a 1 -1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-a 2 -1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-a 3 -1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-a 4 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-a 5 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + iasi_metop-a 16 -1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 29 -1 0.810 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 32 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 35 -1 0.790 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 38 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 41 -1 0.740 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 44 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 47 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 49 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 50 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 51 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 53 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 55 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 56 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 57 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 59 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 61 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 62 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 63 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 66 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 68 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 70 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 72 -1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 74 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 76 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 78 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 79 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 81 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 82 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 83 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 84 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 85 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 86 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 87 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 89 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 92 -1 4.380 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 93 -1 3.050 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 95 -1 2.310 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 97 -1 1.560 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 99 -1 1.330 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 101 -1 1.580 0.000 3.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 103 -1 0.930 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 104 -1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 106 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 109 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 110 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 111 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 113 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 116 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 119 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 122 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 125 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 128 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 131 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 133 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 135 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 138 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 141 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 144 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 146 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 148 -1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 150 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 151 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 157 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 159 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 160 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 161 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 163 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 170 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 176 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 179 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 180 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 185 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 191 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 193 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 197 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 199 1 1.050 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-a 200 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 202 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 203 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 205 1 1.300 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 207 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 210 -1 0.930 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 212 1 1.490 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 213 -1 1.120 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 214 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 217 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 218 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 219 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 222 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 225 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 228 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 231 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 237 -1 0.780 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 259 -1 0.870 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 265 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 267 1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-a 269 -1 0.840 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 279 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-a 285 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 299 -1 0.690 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 300 -1 0.610 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 303 -1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 309 -1 0.790 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 313 -1 0.620 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 320 -1 0.660 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 326 -1 0.650 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 332 -1 0.620 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 363 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 372 -1 0.650 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 405 -1 1.780 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 408 -1 1.140 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 411 -1 1.790 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 418 -1 1.940 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 423 -1 2.010 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 433 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-a 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-a 442 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 450 -1 1.520 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 459 -1 1.960 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 472 -1 2.310 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 477 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 483 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 509 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 578 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 584 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 594 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 625 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 705 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 739 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 797 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1090 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1098 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1173 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1222 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1283 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1338 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1409 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1414 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1420 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1424 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1427 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1430 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1434 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1440 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1442 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1445 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1450 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1454 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1460 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1463 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1469 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1474 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1479 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1483 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1487 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1494 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1496 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1502 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1505 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1509 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1510 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1513 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1518 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1521 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1526 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1529 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1532 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1536 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1537 -1 2.010 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1541 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1545 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1548 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1553 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1560 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1568 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1574 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1579 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1583 -1 1.760 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1585 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1587 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1606 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1626 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1639 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1643 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1652 -1 2.070 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1658 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1659 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1666 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1671 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1675 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1681 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1694 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1697 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1710 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1786 1 1.980 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1791 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1805 1 2.180 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1839 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1884 1 2.210 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1913 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1946 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1947 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 1991 1 2.250 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2019 1 1.800 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2094 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2119 1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2213 1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2239 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2271 1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2289 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2321 1 1.720 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2333 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2346 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2349 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2352 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2359 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2367 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2374 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2398 1 1.740 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2426 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2562 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2701 1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 2741 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2745 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2760 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2819 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2889 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2907 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2910 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2919 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2921 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2939 -1 1.710 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2944 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2945 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2948 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2951 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2958 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2971 -1 1.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2977 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2985 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2988 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2990 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2991 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 2993 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3002 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3008 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3014 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3027 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3029 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3030 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3036 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3047 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3049 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3052 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3053 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3055 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3058 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3064 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3069 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3087 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3093 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3098 -1 1.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3105 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3107 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3110 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3116 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3127 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3129 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3136 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3146 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3151 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3160 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3165 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3168 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3175 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3178 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3189 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3207 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3228 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3244 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3248 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3252 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3256 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3263 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3281 -1 1.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3295 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3303 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3309 -1 1.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3312 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3322 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3326 -1 1.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3354 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3366 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3375 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3378 -1 1.680 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3411 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3416 -1 1.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3432 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3438 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3440 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3442 -1 1.410 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 3444 -1 1.160 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 3446 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3448 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3450 -1 1.200 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3452 -1 1.650 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3454 -1 1.660 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3458 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3467 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3476 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3484 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3491 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3497 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3499 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3504 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3506 -1 0.990 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3509 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3518 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3527 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3555 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3575 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 3577 -1 1.150 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3580 -1 1.580 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3582 -1 1.180 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-a 3586 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3589 -1 1.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3599 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3610 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3626 -1 1.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3638 -1 1.270 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3646 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3653 -1 1.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3658 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3661 -1 1.290 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3673 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3689 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3700 -1 1.230 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3710 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3726 -1 1.210 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3763 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3814 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3841 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 3888 -1 1.330 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4032 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4059 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4068 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4082 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4095 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4160 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4234 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4257 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4411 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4498 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4520 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4552 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4567 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4608 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4646 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4698 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4808 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4849 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4920 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4939 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4947 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4967 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4991 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 4996 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5015 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5028 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5056 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5128 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5130 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5144 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5170 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5178 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5183 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5188 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5191 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5368 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5371 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5379 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5381 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5383 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5397 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5399 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5401 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5403 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5405 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5446 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5455 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5472 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5480 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5483 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5485 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5492 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5497 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5502 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5507 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5509 -1 2.140 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5517 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5528 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5558 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5697 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5714 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5749 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5766 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5785 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5798 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5799 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5801 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5817 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5833 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5834 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5836 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5849 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5851 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5852 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5865 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5869 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5881 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5884 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5897 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5900 -1 2.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5916 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5932 -1 2.350 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5948 -1 2.300 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5963 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5968 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5978 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5988 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5992 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5994 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 5997 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6003 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6008 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6023 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6026 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6039 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6053 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6056 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6067 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6071 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6082 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6085 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6098 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6112 -1 2.340 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6126 -1 9.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6135 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6140 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6149 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6154 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6158 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6161 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6168 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6174 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6182 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6187 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6205 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6209 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6213 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6317 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6339 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6342 -1 1.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6366 -1 1.640 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6381 -1 1.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6391 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6489 -1 2.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6962 -1 2.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6966 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6970 -1 2.370 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6975 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6977 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6982 -1 1.720 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6985 -1 1.740 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6987 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6989 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6991 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6993 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6995 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6997 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 6999 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7000 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7004 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7008 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7013 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7016 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7021 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7024 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7027 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7029 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7032 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7038 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7043 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7046 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7049 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7069 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7072 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7076 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7081 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7084 -1 2.440 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7089 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7099 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7209 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7222 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7231 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7235 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7247 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7267 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7269 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7284 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7389 -1 2.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7419 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7423 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7424 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7426 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7428 -1 2.490 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7431 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7436 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7444 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7475 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7549 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7584 -1 2.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7665 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7666 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7831 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7836 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7853 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7865 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7885 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7888 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7912 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7950 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7972 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7980 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 7995 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 8007 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 8015 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 8055 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-a 8078 -1 9.000 0.000 6.000 10.000 0.000 -1 -1 -1 + airs_aqua 1 -1 1.200 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 6 -1 1.200 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 7 -1 1.500 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 10 -1 1.400 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 11 -1 1.400 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 15 -1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 16 -1 1.400 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 17 -1 1.400 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 20 -1 1.250 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 21 -1 1.250 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 22 -1 1.200 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 24 -1 1.200 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 27 -1 1.200 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 28 -1 1.200 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 30 -1 1.200 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 36 -1 1.200 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 39 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 40 -1 1.150 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 42 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 51 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 52 -1 1.150 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 54 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 55 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 56 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 59 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 62 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 63 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 68 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 69 -1 1.125 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 71 -1 1.050 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 72 -1 1.050 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 73 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 74 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 75 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 76 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 77 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 78 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 79 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 80 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 82 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 83 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 84 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 86 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 92 -1 0.950 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 93 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 98 -1 0.950 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 99 -1 0.950 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 101 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 104 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 105 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 108 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 110 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 111 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 113 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 116 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 117 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 123 -1 0.950 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 124 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 128 -1 0.950 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 129 -1 1.000 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 138 -1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 139 -1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 144 -1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 145 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 150 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 151 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 156 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 157 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 159 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 162 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 165 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 168 -1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 169 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 170 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 172 -1 1.000 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 173 -1 1.150 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 174 -1 1.000 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 175 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 177 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 179 -1 1.200 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 180 -1 1.000 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 182 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 185 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 186 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 190 -1 1.000 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 192 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 198 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 201 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 204 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 207 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 210 -1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 215 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 216 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 221 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 226 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 227 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 232 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 252 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 253 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 256 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 257 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 261 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 262 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 267 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 272 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 295 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 299 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 300 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 305 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 310 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 321 -1 1.150 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 325 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 333 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 338 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 355 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 362 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 375 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 453 -1 0.950 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 475 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 484 -1 0.950 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 497 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 528 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 587 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 672 1 0.925 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 787 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 791 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 843 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 870 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 914 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 950 1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 1003 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1012 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1019 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1024 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1030 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1038 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1048 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1069 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1079 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1082 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1083 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1088 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1090 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1092 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1095 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1104 -1 0.950 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1111 -1 0.950 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1115 -1 0.950 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1116 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1119 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1120 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1123 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1130 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1138 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1142 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1178 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1199 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1206 -1 0.900 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1221 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1237 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1252 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1260 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1263 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1266 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1285 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 1301 1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 1304 1 0.700 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 1329 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 1371 1 1.100 0.000 3.500 10.000 0.000 1 -1 -1 + airs_aqua 1382 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 1415 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1424 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1449 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1455 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1466 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1477 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1500 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1519 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1538 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1545 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1565 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1574 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1583 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1593 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1614 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1627 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1636 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1644 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1652 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1669 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1674 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1681 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1694 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1708 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1717 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1723 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1740 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1748 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1751 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1756 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1763 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1766 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1771 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1777 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1780 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1783 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1794 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1800 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1803 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1806 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1812 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1826 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 + airs_aqua 1843 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1852 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + airs_aqua 1865 1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1866 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1868 1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1869 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1872 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1873 1 0.525 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1876 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1881 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1882 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1883 -1 0.550 0.000 2.500 10.000 0.000 -1 -1 -1 + airs_aqua 1911 1 0.555 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1917 1 0.575 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1918 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1924 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1928 -1 0.700 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1937 -1 1.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 1941 -1 1.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2099 -1 3.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2100 -1 3.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2101 -1 2.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2103 -1 2.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2104 -1 2.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2106 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2107 -1 1.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2108 -1 1.500 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2109 -1 1.800 0.000 3.500 10.000 0.000 -1 -1 -1 + airs_aqua 2110 -1 0.600 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2111 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2112 -1 0.650 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2113 -1 0.675 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2114 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2115 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2116 -1 0.775 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2117 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2118 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2119 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2120 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2121 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2122 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2123 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2128 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2134 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2141 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2145 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2149 -1 0.700 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2153 -1 0.725 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2164 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2189 -1 0.775 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2197 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2209 -1 0.825 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2226 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2234 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2280 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2318 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2321 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2325 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2328 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2333 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2339 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2348 -1 0.850 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2353 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2355 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2357 -1 2.500 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2363 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2370 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2371 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + airs_aqua 2377 -1 0.750 0.000 3.000 10.000 0.000 -1 -1 -1 + amsua_aqua 1 -1 2.500 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_aqua 2 -1 2.000 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_aqua 3 -1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_aqua 4 -1 0.500 3.000 3.000 10.000 0.000 -2 -1 -1 + amsua_aqua 5 -1 0.400 0.550 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 6 -1 0.400 0.400 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 7 -1 0.500 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 8 1 0.300 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 9 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 10 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_aqua 11 -1 0.450 0.450 3.000 10.000 0.000 -2 -1 -1 + amsua_aqua 12 -1 1.000 1.000 3.500 10.000 0.000 -2 -1 -1 + amsua_aqua 13 -1 1.500 1.500 4.500 10.000 0.000 -2 -1 -1 + amsua_aqua 14 -1 2.500 2.500 4.500 10.000 0.000 -2 -1 -1 + amsua_aqua 15 -1 2.500 18.000 4.500 10.000 0.000 -2 -1 -1 + avhrr3_n18 3 -1 0.600 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_n18 4 -1 0.680 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_n18 5 -1 0.720 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_metop-a 3 -1 0.600 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_metop-a 4 -1 0.680 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_metop-a 5 -1 0.720 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_n19 3 -1 0.600 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_n19 4 -1 0.680 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_n19 5 -1 0.720 0.000 6.000 10.000 0.000 -1 -1 -1 + ssmi_f15 1 -1 1.600 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 2 -1 2.260 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 3 -1 2.010 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 4 -1 1.480 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 5 -1 2.280 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 6 -1 1.430 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmi_f15 7 -1 2.330 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 1 -1 1.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 2 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 3 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 4 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 5 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 6 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 7 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 8 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 9 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 10 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 11 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 12 -1 2.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 13 -1 1.270 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 14 -1 1.440 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 15 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 16 -1 1.340 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 17 -1 1.740 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 18 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 19 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 20 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 21 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 22 -1 6.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 23 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f16 24 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 1 -1 0.626 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 2 -1 0.869 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 3 -1 0.728 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 4 -1 0.950 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 5 -1 0.922 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 6 -1 1.196 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 7 -1 1.169 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 8 -1 1.840 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 9 -1 0.843 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 10 -1 1.600 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 11 -1 1.955 0.000 6.000 10.000 0.000 -2 -1 -1 + amsre_aqua 12 -1 4.337 0.000 6.000 10.000 0.000 -2 -1 -1 + imgr_g11 2 -1 2.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g11 3 -1 1.400 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g11 4 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g11 5 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g12 2 -1 2.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g12 3 -1 1.400 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g12 4 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g12 5 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g13 2 -1 2.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g13 3 -1 1.400 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g13 4 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g13 5 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + sndrD1_g11 1 1 0.850 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 2 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 3 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 4 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 5 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 6 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 7 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g11 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD1_g11 9 1 0.650 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g11 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g11 11 1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g11 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD1_g11 13 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 14 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g11 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g11 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD1_g11 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g11 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g11 1 1 0.850 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 2 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 3 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 4 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 5 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 6 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 7 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g11 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD2_g11 9 1 0.650 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g11 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g11 11 1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g11 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD2_g11 13 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 14 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g11 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g11 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD2_g11 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g11 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g11 1 1 0.850 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 2 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 3 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 4 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 5 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 6 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 7 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g11 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD3_g11 9 1 0.650 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g11 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g11 11 1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g11 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD3_g11 13 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 14 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g11 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g11 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD3_g11 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g11 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g11 1 1 0.850 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 2 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 3 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 4 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 5 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 6 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 7 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g11 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD4_g11 9 1 0.650 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g11 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g11 11 1 1.400 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g11 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD4_g11 13 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 14 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g11 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g11 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD4_g11 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g11 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g12 1 1 0.950 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 2 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 3 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 5 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 6 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 7 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g12 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD1_g12 9 1 0.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g12 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g12 11 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g12 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD1_g12 13 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 14 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g12 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g12 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD1_g12 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g12 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g12 1 1 0.950 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 2 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 3 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 5 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 6 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 7 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g12 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD2_g12 9 1 0.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g12 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g12 11 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g12 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD2_g12 13 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 14 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g12 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g12 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD2_g12 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g12 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g12 1 1 0.950 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 2 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 3 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 5 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 6 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 7 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g12 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD3_g12 9 1 0.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g12 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g12 11 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g12 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD3_g12 13 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 14 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g12 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g12 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD3_g12 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g12 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g12 1 1 0.950 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 2 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 3 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 5 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 6 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 7 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g12 8 1 0.500 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD4_g12 9 1 0.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g12 10 1 0.950 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g12 11 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g12 12 1 1.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD4_g12 13 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 14 1 0.250 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g12 15 1 1.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g12 16 -1 0.800 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD4_g12 17 -1 1.300 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g12 18 -1 1.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g13 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 6 -1 0.990 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g13 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD1_g13 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g13 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g13 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g13 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD1_g13 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g13 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g13 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD1_g13 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g13 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g13 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g13 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD2_g13 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g13 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g13 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g13 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD2_g13 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g13 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g13 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD2_g13 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g13 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g13 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g13 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD3_g13 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g13 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g13 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g13 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD3_g13 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g13 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g13 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD3_g13 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g13 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g13 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g13 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD4_g13 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g13 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g13 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g13 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD4_g13 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g13 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g13 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD4_g13 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g13 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_n19 1 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_n19 2 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_n19 3 -1 0.530 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_n19 4 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 5 -1 0.360 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 6 -1 0.460 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 7 -1 0.570 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_n19 8 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + hirs4_n19 9 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_n19 10 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_n19 11 -1 1.200 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_n19 12 -1 1.600 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_n19 13 -1 0.364 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 14 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 15 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_n19 16 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_n19 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_n19 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_n19 19 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + amsua_n19 1 1 2.500 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n19 2 1 2.200 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n19 3 1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n19 4 1 0.550 3.000 2.500 10.000 0.000 -2 -1 -1 + amsua_n19 5 1 0.300 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 6 1 0.230 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 7 -1 0.230 0.230 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 8 -1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 9 1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 10 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_n19 11 -1 0.400 0.400 2.500 10.000 0.000 -2 -1 -1 + amsua_n19 12 -1 0.550 0.550 3.500 10.000 0.000 -2 -1 -1 + amsua_n19 13 -1 0.800 0.800 4.500 10.000 0.000 -2 -1 -1 + amsua_n19 14 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + amsua_n19 15 1 3.500 18.000 4.500 10.000 0.000 -2 -1 -1 + mhs_n19 1 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n19 2 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n19 3 -1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n19 4 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_n19 5 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 1 1 1.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 2 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 3 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 4 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 5 1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 6 1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 7 1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 8 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 9 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 10 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 11 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 12 -1 2.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 13 -1 1.270 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 14 -1 1.440 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 15 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 16 -1 1.340 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 17 -1 1.740 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 18 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 19 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 20 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 21 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 22 -1 6.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 23 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f17 24 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 1 -1 1.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 2 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 3 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 4 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 5 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 6 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 7 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 8 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 9 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 10 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 11 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 12 -1 2.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 13 -1 1.270 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 14 -1 1.440 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 15 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 16 -1 1.340 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 17 -1 1.740 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 18 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 19 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 20 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 21 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 22 -1 6.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 23 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f18 24 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 1 -1 1.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 2 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 3 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 4 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 5 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 6 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 7 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 8 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 9 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 10 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 11 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 12 -1 2.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 13 -1 1.270 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 14 -1 1.440 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 15 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 16 -1 1.340 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 17 -1 1.740 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 18 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 19 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 20 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 21 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 22 -1 6.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 23 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f19 24 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 1 -1 1.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 2 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 3 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 4 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 5 -1 0.500 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 6 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 7 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 8 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 9 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 10 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 11 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 12 -1 2.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 13 -1 1.270 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 14 -1 1.440 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 15 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 16 -1 1.340 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 17 -1 1.740 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 18 -1 3.750 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 19 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 20 -1 3.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 21 -1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 22 -1 6.400 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 23 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + ssmis_f20 24 -1 1.000 0.000 6.000 10.000 0.000 -2 -1 -1 + imgr_g14 2 -1 2.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g14 3 -1 1.400 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g14 4 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g14 5 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g15 2 -1 2.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g15 3 -1 1.400 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g15 4 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + imgr_g15 5 -1 3.000 0.000 4.500 10.000 0.000 -2 -1 -1 + sndrD1_g14 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 6 -1 0.990 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g14 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD1_g14 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g14 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g14 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g14 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD1_g14 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g14 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g14 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD1_g14 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g14 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g14 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g14 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD2_g14 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g14 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g14 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g14 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD2_g14 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g14 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g14 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD2_g14 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g14 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g14 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g14 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD3_g14 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g14 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g14 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g14 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD3_g14 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g14 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g14 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD3_g14 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g14 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g14 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 3 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 4 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 5 -1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 6 -1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 7 -1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g14 8 -1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD4_g14 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g14 10 -1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g14 11 -1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g14 12 -1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD4_g14 13 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 14 -1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g14 15 -1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g14 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD4_g14 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g14 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g15 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 3 1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 5 1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 6 1 0.990 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 7 1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g15 8 1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD1_g15 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g15 10 1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD1_g15 11 1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g15 12 1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD1_g15 13 1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 14 1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD1_g15 15 1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD1_g15 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD1_g15 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD1_g15 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g15 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 3 1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 5 1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 6 1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 7 1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g15 8 1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD2_g15 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g15 10 1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD2_g15 11 1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g15 12 1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD2_g15 13 1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 14 1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD2_g15 15 1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD2_g15 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD2_g15 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD2_g15 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g15 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 3 1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 5 1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 6 1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 7 1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g15 8 1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD3_g15 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g15 10 1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD3_g15 11 1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g15 12 1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD3_g15 13 1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 14 1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD3_g15 15 1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD3_g15 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD3_g15 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD3_g15 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g15 1 -1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 2 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 3 1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 4 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 5 1 0.910 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 6 1 0.980 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 7 1 1.080 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g15 8 1 2.000 0.000 3.000 10.000 0.000 1 -1 -1 + sndrD4_g15 9 -1 2.600 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g15 10 1 1.800 0.000 2.500 10.000 0.000 1 -1 -1 + sndrD4_g15 11 1 2.300 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g15 12 1 2.800 0.000 4.500 10.000 0.000 1 -1 -1 + sndrD4_g15 13 1 0.900 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 14 1 0.800 0.000 2.000 10.000 0.000 1 -1 -1 + sndrD4_g15 15 1 2.000 0.000 3.500 10.000 0.000 1 -1 -1 + sndrD4_g15 16 -1 1.080 0.000 2.500 10.000 0.000 -1 -1 -1 + sndrD4_g15 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + sndrD4_g15 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + seviri_m08 4 -1 1.800 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 5 -1 2.500 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 6 -1 2.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 7 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 8 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 9 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 10 -1 1.450 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m08 11 -1 1.250 0.000 3.000 10.000 0.000 -2 -1 -1 + seviri_m09 4 -1 1.800 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 5 -1 2.500 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 6 -1 2.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 7 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 8 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 9 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 10 -1 1.450 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m09 11 -1 1.250 0.000 3.000 10.000 0.000 -2 -1 -1 + seviri_m10 4 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + seviri_m10 5 -1 2.500 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 6 -1 2.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 7 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 8 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 9 -1 0.750 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 10 -1 0.800 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m10 11 -1 1.250 0.000 3.000 10.000 0.000 -2 -1 -1 + seviri_m11 4 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + seviri_m11 5 1 2.500 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 6 1 2.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 7 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 8 -1 1.250 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 9 -1 0.750 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 10 -1 0.800 0.000 2.000 10.000 0.000 -2 -1 -1 + seviri_m11 11 -1 1.250 0.000 3.000 10.000 0.000 -2 -1 -1 + atms_npp 1 1 4.500 20.000 4.500 10.000 0.000 -2 -1 -1 + atms_npp 2 1 4.500 25.000 4.500 10.000 0.000 -2 -1 -1 + atms_npp 3 1 4.500 12.000 3.000 10.000 0.000 -2 -1 -1 + atms_npp 4 1 2.500 7.000 3.000 10.000 0.000 -2 -1 -1 + atms_npp 5 1 0.550 3.500 1.000 10.000 0.000 -2 -1 -1 + atms_npp 6 1 0.300 3.000 1.000 10.000 0.000 -2 -1 -1 + atms_npp 7 1 0.300 0.800 1.000 10.000 0.000 -2 -1 -1 + atms_npp 8 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_npp 9 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_npp 10 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_npp 11 1 0.450 0.450 1.000 10.000 0.000 -2 -1 -1 + atms_npp 12 -1 0.450 0.450 1.000 10.000 0.000 -2 -1 -1 + atms_npp 13 -1 0.550 0.550 1.000 10.000 0.000 -2 -1 -1 + atms_npp 14 -1 0.800 0.800 2.000 10.000 0.000 -2 -1 -1 + atms_npp 15 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + atms_npp 16 1 4.000 19.000 4.500 10.000 0.000 -2 -1 -1 + atms_npp 17 1 4.000 30.000 2.000 10.000 0.000 -2 -1 -1 + atms_npp 18 1 3.500 25.000 2.000 10.000 0.000 -2 -1 -1 + atms_npp 19 1 3.000 16.500 2.000 10.000 0.000 -2 -1 -1 + atms_npp 20 1 3.000 12.000 2.000 10.000 0.000 -2 -1 -1 + atms_npp 21 1 3.000 9.000 2.000 10.000 0.000 -2 -1 -1 + atms_npp 22 1 3.000 6.500 2.000 10.000 0.000 -2 -1 -1 + atms_n20 1 1 4.500 20.000 4.500 10.000 0.000 -2 -1 -1 + atms_n20 2 1 4.500 25.000 4.500 10.000 0.000 -2 -1 -1 + atms_n20 3 1 4.500 12.000 3.000 10.000 0.000 -2 -1 -1 + atms_n20 4 1 2.500 7.000 3.000 10.000 0.000 -2 -1 -1 + atms_n20 5 1 0.550 3.500 1.000 10.000 0.000 -2 -1 -1 + atms_n20 6 1 0.300 3.000 1.000 10.000 0.000 -2 -1 -1 + atms_n20 7 1 0.300 0.800 1.000 10.000 0.000 -2 -1 -1 + atms_n20 8 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_n20 9 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_n20 10 1 0.400 0.400 1.000 10.000 0.000 -2 -1 -1 + atms_n20 11 1 0.450 0.450 1.000 10.000 0.000 -2 -1 -1 + atms_n20 12 -1 0.450 0.450 1.000 10.000 0.000 -2 -1 -1 + atms_n20 13 -1 0.550 0.550 1.000 10.000 0.000 -2 -1 -1 + atms_n20 14 -1 0.800 0.800 2.000 10.000 0.000 -2 -1 -1 + atms_n20 15 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + atms_n20 16 1 4.000 19.000 4.500 10.000 0.000 -2 -1 -1 + atms_n20 17 1 4.000 30.000 2.000 10.000 0.000 -2 -1 -1 + atms_n20 18 1 3.500 25.000 2.000 10.000 0.000 -2 -1 -1 + atms_n20 19 1 3.000 16.500 2.000 10.000 0.000 -2 -1 -1 + atms_n20 20 1 3.000 12.000 2.000 10.000 0.000 -2 -1 -1 + atms_n20 21 1 3.000 9.000 2.000 10.000 0.000 -2 -1 -1 + atms_n20 22 1 3.000 6.500 2.000 10.000 0.000 -2 -1 -1 + cris-fsr_npp 19 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 24 -1 0.700 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 26 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 27 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 28 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 31 -1 1.359 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 32 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 33 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 37 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 39 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 42 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 44 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 47 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 49 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 50 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 51 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 52 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 53 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 54 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 55 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 56 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 57 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 58 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 59 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 60 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 61 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 62 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 63 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 64 -1 0.756 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 65 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 66 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 67 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 68 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 69 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 70 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 71 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 72 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 73 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 74 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 75 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 76 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 77 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 78 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 79 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 80 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 81 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 82 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 83 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 84 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 85 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 86 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 87 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 88 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 89 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 90 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 91 -1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 92 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 93 -1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 94 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 95 -1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 96 -1 0.635 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 97 -1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 98 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 99 -1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 100 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 101 -1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 102 -1 0.735 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 103 -1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 104 -1 0.878 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 105 -1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 106 -1 0.696 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 107 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 108 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 109 -1 0.400 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 110 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 111 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 112 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 113 -1 0.400 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 114 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 115 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 116 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 117 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 118 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 119 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 120 -1 0.701 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 121 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 122 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 123 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 124 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 125 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 126 -1 0.663 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 127 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 128 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 129 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 130 -1 1.083 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 131 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 132 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 133 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 134 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 135 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 136 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 137 -1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 138 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 139 -1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 140 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 141 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 142 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 143 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 144 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 145 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 146 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 147 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 148 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 149 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 150 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 151 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 152 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 153 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 154 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 155 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 156 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 157 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 158 -1 0.773 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 159 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 160 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 161 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 162 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 163 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 164 -1 0.813 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 165 -1 0.907 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 166 -1 0.802 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 167 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 168 -1 1.493 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 169 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 170 -1 0.856 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 171 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 172 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 173 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 174 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 175 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 176 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 177 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 178 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 179 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 180 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 181 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 182 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 183 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 184 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 185 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 186 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 187 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 188 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 189 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 190 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 191 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 192 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 193 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 194 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 195 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 196 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 197 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 198 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 199 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 200 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 208 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 211 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 216 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 224 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 234 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 236 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 238 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 239 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 242 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 246 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 248 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 255 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 264 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 266 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 268 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 275 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 279 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 283 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 285 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 291 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 295 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 301 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 305 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 311 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 332 -1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 342 -1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 389 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 400 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 402 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 404 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 406 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 410 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 427 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 439 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 440 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 441 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 445 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 449 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 455 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 458 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 461 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 464 -1 1.000 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 467 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 470 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 473 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 475 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 482 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 486 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 487 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 490 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 493 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 496 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 499 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 501 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 503 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 505 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 511 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 513 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 514 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 518 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 519 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 520 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 522 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 529 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 534 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 563 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 568 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 575 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 592 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 594 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 596 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 598 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 600 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 602 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 604 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 611 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 614 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 616 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 618 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 620 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 622 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 626 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 631 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 638 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 646 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 648 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 652 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 659 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 673 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 675 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 678 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 684 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 688 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 694 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 700 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 707 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 710 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 713 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_npp 714 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 718 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 720 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 722 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 725 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 728 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 735 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 742 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 748 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 753 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 762 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 780 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 784 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 798 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 849 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 860 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 862 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 866 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 874 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 882 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 890 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 898 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 906 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 907 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 908 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 914 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 937 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 972 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 973 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 978 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 980 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 981 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 988 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 995 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 998 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1000 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1003 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1008 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1009 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1010 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1014 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1017 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1018 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1020 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1022 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1024 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1026 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1029 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1030 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1032 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1034 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1037 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1038 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1041 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1042 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1044 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1046 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1049 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1050 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1053 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1054 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1058 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1060 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1062 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1064 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1066 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1069 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1076 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1077 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1080 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1086 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1091 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1095 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1101 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1109 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1112 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1121 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1128 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1133 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1163 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1172 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1187 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1189 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1205 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1211 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1219 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1231 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1245 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1271 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1289 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1300 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1313 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1316 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1325 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1329 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1346 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1347 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1473 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1474 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1491 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1499 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1553 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1570 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1596 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1602 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1619 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1624 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1635 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1939 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1940 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1941 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1942 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1943 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1944 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1945 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1946 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1947 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1948 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1949 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1950 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1951 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1952 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1953 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1954 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1955 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1956 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1957 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1958 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1959 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1960 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1961 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1962 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1963 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1964 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1965 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1966 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1967 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1968 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1969 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1970 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1971 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1972 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1973 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1974 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1975 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1976 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1977 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1978 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1979 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1980 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1981 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1982 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1983 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1984 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1985 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1986 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 1987 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2119 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2140 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2143 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2147 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2153 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2158 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2161 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2168 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2171 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2175 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_npp 2182 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 19 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 24 -1 0.700 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 26 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 27 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 28 -1 0.700 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 31 -1 1.359 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 32 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 33 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 37 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 39 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 42 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 44 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 47 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 49 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 50 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 51 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 52 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 53 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 54 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 55 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 56 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 57 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 58 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 59 -1 0.600 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 60 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 61 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 62 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 63 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 64 -1 0.756 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 65 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 66 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 67 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 68 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 69 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 70 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 71 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 72 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 73 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 74 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 75 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 76 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 77 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 78 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 79 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 80 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 81 -1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 82 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 83 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 84 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 85 1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 86 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 87 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 88 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 89 1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 90 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 91 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 92 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 93 1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 94 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 95 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 96 -1 0.635 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 97 1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 98 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 99 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 100 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 101 -1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 102 -1 0.735 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 103 1 0.450 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 104 -1 0.878 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 105 1 0.450 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 106 -1 0.696 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 107 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 108 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 109 1 0.400 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 110 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 111 1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 112 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 113 -1 0.400 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 114 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 115 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 116 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 117 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 118 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 119 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 120 -1 0.701 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 121 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 122 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 123 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 124 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 125 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 126 -1 0.663 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 127 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 128 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 129 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 130 -1 1.083 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 131 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 132 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 133 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 134 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 135 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 136 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 137 1 0.350 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 138 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 139 1 0.350 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 140 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 141 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 142 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 143 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 144 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 145 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 146 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 147 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 148 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 149 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 150 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 151 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 152 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 153 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 154 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 155 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 156 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 157 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 158 -1 0.773 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 159 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 160 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 161 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 162 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 163 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 164 -1 0.813 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 165 -1 0.907 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 166 -1 0.802 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 167 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 168 -1 1.493 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 169 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 170 -1 0.856 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 171 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 172 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 173 -1 0.600 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 174 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 175 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 176 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 177 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 178 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 179 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 180 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 181 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 182 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 183 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 184 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 185 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 186 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 187 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 188 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 189 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 190 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 191 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 192 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 193 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 194 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 195 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 196 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 197 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 198 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 199 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 200 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 208 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 211 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 216 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 224 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 234 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 236 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 238 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 239 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 242 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 246 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 248 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 255 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 264 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 266 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 268 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 275 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 279 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 283 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 285 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 291 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 295 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 301 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 305 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 311 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 332 1 0.300 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 342 1 0.300 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 389 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 400 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 402 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 404 -1 2.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 406 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 410 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 427 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 439 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 440 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 441 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 445 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 449 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 455 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 458 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 461 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 464 1 1.000 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 467 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 470 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 473 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 475 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 482 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 486 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 487 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 490 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 493 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 496 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 499 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 501 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 503 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 505 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 511 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 513 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 514 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 518 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 519 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 520 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 522 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 529 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 534 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 563 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 568 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 575 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 592 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 594 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 596 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 598 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 600 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 602 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 604 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 611 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 614 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 616 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 618 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 620 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 622 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 626 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 631 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 638 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 646 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 648 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 652 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 659 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 673 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 675 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 678 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 684 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 688 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 694 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 700 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 707 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 710 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 713 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + cris-fsr_n20 714 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 718 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 720 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 722 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 725 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 728 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 735 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 742 1 0.500 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 748 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 753 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 762 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 780 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 784 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 798 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 849 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 860 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 862 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 866 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 874 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 882 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 890 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 898 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 906 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 907 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 908 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 914 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 937 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 972 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 973 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 978 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 980 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 981 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 988 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 995 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 998 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1000 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1003 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1008 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1009 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1010 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1014 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1017 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1018 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1020 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1022 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1024 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1026 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1029 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1030 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1032 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1034 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1037 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1038 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1041 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1042 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1044 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1046 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1049 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1050 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1053 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1054 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1058 1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1060 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1062 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1064 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1066 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1069 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1076 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1077 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1080 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1086 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1091 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1095 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1101 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1109 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1112 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1121 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1128 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1133 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1163 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1172 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1187 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1189 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1205 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1211 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1219 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1231 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1245 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1271 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1289 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1300 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1313 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1316 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1325 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1329 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1346 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1347 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1473 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1474 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1491 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1499 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1553 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1570 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1596 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1602 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1619 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1624 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1635 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1939 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1940 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1941 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1942 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1943 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1944 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1945 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1946 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1947 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1948 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1949 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1950 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1951 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1952 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1953 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1954 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1955 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1956 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1957 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1958 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1959 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1960 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1961 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1962 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1963 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1964 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1965 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1966 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1967 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1968 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1969 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1970 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1971 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1972 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1973 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1974 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1975 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1976 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1977 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1978 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1979 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1980 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1981 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1982 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1983 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1984 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1985 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1986 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 1987 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2119 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2140 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2143 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2147 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2153 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2158 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2161 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2168 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2171 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2175 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + cris-fsr_n20 2182 -1 1.000 0.000 2.000 10.000 0.000 -1 -1 -1 + hirs4_metop-b 1 -1 2.500 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-b 2 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 3 -1 0.530 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 4 -1 0.400 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 5 -1 0.360 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 6 -1 0.460 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 7 -1 0.570 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 8 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 9 -1 1.100 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_metop-b 10 -1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 11 -1 1.200 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 12 -1 1.600 0.000 4.500 10.000 0.000 1 -1 -1 + hirs4_metop-b 13 -1 0.364 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 14 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 15 -1 0.260 0.000 2.000 10.000 0.000 1 -1 -1 + hirs4_metop-b 16 -1 1.000 0.000 3.500 10.000 0.000 -1 -1 -1 + hirs4_metop-b 17 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-b 18 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + hirs4_metop-b 19 -1 2.000 0.000 4.500 10.000 0.000 -1 -1 -1 + amsua_metop-b 1 -1 2.500 20.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 2 -1 2.200 18.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 3 -1 2.000 12.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 4 -1 0.550 3.000 2.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 5 -1 0.300 0.500 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 6 -1 0.230 0.300 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 7 -1 0.230 0.230 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 8 1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 9 1 0.250 0.250 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 10 1 0.350 0.350 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-b 11 -1 0.400 0.400 2.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 12 -1 0.550 0.550 3.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 13 -1 0.800 0.800 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 14 -1 3.000 3.000 4.500 10.000 0.000 -2 -1 -1 + amsua_metop-b 15 -1 3.500 18.000 4.500 10.000 0.000 -2 -1 -1 + mhs_metop-b 1 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-b 2 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-b 3 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-b 4 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-b 5 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + iasi_metop-b 16 -1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 29 -1 0.810 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 32 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 35 -1 0.790 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 38 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 41 -1 0.740 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 44 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 47 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 49 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 50 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 51 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 53 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 55 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 56 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 57 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 59 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 61 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 62 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 63 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 66 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 68 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 70 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 72 -1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 74 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 76 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 78 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 79 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 81 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 82 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 83 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 84 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 85 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 86 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 87 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 89 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 92 -1 4.380 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 93 -1 3.050 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 95 -1 2.310 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 97 -1 1.560 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 99 -1 1.330 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 101 -1 1.580 0.000 3.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 103 -1 0.930 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 104 -1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 106 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 109 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 110 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 111 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 113 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 116 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 119 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 122 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 125 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 128 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 131 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 133 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 135 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 138 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 141 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 144 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 146 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 148 -1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 150 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 151 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 157 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 159 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 160 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 161 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 163 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 170 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 176 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 179 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 180 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 185 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 191 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 193 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 197 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 199 1 1.050 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-b 200 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 202 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 203 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 205 1 1.300 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 207 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 210 -1 0.930 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 212 1 1.490 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 213 -1 1.120 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 214 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 217 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 218 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 219 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 222 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 225 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 228 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 231 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 237 -1 0.780 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 259 -1 0.870 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 265 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 267 1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-b 269 -1 0.840 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 279 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-b 285 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 299 -1 0.690 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 300 -1 0.610 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 303 -1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 309 -1 0.790 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 313 -1 0.620 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 320 -1 0.660 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 326 -1 0.650 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 332 -1 0.620 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 363 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 372 -1 0.650 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 405 -1 1.780 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 408 -1 1.140 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 411 -1 1.790 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 418 -1 1.940 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 423 -1 2.010 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 433 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-b 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-b 442 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 450 -1 1.520 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 459 -1 1.960 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 472 -1 2.310 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 477 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 483 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 509 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 578 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 584 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 594 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 625 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 705 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 739 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 797 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1090 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1098 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1173 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1222 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1283 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1338 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1409 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1414 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1420 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1424 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1427 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1430 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1434 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1440 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1442 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1445 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1450 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1454 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1460 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1463 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1469 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1474 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1479 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1483 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1487 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1494 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1496 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1502 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1505 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1509 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1510 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1513 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1518 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1521 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1526 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1529 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1532 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1536 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1537 -1 2.010 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1541 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1545 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1548 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1553 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1560 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1568 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1574 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1579 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1583 -1 1.760 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1585 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1587 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1606 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1626 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1639 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1643 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1652 -1 2.070 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1658 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1659 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1666 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1671 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1675 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1681 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1694 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1697 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1710 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1786 1 1.980 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1791 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1805 1 2.180 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1839 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1884 1 2.210 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1913 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1946 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1947 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 1991 1 2.250 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2019 1 1.800 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2094 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2119 1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2213 1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2239 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2271 1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2289 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2321 1 1.720 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2333 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2346 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2349 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2352 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2359 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2367 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2374 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2398 1 1.740 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2426 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2562 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2701 1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 2741 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2745 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2760 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2819 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2889 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2907 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2910 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2919 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2921 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2939 -1 1.710 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2944 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2945 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2948 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2951 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2958 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2971 -1 1.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2977 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2985 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2988 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2990 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2991 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 2993 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3002 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3008 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3014 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3027 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3029 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3030 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3036 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3047 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3049 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3052 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3053 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3055 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3058 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3064 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3069 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3087 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3093 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3098 -1 1.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3105 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3107 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3110 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3116 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3127 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3129 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3136 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3146 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3151 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3160 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3165 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3168 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3175 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3178 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3189 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3207 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3228 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3244 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3248 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3252 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3256 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3263 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3281 -1 1.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3295 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3303 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3309 -1 1.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3312 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3322 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3326 -1 1.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3354 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3366 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3375 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3378 -1 1.680 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3411 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3416 -1 1.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3432 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3438 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3440 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3442 -1 1.410 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 3444 -1 1.160 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 3446 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3448 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3450 -1 1.200 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3452 -1 1.650 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3454 -1 1.660 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3458 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3467 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3476 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3484 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3491 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3497 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3499 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3504 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3506 -1 0.990 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3509 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3518 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3527 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3555 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3575 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 3577 -1 1.150 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3580 -1 1.580 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3582 -1 1.180 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-b 3586 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3589 -1 1.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3599 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3610 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3626 -1 1.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3638 -1 1.270 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3646 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3653 -1 1.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3658 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3661 -1 1.290 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3673 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3689 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3700 -1 1.230 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3710 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3726 -1 1.210 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3763 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3814 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3841 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 3888 -1 1.330 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4032 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4059 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4068 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4082 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4095 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4160 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4234 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4257 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4411 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4498 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4520 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4552 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4567 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4608 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4646 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4698 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4808 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4849 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4920 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4939 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4947 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4967 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4991 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 4996 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5015 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5028 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5056 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5128 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5130 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5144 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5170 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5178 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5183 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5188 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5191 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5368 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5371 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5379 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5381 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5383 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5397 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5399 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5401 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5403 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5405 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5446 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5455 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5472 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5480 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5483 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5485 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5492 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5497 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5502 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5507 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5509 -1 2.140 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5517 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5528 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5558 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5697 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5714 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5749 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5766 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5785 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5798 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5799 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5801 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5817 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5833 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5834 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5836 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5849 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5851 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5852 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5865 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5869 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5881 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5884 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5897 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5900 -1 2.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5916 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5932 -1 2.350 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5948 -1 2.300 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5963 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5968 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5978 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5988 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5992 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5994 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 5997 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6003 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6008 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6023 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6026 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6039 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6053 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6056 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6067 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6071 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6082 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6085 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6098 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6112 -1 2.340 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6126 -1 9.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6135 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6140 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6149 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6154 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6158 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6161 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6168 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6174 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6182 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6187 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6205 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6209 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6213 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6317 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6339 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6342 -1 1.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6366 -1 1.640 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6381 -1 1.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6391 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6489 -1 2.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6962 -1 2.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6966 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6970 -1 2.370 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6975 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6977 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6982 -1 1.720 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6985 -1 1.740 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6987 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6989 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6991 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6993 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6995 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6997 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 6999 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7000 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7004 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7008 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7013 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7016 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7021 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7024 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7027 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7029 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7032 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7038 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7043 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7046 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7049 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7069 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7072 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7076 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7081 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7084 -1 2.440 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7089 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7099 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7209 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7222 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7231 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7235 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7247 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7267 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7269 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7284 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7389 -1 2.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7419 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7423 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7424 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7426 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7428 -1 2.490 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7431 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7436 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7444 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7475 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7549 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7584 -1 2.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7665 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7666 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7831 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7836 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7853 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7865 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7885 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7888 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7912 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7950 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7972 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7980 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 7995 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 8007 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 8015 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 8055 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-b 8078 -1 9.000 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_metop-b 3 -1 0.450 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_metop-b 4 -1 0.550 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_metop-b 5 -1 0.600 0.000 6.000 10.000 0.000 -1 -1 -1 + amsr2_gcom-w1 1 -1 1.100 6.300 2.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 2 -1 1.000 9.600 2.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 3 -1 1.100 6.400 2.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 4 -1 1.000 9.700 2.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 5 -1 1.250 6.200 3.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 6 -1 1.250 10.200 3.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 7 -1 1.500 6.700 3.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 8 -1 2.000 12.400 4.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 9 -1 2.000 6.200 5.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 10 -1 2.500 11.600 5.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 11 -1 1.750 7.700 5.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 12 -1 2.250 16.200 5.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 13 -1 2.100 6.900 5.000 10.000 0.000 -2 -1 -1 + amsr2_gcom-w1 14 -1 2.750 14.100 5.000 10.000 0.000 -2 -1 -1 + gmi_gpm 1 -1 0.950 5.900 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 2 -1 1.040 9.400 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 3 -1 1.150 6.800 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 4 -1 1.790 11.900 5.000 10.000 0.000 -2 -1 -1 + gmi_gpm 5 -1 1.620 6.200 5.000 10.000 0.000 -2 -1 -1 + gmi_gpm 6 -1 1.105 7.500 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 7 -1 1.985 14.800 5.000 10.000 0.000 -2 -1 -1 + gmi_gpm 8 -1 1.580 6.900 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 9 -1 4.000 13.700 6.000 10.000 0.000 -2 -1 -1 + gmi_gpm 10 -1 1.255 8.600 2.500 10.000 0.000 -2 -1 -1 + gmi_gpm 11 -1 1.870 10.400 2.500 10.000 0.000 -2 -1 -1 + gmi_gpm 12 -1 1.345 5.400 3.000 10.000 0.000 -2 -1 -1 + gmi_gpm 13 -1 1.230 6.900 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 1 -1 1.750 6.000 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 2 -1 1.410 6.000 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 3 -1 1.240 6.000 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 4 -1 1.130 6.000 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 5 -1 1.070 6.000 3.000 10.000 0.000 -2 -1 -1 + saphir_meghat 6 -1 1.010 6.000 3.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 7 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 8 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 9 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 10 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 11 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 12 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 13 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 14 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 15 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + ahi_himawari8 16 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 7 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 8 1 1.756 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 9 1 1.587 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 10 1 1.185 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 11 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 12 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 13 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 14 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 15 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + abi_g16 16 -1 2.200 0.000 2.000 10.000 0.000 -2 -1 -1 + amsua_metop-c 1 1 2.500 20.000 4.500 10.000 0.000 -2 1 -1 + amsua_metop-c 2 1 2.200 18.000 4.500 10.000 0.000 -2 1 -1 + amsua_metop-c 3 1 2.000 12.000 4.500 10.000 0.000 -2 1 -1 + amsua_metop-c 4 1 0.550 3.000 2.500 10.000 0.000 -2 1 -1 + amsua_metop-c 5 1 0.300 0.500 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 6 1 0.230 0.300 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 7 1 0.230 0.230 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 8 1 0.250 0.250 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 9 1 0.250 0.250 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 10 1 0.350 0.350 2.000 10.000 0.000 -2 1 -1 + amsua_metop-c 11 -1 0.400 0.400 2.500 10.000 0.000 -2 1 -1 + amsua_metop-c 12 -1 0.550 0.550 3.500 10.000 0.000 -2 1 -1 + amsua_metop-c 13 -1 0.800 0.800 4.500 10.000 0.000 -2 1 -1 + amsua_metop-c 14 -1 4.000 4.000 4.500 10.000 0.000 -2 1 -1 + amsua_metop-c 15 1 3.500 18.000 4.500 10.000 0.000 -2 1 -1 + mhs_metop-c 1 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-c 2 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-c 3 1 2.500 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-c 4 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + mhs_metop-c 5 1 2.000 0.000 6.000 10.000 0.000 -2 -1 -1 + iasi_metop-c 16 -1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 29 -1 0.810 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 32 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 35 -1 0.790 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 38 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 41 -1 0.740 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 44 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 47 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 49 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 50 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 51 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 53 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 55 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 56 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 57 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 59 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 61 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 62 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 63 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 66 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 68 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 70 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 72 -1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 74 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 76 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 78 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 79 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 81 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 82 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 83 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 84 -1 0.610 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 85 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 86 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 87 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 89 -1 0.680 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 92 -1 4.380 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 93 -1 3.050 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 95 -1 2.310 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 97 -1 1.560 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 99 -1 1.330 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 101 -1 1.580 0.000 3.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 103 -1 0.930 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 104 -1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 106 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 109 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 110 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 111 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 113 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 116 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 119 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 122 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 125 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 128 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 131 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 133 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 135 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 138 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 141 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 144 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 146 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 148 -1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 150 -1 0.590 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 151 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 154 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 157 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 159 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 160 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 161 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 163 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 167 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 170 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 173 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 176 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 179 -1 0.580 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 180 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 185 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 187 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 191 -1 0.640 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 193 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 197 -1 0.720 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 199 -1 1.050 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-c 200 -1 0.750 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 202 -1 0.510 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 203 -1 0.650 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 205 -1 1.300 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 207 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 210 -1 0.930 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 212 -1 1.490 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 213 -1 1.120 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 214 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 217 -1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 218 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 219 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 222 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 224 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 225 -1 0.670 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 226 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 228 -1 0.620 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 230 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 231 -1 0.690 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 232 -1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 236 -1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 237 -1 0.780 0.000 2.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 239 -1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 243 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 246 -1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 249 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 252 -1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 254 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 259 -1 0.870 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 260 -1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 262 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 265 -1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 267 -1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-c 269 -1 0.840 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 275 -1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 279 -1 0.800 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 282 -1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-c 285 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 294 -1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 296 -1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 299 -1 0.690 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 300 -1 0.610 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 303 -1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 306 -1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 309 -1 0.790 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 313 -1 0.620 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 320 -1 0.660 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 323 -1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 326 -1 0.650 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 327 -1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 329 -1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 332 -1 0.620 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 335 -1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 345 -1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 347 -1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 350 -1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 354 -1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 356 -1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 360 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 363 -1 0.980 0.000 3.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 366 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 371 -1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 372 -1 0.650 0.000 2.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 373 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 375 -1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 377 -1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 379 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 381 -1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 383 -1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 386 -1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 389 -1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 398 -1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 401 -1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 404 -1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 405 -1 1.780 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 407 -1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 408 -1 1.140 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 410 -1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 411 -1 1.790 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 414 -1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 416 -1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 418 -1 1.940 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 423 -1 2.010 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 426 -1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 428 -1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 432 -1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 433 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 434 -1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-c 439 -1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-c 442 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 445 -1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 450 -1 1.520 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 457 -1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 459 -1 1.960 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 472 -1 2.310 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 477 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 483 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 509 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 515 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 546 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 552 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 559 -1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 566 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 571 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 573 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 578 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 584 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 594 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 625 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 646 -1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 662 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 668 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 705 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 739 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 756 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 797 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 867 -1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 906 -1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 921 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1027 -1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1046 -1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1090 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1098 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1121 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1133 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1173 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1191 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1194 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1222 -1 2.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1271 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1283 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1338 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1409 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1414 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1420 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1424 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1427 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1430 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1434 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1440 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1442 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1445 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1450 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1454 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1460 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1463 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1469 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1474 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1479 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1483 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1487 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1494 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1496 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1502 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1505 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1509 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1510 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1513 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1518 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1521 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1526 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1529 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1532 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1536 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1537 -1 2.010 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1541 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1545 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1548 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1553 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1560 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1568 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1574 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1579 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1583 -1 1.760 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1585 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1587 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1606 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1626 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1639 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1643 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1652 -1 2.070 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1658 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1659 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1666 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1671 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1675 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1681 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1694 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1697 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1710 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1786 -1 1.980 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1791 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1805 -1 2.180 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1839 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1884 -1 2.210 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1913 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1946 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1947 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 1991 -1 2.250 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2019 -1 1.800 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2094 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2119 -1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2213 -1 1.730 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2239 -1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2271 -1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2289 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2321 -1 1.720 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2333 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2346 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2349 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2352 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2359 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2367 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2374 -1 2.170 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2398 -1 1.740 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2426 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2562 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2701 -1 1.670 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 2741 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2745 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2760 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2819 -1 1.730 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2889 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2907 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2910 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2919 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2921 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2939 -1 1.710 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2944 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2945 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2948 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2951 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2958 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2971 -1 1.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2977 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2985 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2988 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2990 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2991 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 2993 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3002 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3008 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3014 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3027 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3029 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3030 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3036 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3047 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3049 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3052 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3053 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3055 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3058 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3064 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3069 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3087 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3093 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3098 -1 1.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3105 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3107 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3110 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3116 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3127 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3129 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3136 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3146 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3151 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3160 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3165 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3168 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3175 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3178 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3189 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3207 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3228 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3244 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3248 -1 1.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3252 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3256 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3263 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3281 -1 1.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3295 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3303 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3309 -1 1.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3312 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3322 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3326 -1 1.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3354 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3366 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3375 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3378 -1 1.680 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3411 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3416 -1 1.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3432 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3438 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3440 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3442 -1 1.410 0.000 5.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 3444 -1 1.160 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 3446 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3448 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3450 -1 1.200 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3452 -1 1.650 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3454 -1 1.660 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3458 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3467 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3476 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3484 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3491 -1 1.250 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3497 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3499 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3504 -1 1.700 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3506 -1 0.990 0.000 4.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3509 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3518 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3527 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3555 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3575 -1 1.470 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 3577 -1 1.150 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3580 -1 1.580 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3582 -1 1.180 0.000 4.500 10.000 0.000 -1 -1 -1 + iasi_metop-c 3586 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3589 -1 1.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3599 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3610 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3626 -1 1.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3638 -1 1.270 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3646 -1 1.910 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3653 -1 1.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3658 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3661 -1 1.290 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3673 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3689 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3700 -1 1.230 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3710 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3726 -1 1.210 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3763 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3814 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3841 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 3888 -1 1.330 0.000 5.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4032 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4059 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4068 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4082 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4095 -1 1.830 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4160 -1 1.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4234 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4257 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4411 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4498 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4520 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4552 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4567 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4608 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4646 -1 1.950 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4698 -1 1.990 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4808 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4849 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4920 -1 1.960 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4939 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4947 -1 1.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4967 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4991 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 4996 -1 1.840 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5015 -1 1.870 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5028 -1 1.770 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5056 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5128 -1 1.890 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5130 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5144 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5170 -1 1.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5178 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5183 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5188 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5191 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5368 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5371 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5379 -1 1.810 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5381 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5383 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5397 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5399 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5401 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5403 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5405 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5446 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5455 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5472 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5480 -1 1.980 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5483 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5485 -1 1.800 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5492 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5497 -1 1.750 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5502 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5507 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5509 -1 2.140 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5517 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5528 -1 1.860 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5558 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5697 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5714 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5749 -1 2.030 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5766 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5785 -1 2.190 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5798 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5799 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5801 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5817 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5833 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5834 -1 2.330 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5836 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5849 -1 2.210 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5851 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5852 -1 2.230 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5865 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5869 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5881 -1 1.880 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5884 -1 2.260 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5897 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5900 -1 2.360 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5916 -1 2.290 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5932 -1 2.350 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5948 -1 2.300 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5963 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5968 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5978 -1 2.050 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5988 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5992 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5994 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 5997 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6003 -1 1.970 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6008 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6023 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6026 -1 2.250 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6039 -1 2.310 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6053 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6056 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6067 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6071 -1 2.240 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6082 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6085 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6098 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6112 -1 2.340 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6126 -1 9.320 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6135 -1 2.280 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6140 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6149 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6154 -1 2.270 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6158 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6161 -1 2.110 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6168 -1 2.090 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6174 -1 2.100 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6182 -1 2.060 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6187 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6205 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6209 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6213 -1 1.930 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6317 -1 2.020 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6339 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6342 -1 1.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6366 -1 1.640 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6381 -1 1.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6391 -1 1.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6489 -1 2.820 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6962 -1 2.920 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6966 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6970 -1 2.370 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6975 -1 1.850 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6977 -1 1.600 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6982 -1 1.720 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6985 -1 1.740 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6987 -1 1.790 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6989 -1 1.900 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6991 -1 1.940 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6993 -1 2.000 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6995 -1 2.040 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6997 -1 2.080 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 6999 -1 2.120 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7000 -1 2.130 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7004 -1 2.160 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7008 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7013 -1 2.180 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7016 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7021 -1 2.200 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7024 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7027 -1 2.390 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7029 -1 2.380 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7032 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7038 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7043 -1 2.410 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7046 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7049 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7069 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7072 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7076 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7081 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7084 -1 2.440 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7089 -1 2.400 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7099 -1 2.420 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7209 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7222 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7231 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7235 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7247 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7267 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7269 -1 2.450 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7284 -1 2.430 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7389 -1 2.510 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7419 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7423 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7424 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7426 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7428 -1 2.490 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7431 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7436 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7444 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7475 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7549 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7584 -1 2.540 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7665 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7666 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7831 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7836 -1 2.550 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7853 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7865 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7885 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7888 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7912 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7950 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7972 -1 2.480 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7980 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 7995 -1 2.500 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 8007 -1 2.520 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 8015 -1 2.460 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 8055 -1 2.530 0.000 6.000 10.000 0.000 -1 -1 -1 + iasi_metop-c 8078 -1 9.000 0.000 6.000 10.000 0.000 -1 -1 -1 + avhrr3_metop-c 3 -1 0.600 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_metop-c 4 -1 0.680 0.000 6.000 10.000 0.000 1 -1 -1 + avhrr3_metop-c 5 -1 0.720 0.000 6.000 10.000 0.000 1 -1 -1 diff --git a/fix/gsi/gsd_sfcobs_provider.txt b/fix/gsi/gsd_sfcobs_provider.txt new file mode 100755 index 000000000..c6ff7d9c4 --- /dev/null +++ b/fix/gsi/gsd_sfcobs_provider.txt @@ -0,0 +1,12 @@ +***************************** +Use list for mesonet data +***************************** +FL-Meso FAWN +SFWMD allsprvs +CAIC allsprvs +OK-Meso allsprvs +WT-Meso allsprvs +WYDOT allsprvs +NOS-PORTallsprvs +NOS-NWLOallsprvs +GoMOOS allsprvs diff --git a/fix/gsi/gsd_sfcobs_uselist.txt b/fix/gsi/gsd_sfcobs_uselist.txt new file mode 120000 index 000000000..6695290af --- /dev/null +++ b/fix/gsi/gsd_sfcobs_uselist.txt @@ -0,0 +1 @@ +../.agent/gsi/gsd_sfcobs_uselist.txt \ No newline at end of file diff --git a/fix/gsi/gsiparm.anl.sh b/fix/gsi/gsiparm.anl.sh new file mode 100755 index 000000000..28c7b1759 --- /dev/null +++ b/fix/gsi/gsiparm.anl.sh @@ -0,0 +1,226 @@ +gsi_namelist=" + &SETUP + miter=${miter},niter(1)=${niter1},niter(2)=${niter2}, + write_diag(1)=.true.,write_diag(2)=${write_diag_2},write_diag(3)=.true., + qoption=2,print_obs_para=.true.,diag_radardbz=${diag_radardbz}, + if_model_dbz=${if_model_dbz},static_gsi_nopcp_dbz=0.0,if_use_w_vr=.false., + rmesh_dbz=4.0,rmesh_vr=4.0,zmesh_dbz=1000.0,zmesh_vr=1000.0, + missing_to_nopcp=.false.,radar_no_thinning=.true., + gencode=78,factqmin=0.0,factqmax=0.0, + iguess=-1,crtm_coeffs_path='./crtm_coeffs/', + lread_obs_save=${lread_obs_save},lread_obs_skip=${lread_obs_skip}, + ${ens_nstarthr:+"ens_nstarthr=$ens_nstarthr,"} + oneobtest=.false.,retrieval=.false., + nhr_assimilation=3,l_foto=.false., + use_pbl=.false.,use_prepb_satwnd=$ifsatbufr, + newpc4pred=.true.,adp_anglebc=.true.,angord=4, + passive_bc=.true.,use_edges=.false.,emiss_bc=.true., + diag_precon=.true.,step_start=1.e-3, + l4densvar=.false.,nhr_obsbin=3, + use_gfs_nemsio=.false.,use_gfs_ncio=.true.,reset_bad_radbc=.true., + netcdf_diag=${netcdf_diag},binary_diag=${binary_diag}, + l_obsprvdiag=${l_obsprvdiag}, + lwrite_peakwt=.true., + / + &GRIDOPTS + fv3_regional=.true.,grid_ratio_fv3_regional=${grid_ratio_fv3},nvege_type=20, + fv3_io_layout_y=${n_iolayouty}, + / + &BKGERR + vs=${bkgerr_vs}, + hzscl=${bkgerr_hzscl}, + bw=0.,fstat=.true., + usenewgfsberror=${usenewgfsberror}, +/ + &ANBKGERR + anisotropic=.false., + / + &JCOPTS + / + &STRONGOPTS + / + &OBSQC + dfact=0.75,dfact1=3.0,noiqc=.false.,c_varqc=0.02,vadfile='prepbufr', + vadwnd_l2rw_qc=.true., + / + &OBS_INPUT + dmesh(1)=120.0,dmesh(2)=60.0,dmesh(3)=30,time_window_max=1.5,time_window_rad=1.0,ext_sonde=.true., + / +OBS_INPUT:: +! dfile dtype dplat dsis dval dthin dsfcalc + pm25bufr pm2_5 null TEOM 1.0 0 0 + dbzobs.nc dbz null dbz 1.0 0 0 + prepbufr ps null ps 1.0 0 0 + prepbufr t null t 1.0 0 0 + prepbufr q null q 1.0 0 0 + prepbufr pw null pw 1.0 0 0 + satwndbufr uv null uv 1.0 0 0 + prepbufr uv null uv 1.0 0 0 + prepbufr spd null spd 1.0 0 0 + prepbufr dw null dw 1.0 0 0 + l2rwbufr rw null l2rw 1.0 0 0 + prepbufr sst null sst 1.0 0 0 + gpsrobufr gps_ref null gps 1.0 0 0 + ssmirrbufr pcp_ssmi dmsp pcp_ssmi 1.0 -1 0 + tmirrbufr pcp_tmi trmm pcp_tmi 1.0 -1 0 + sbuvbufr sbuv2 n16 sbuv8_n16 0.0 0 0 + sbuvbufr sbuv2 n17 sbuv8_n17 0.0 0 0 + sbuvbufr sbuv2 n18 sbuv8_n18 0.0 0 0 + hirs3bufr hirs3 n16 hirs3_n16 0.0 1 0 + hirs3bufr hirs3 n17 hirs3_n17 0.0 1 0 + hirs4bufr hirs4 metop-a hirs4_metop-a 0.0 2 0 + hirs4bufr hirs4 n18 hirs4_n18 0.0 1 0 + hirs4bufr hirs4 n19 hirs4_n19 0.0 2 0 + hirs4bufr hirs4 metop-b hirs4_metop-b 0.0 2 0 + gimgrbufr goes_img g11 imgr_g11 0.0 1 0 + gimgrbufr goes_img g12 imgr_g12 0.0 1 0 + airsbufr airs aqua airs_aqua 0.0 2 0 + amsuabufr amsua n15 amsua_n15 0.0 2 0 + amsuabufr amsua n18 amsua_n18 0.0 2 0 + amsuabufr amsua n19 amsua_n19 0.0 2 0 + amsuabufr amsua metop-a amsua_metop-a 0.0 2 0 + amsuabufr amsua metop-b amsua_metop-b 0.0 2 0 + amsuabufr amsua metop-c amsua_metop-c 0.0 2 0 + airsbufr amsua aqua amsua_aqua 0.0 2 0 + amsubbufr amsub n17 amsub_n17 0.0 1 0 + mhsbufr mhs n18 mhs_n18 0.0 2 0 + mhsbufr mhs n19 mhs_n19 0.0 2 0 + mhsbufr mhs metop-a mhs_metop-a 0.0 2 0 + mhsbufr mhs metop-b mhs_metop-b 0.0 2 0 + mhsbufr mhs metop-c mhs_metop-c 0.0 2 0 + ssmitbufr ssmi f13 ssmi_f13 0.0 2 0 + ssmitbufr ssmi f14 ssmi_f14 0.0 2 0 + ssmitbufr ssmi f15 ssmi_f15 0.0 2 0 + amsrebufr amsre_low aqua amsre_aqua 0.0 2 0 + amsrebufr amsre_mid aqua amsre_aqua 0.0 2 0 + amsrebufr amsre_hig aqua amsre_aqua 0.0 2 0 + ssmisbufr ssmis f16 ssmis_f16 0.0 2 0 + ssmisbufr ssmis f17 ssmis_f17 0.0 2 0 + ssmisbufr ssmis f18 ssmis_f18 0.0 2 0 + ssmisbufr ssmis f19 ssmis_f19 0.0 2 0 + gsnd1bufr sndrd1 g12 sndrD1_g12 0.0 1 0 + gsnd1bufr sndrd2 g12 sndrD2_g12 0.0 1 0 + gsnd1bufr sndrd3 g12 sndrD3_g12 0.0 1 0 + gsnd1bufr sndrd4 g12 sndrD4_g12 0.0 1 0 + gsnd1bufr sndrd1 g11 sndrD1_g11 0.0 1 0 + gsnd1bufr sndrd2 g11 sndrD2_g11 0.0 1 0 + gsnd1bufr sndrd3 g11 sndrD3_g11 0.0 1 0 + gsnd1bufr sndrd4 g11 sndrD4_g11 0.0 1 0 + gsnd1bufr sndrd1 g13 sndrD1_g13 0.0 1 0 + gsnd1bufr sndrd2 g13 sndrD2_g13 0.0 1 0 + gsnd1bufr sndrd3 g13 sndrD3_g13 0.0 1 0 + gsnd1bufr sndrd4 g13 sndrD4_g13 0.0 1 0 + gsnd1bufr sndrd1 g15 sndrD1_g15 0.0 2 0 + gsnd1bufr sndrd2 g15 sndrD2_g15 0.0 2 0 + gsnd1bufr sndrd3 g15 sndrD3_g15 0.0 2 0 + gsnd1bufr sndrd4 g15 sndrD4_g15 0.0 2 0 + iasibufr iasi metop-a iasi_metop-a 0.0 2 0 + gomebufr gome metop-a gome_metop-a 0.0 2 0 + omibufr omi aura omi_aura 0.0 2 0 + sbuvbufr sbuv2 n19 sbuv8_n19 0.0 0 0 + tcvitl tcp null tcp 0.0 0 0 + seviribufr seviri m08 seviri_m08 0.0 2 0 + seviribufr seviri m09 seviri_m09 0.0 2 0 + seviribufr seviri m10 seviri_m10 0.0 2 0 + seviribufr seviri m11 seviri_m11 0.0 2 0 + iasibufr iasi metop-b iasi_metop-b 0.0 2 0 + gomebufr gome metop-b gome_metop-b 0.0 2 0 + atmsbufr atms npp atms_npp 0.0 2 0 + atmsbufr atms n20 atms_n20 0.0 2 0 + crisbufr cris npp cris_npp 0.0 2 0 + crisfsbufr cris-fsr npp cris-fsr_npp 0.0 2 0 + crisfsbufr cris-fsr n20 cris-fsr_n20 0.0 2 0 + abibufr abi g16 abi_g16 0.0 2 0 + mlsbufr mls30 aura mls30_aura 0.0 0 0 + oscatbufr uv null uv 0.0 0 0 + prepbufr mta_cld null mta_cld 1.0 0 0 + prepbufr gos_ctp null gos_ctp 1.0 0 0 + refInGSI rad_ref null rad_ref 1.0 0 0 + lghtInGSI lghtn null lghtn 1.0 0 0 + larcInGSI larccld null larccld 1.0 0 0 +:: + &SUPEROB_RADAR + del_azimuth=5.,del_elev=.25,del_range=5000.,del_time=.5,elev_angle_max=5.,minnum=50,range_max=100000., l2superob_only=.false., + / + &LAG_DATA + / + &HYBRID_ENSEMBLE + l_hyb_ens=${ifhyb}, + uv_hyb_ens=.true., + q_hyb_ens=${q_hyb_ens}, + aniso_a_en=.false.,generate_ens=.false., + n_ens=${nummem}, + l_both_fv3sar_gfs_ens=${l_both_fv3sar_gfs_ens},n_ens_gfs=${nummem_gfs},n_ens_fv3sar=${nummem_fv3sar}, + weight_ens_gfs=${weight_ens_gfs},weight_ens_fv3sar=${weight_ens_fv3sar}, + beta_s0=${beta1_inv},s_ens_h=${ens_h},s_ens_v=${ens_v}, + regional_ensemble_option=${regional_ensemble_option}, + pseudo_hybens = .false., + grid_ratio_ens = ${grid_ratio_ens}, + l_ens_in_diff_time=.true., + ensemble_path='', + i_en_perts_io=${i_en_perts_io}, + jcap_ens=574, + fv3sar_bg_opt=${fv3lam_bg_type}, + readin_localization=${readin_localization}, + parallelization_over_ensmembers=${ens_fast_read}, + nsclgrp=${nsclgrp},l_timloc_opt=.false.,ngvarloc=${ngvarloc},naensloc=${naensloc}, + r_ensloccov4tim=${r_ensloccov4tim},r_ensloccov4var=${r_ensloccov4var},r_ensloccov4scl=${r_ensloccov4scl}, + global_spectral_filter_sd=.false.,assign_vdl_nml=${assign_vdl_nml},vdl_scale=${vdl_scale}, + vloc_varlist(1,1)='sf ',vloc_varlist(2,1)='w ',vloc_varlist(3,1)='sf ',vloc_varlist(4,1)='w ', + vloc_varlist(1,2)='vp ',vloc_varlist(2,2)='qr ',vloc_varlist(3,2)='vp ',vloc_varlist(4,2)='qr ', + vloc_varlist(1,3)='ps ',vloc_varlist(2,3)='qs ',vloc_varlist(3,3)='ps ',vloc_varlist(4,3)='qs ', + vloc_varlist(1,4)='t ',vloc_varlist(2,4)='qi ',vloc_varlist(3,4)='t ',vloc_varlist(4,4)='qi ', + vloc_varlist(1,5)='q ',vloc_varlist(2,5)='qg ',vloc_varlist(3,5)='q ',vloc_varlist(4,5)='qg ', + vloc_varlist(1,6)='sst',vloc_varlist(2,6)='ql ',vloc_varlist(3,6)='sst',vloc_varlist(4,6)='ql ', + vloc_varlist(1,7)='stl',vloc_varlist(2,7)='dbz',vloc_varlist(3,7)='stl',vloc_varlist(4,7)='dbz', + vloc_varlist(1,8)='sti',vloc_varlist(2,8)='aaa',vloc_varlist(3,8)='sti',vloc_varlist(4,8)='aaa', + / + &RAPIDREFRESH_CLDSURF + dfi_radar_latent_heat_time_period=20.0, + metar_impact_radius=10.0, + metar_impact_radius_lowCloud=4.0, + l_gsd_terrain_match_surfTobs=.true., + l_sfcobserror_ramp_t=.true., + l_sfcobserror_ramp_q=.true., + l_PBL_pseudo_SurfobsT=.false., + l_PBL_pseudo_SurfobsQ=.false., + l_PBL_pseudo_SurfobsUV=.false., + pblH_ration=0.4, + pps_press_incr=40.0, + l_gsd_limit_ocean_q=.true., + l_pw_hgt_adjust=.true., + l_limit_pw_innov=.true., + max_innov_pct=0.1, + l_cleanSnow_WarmTs=.true., + r_cleanSnow_WarmTs_threshold=5.0, + l_conserve_thetaV=.true., + i_conserve_thetaV_iternum=3, + l_gsd_soilTQ_nudge=${ifsoilnudge}, + l_cld_bld=.true., + l_numconc=.true., + l_closeobs=.true., + cld_bld_hgt=1200.0, + build_cloud_frac_p=0.50, + clear_cloud_frac_p=0.10, + iclean_hydro_withRef_allcol=1, + i_use_2mQ4B=${i_use_2mQ4B}, + i_use_2mT4B=${i_use_2mT4B}, + i_gsdcldanal_type=0, + i_gsdsfc_uselist=1, + i_lightpcp=1, + i_sfct_gross=1, + i_coastline=3, + i_gsdqc=2, + / + &CHEM + laeroana_fv3smoke=${laeroana_fv3smoke}, + berror_fv3_cmaq_regional=${berror_fv3_cmaq_regional}, + / + &NST + / + &SINGLEOB_TEST + maginnov=1.0,magoberr=0.8,oneob_type='t', + oblat=38.,oblon=279.,obpres=500.,obdattim=2020040500, + obhourset=0., + / +" diff --git a/fix/gsi/gvf_VIIRS_4KM.MAX.1gd4r.new b/fix/gsi/gvf_VIIRS_4KM.MAX.1gd4r.new new file mode 120000 index 000000000..75dd2c2f5 --- /dev/null +++ b/fix/gsi/gvf_VIIRS_4KM.MAX.1gd4r.new @@ -0,0 +1 @@ +../.agent/gsi/gvf_VIIRS_4KM.MAX.1gd4r.new \ No newline at end of file diff --git a/fix/gsi/gvf_VIIRS_4KM.MIN.1gd4r.new b/fix/gsi/gvf_VIIRS_4KM.MIN.1gd4r.new new file mode 120000 index 000000000..84fba97f5 --- /dev/null +++ b/fix/gsi/gvf_VIIRS_4KM.MIN.1gd4r.new @@ -0,0 +1 @@ +../.agent/gsi/gvf_VIIRS_4KM.MIN.1gd4r.new \ No newline at end of file diff --git a/fix/gsi/hybens_info.rrfs b/fix/gsi/hybens_info.rrfs new file mode 100644 index 000000000..a5c95df90 --- /dev/null +++ b/fix/gsi/hybens_info.rrfs @@ -0,0 +1,66 @@ + 65 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 + 110.0 3.0 0.1500 0.8500 diff --git a/fix/gsi/hybens_info.rtma b/fix/gsi/hybens_info.rtma new file mode 100644 index 000000000..6df7181d4 --- /dev/null +++ b/fix/gsi/hybens_info.rtma @@ -0,0 +1,66 @@ + 65 + 20.0 1.0 0.5000 0.5000 + 20.0 1.0 0.5000 0.5000 + 40.0 1.0 0.5000 0.5000 + 40.0 1.0 0.5000 0.5000 + 70.0 1.0 0.5000 0.5000 + 100.0 1.0 0.5000 0.5000 + 100.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 diff --git a/fix/gsi/hybens_info.rtma_64lvls b/fix/gsi/hybens_info.rtma_64lvls new file mode 100644 index 000000000..6df7181d4 --- /dev/null +++ b/fix/gsi/hybens_info.rtma_64lvls @@ -0,0 +1,66 @@ + 65 + 20.0 1.0 0.5000 0.5000 + 20.0 1.0 0.5000 0.5000 + 40.0 1.0 0.5000 0.5000 + 40.0 1.0 0.5000 0.5000 + 70.0 1.0 0.5000 0.5000 + 100.0 1.0 0.5000 0.5000 + 100.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 1.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 + 110.0 3.0 0.5000 0.5000 diff --git a/fix/gsi/nam_errtable.r3dv b/fix/gsi/nam_errtable.r3dv new file mode 100755 index 000000000..f70f07153 --- /dev/null +++ b/fix/gsi/nam_errtable.r3dv @@ -0,0 +1,6800 @@ + 100 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 101 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 102 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 103 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 104 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 105 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 106 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 107 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 108 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 109 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 110 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 111 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 112 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 113 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 114 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 115 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 116 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 117 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 118 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 119 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 120 OBSERVATION TYPE + 0.11000E+04 0.12671E+01 0.56103E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10500E+04 0.13302E+01 0.63026E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10000E+04 0.14017E+01 0.73388E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.95000E+03 0.14543E+01 0.86305E+00 0.10000E+10 0.71307E+00 0.10000E+10 + 0.90000E+03 0.14553E+01 0.99672E+00 0.10000E+10 0.74576E+00 0.10000E+10 + 0.85000E+03 0.13865E+01 0.11210E+01 0.10000E+10 0.77845E+00 0.10000E+10 + 0.80000E+03 0.12696E+01 0.12347E+01 0.10000E+10 0.79791E+00 0.10000E+10 + 0.75000E+03 0.11458E+01 0.13337E+01 0.10000E+10 0.81737E+00 0.10000E+10 + 0.70000E+03 0.10461E+01 0.14214E+01 0.10000E+10 0.83684E+00 0.10000E+10 + 0.65000E+03 0.98493E+00 0.15031E+01 0.10000E+10 0.92441E+00 0.10000E+10 + 0.60000E+03 0.95259E+00 0.15641E+01 0.10000E+10 0.10120E+01 0.10000E+10 + 0.55000E+03 0.93530E+00 0.15940E+01 0.10000E+10 0.10899E+01 0.10000E+10 + 0.50000E+03 0.92541E+00 0.15962E+01 0.10000E+10 0.11775E+01 0.10000E+10 + 0.45000E+03 0.92565E+00 0.16026E+01 0.10000E+10 0.12844E+01 0.10000E+10 + 0.40000E+03 0.94536E+00 0.16419E+01 0.10000E+10 0.14499E+01 0.10000E+10 + 0.35000E+03 0.99513E+00 0.17154E+01 0.10000E+10 0.15858E+01 0.10000E+10 + 0.30000E+03 0.10799E+01 0.17980E+01 0.10000E+10 0.18293E+01 0.10000E+10 + 0.25000E+03 0.11885E+01 0.18754E+01 0.10000E+10 0.24716E+01 0.10000E+10 + 0.20000E+03 0.12894E+01 0.19339E+01 0.10000E+10 0.26954E+01 0.10000E+10 + 0.15000E+03 0.13559E+01 0.19701E+01 0.10000E+10 0.31528E+01 0.10000E+10 + 0.10000E+03 0.13854E+01 0.19887E+01 0.10000E+10 0.38338E+01 0.10000E+10 + 0.75000E+02 0.13857E+01 0.19966E+01 0.10000E+10 0.48946E+01 0.10000E+10 + 0.50000E+02 0.13525E+01 0.19993E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.40000E+02 0.13019E+01 0.20000E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.30000E+02 0.12818E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.13112E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.13698E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.14263E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.14654E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.14868E+01 0.20001E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.14964E+01 0.20004E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.14992E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.14962E+01 0.19949E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 121 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 122 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 123 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 124 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 125 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 126 OBSERVATION TYPE + 0.11000E+04 0.24296E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.24261E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.23798E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.23022E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.22627E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.22817E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.22826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.21826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.20092E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.18385E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.17169E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.16511E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.16306E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.16472E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17905E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.19016E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.19907E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.20094E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.19571E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.18864E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.18600E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.19104E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.20392E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22324E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.24605E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26741E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.28318E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.29263E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.29735E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.29931E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.29985E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.29924E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 127 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 128 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 129 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 130 OBSERVATION TYPE + 0.11000E+04 0.24618E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.24244E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.23481E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.22352E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.20999E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19647E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.18522E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17754E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17323E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17134E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17093E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17131E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17170E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17061E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.16550E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15397E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.13754E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12567E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12116E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.12520E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.13700E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15010E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16004E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16588E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16865E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16969E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16998E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17001E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17003E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16999E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16956E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 131 OBSERVATION TYPE + 0.11000E+04 0.13385E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12190E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10515E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.87460E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.73725E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.66965E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.66362E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.66525E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.65262E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.63131E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.59435E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.54816E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.51139E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.49975E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.51952E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.59104E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.71862E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.85608E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.95397E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10124E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10103E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10055E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10021E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.99990E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99991E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99744E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 132 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.26291E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23549E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.22342E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.12685E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.12818E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.81442E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.66483E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.69405E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.50735E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.36023E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.52198E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.46408E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.88835E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.60699E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.42288E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.41536E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.71442E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.50865E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 133 OBSERVATION TYPE + 0.11000E+04 0.14088E+01 0.19455E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13361E+01 0.19064E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12395E+01 0.18488E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11379E+01 0.17877E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10505E+01 0.17342E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.98154E+00 0.16976E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.92451E+00 0.16777E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.87349E+00 0.16696E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.82829E+00 0.16605E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.79582E+00 0.16522E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.77562E+00 0.16637E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.75911E+00 0.17086E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.74080E+00 0.17791E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.72571E+00 0.18492E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.72719E+00 0.18996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.75204E+00 0.19294E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.80129E+00 0.19447E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.86960E+00 0.19597E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.93292E+00 0.19748E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.96720E+00 0.19866E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.98310E+00 0.19941E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.99132E+00 0.19979E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.99603E+00 0.19994E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.99854E+00 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.99963E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.99997E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99999E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99995E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.99985E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.99958E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99914E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99869E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 134 OBSERVATION TYPE + 0.11000E+04 0.13806E+01 0.10178E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12566E+01 0.90966E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.11252E+01 0.82655E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10055E+01 0.78617E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.90851E+00 0.78063E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.83495E+00 0.79308E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.78541E+00 0.81070E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.75802E+00 0.82841E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.74540E+00 0.84912E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.74532E+00 0.88692E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.76976E+00 0.95913E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.83782E+00 0.10801E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.95649E+00 0.12459E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.11080E+01 0.14281E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.12625E+01 0.15959E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.13975E+01 0.17319E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15033E+01 0.18320E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15792E+01 0.19002E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.16299E+01 0.19437E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.16614E+01 0.19699E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.16799E+01 0.19847E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.16901E+01 0.19926E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16953E+01 0.19966E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16979E+01 0.19985E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16991E+01 0.19993E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16995E+01 0.19996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16997E+01 0.19997E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16996E+01 0.19995E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16993E+01 0.19992E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16989E+01 0.19988E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16984E+01 0.19981E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16968E+01 0.19963E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.19899E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 135 OBSERVATION TYPE + 0.11000E+04 0.14544E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13404E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12300E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11433E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10834E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10460E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10241E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10095E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.99605E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.97832E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.95123E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.91277E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.86866E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.83423E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.82956E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.86953E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.95611E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10780E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12178E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.13527E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.14663E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15524E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16121E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16506E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16737E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16866E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16934E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16980E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16984E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16981E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 136 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 137 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 138 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 139 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 140 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 141 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 142 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 143 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 144 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 145 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 146 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 147 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 148 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 149 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 150 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 151 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 152 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 153 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 154 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 155 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 156 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 157 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 158 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 159 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 160 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 161 OBSERVATION TYPE + 0.11000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.84250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.69500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.54750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 162 OBSERVATION TYPE + 0.11000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.45667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.44333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.43000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.41667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.40333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.39000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.39250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.39500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.39750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 163 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 164 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 165 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 166 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 167 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 168 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 169 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 170 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 171 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 172 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 173 OBSERVATION TYPE + 0.11000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.74333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.72667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.71000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.69333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.67667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.68000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.69000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.70000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.68750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.67500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.66250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 174 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 175 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 176 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 177 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 178 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 179 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 180 OBSERVATION TYPE + 0.11000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 181 OBSERVATION TYPE + 0.11000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 182 OBSERVATION TYPE + 0.11000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 183 OBSERVATION TYPE + 0.11000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 184 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 185 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 186 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 187 OBSERVATION TYPE + 0.11000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 188 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 189 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 190 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 191 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 192 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 193 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 194 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 195 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 196 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 197 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 198 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 199 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 200 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 201 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 202 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 203 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 204 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 205 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 206 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 207 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 208 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 209 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 210 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 211 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 212 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 213 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 214 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 215 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 216 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 217 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 218 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 219 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 220 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 221 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.45378E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.31731E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.31827E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.57746E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.41757E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.44875E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.53540E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.43706E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.39567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.38573E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.43050E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.57301E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.44400E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.53824E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.54431E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.51026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.82180E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.88136E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50652E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.50465E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.64676E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 222 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 223 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.20694E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20468E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.20075E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19652E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19392E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19362E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19390E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19288E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.18947E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.18341E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.17469E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.16504E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15700E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15225E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15150E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15445E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15902E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.16377E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.16938E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.17914E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19945E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23461E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.28106E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32342E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.36912E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.37654E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.37924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.37995E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.38006E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.38008E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.37997E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.37902E+01 0.10000E+10 0.10000E+10 + 224 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.28617E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.27545E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26060E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24519E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23213E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.22446E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22396E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.22997E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24140E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.25663E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.27346E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.28938E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30317E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.31600E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32982E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35780E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.43349E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56961E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.74388E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.89893E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10045E+02 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10623E+02 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10883E+02 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10975E+02 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10972E+02 0.10000E+10 0.10000E+10 + 225 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 226 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 227 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38103E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.39841E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.41510E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.42916E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.44065E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.44955E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45569E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.45933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.69196E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.92558E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.92998E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.93782E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.95024E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.96730E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.98780E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 1.00944E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 1.02930E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 1.04434E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 1.05204E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 1.05076E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 1.04010E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 1.02100E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99550E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.96654E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.93720E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.91024E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.88760E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.87010E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.85762E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.84936E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.84420E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.84072E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.83666E+01 0.10000E+10 0.10000E+10 + 228 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 229 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 230 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 231 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 232 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.33133E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.40029E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.47167E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.51420E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.51372E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.48225E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.43831E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.39783E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.37330E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.36483E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.36557E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.36653E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.36168E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.34788E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32246E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.29305E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.27079E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.25883E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26008E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26158E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26346E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26564E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26754E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26882E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26953E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26985E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26995E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26999E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.27001E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.27005E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26931E+01 0.10000E+10 0.10000E+10 + 233 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 234 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38901E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.37615E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37452E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38681E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.40863E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.43283E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45455E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.47094E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.48036E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.48388E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.48463E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.48723E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.49327E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50201E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.51193E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.52166E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.53020E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.53703E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.54203E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.54540E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.54750E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.54872E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.54938E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.54971E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54992E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54991E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54978E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54965E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54947E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54897E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 235 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.39845E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38612E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37929E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.37968E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38561E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.39456E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.40321E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.40893E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.41115E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.41030E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40690E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40240E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.39821E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.39532E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.39523E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40010E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.41203E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.43179E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.45673E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.48193E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50368E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.52042E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.53219E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.53986E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54452E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54718E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54858E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54950E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54954E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54942E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54895E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 236 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 237 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 238 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 239 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 240 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 241 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 242 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 243 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 244 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 245 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 246 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 247 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 248 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 249 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 250 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 251 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 252 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 253 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 254 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 255 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 256 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 257 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 258 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 259 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 260 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 261 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 262 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 263 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 264 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 265 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 266 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 267 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 268 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 269 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 270 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 271 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 272 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 273 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 274 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 275 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 276 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 277 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 278 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 279 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 280 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 281 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 282 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 283 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 284 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 285 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 286 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 287 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 288 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 289 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 290 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 291 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 292 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 293 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 294 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 295 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 296 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 297 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 298 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 299 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 diff --git a/fix/gsi/nam_errtable.r3dv.noamvland b/fix/gsi/nam_errtable.r3dv.noamvland new file mode 100755 index 000000000..73180a70f --- /dev/null +++ b/fix/gsi/nam_errtable.r3dv.noamvland @@ -0,0 +1,6800 @@ + 100 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 101 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 102 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 103 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 104 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 105 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 106 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 107 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 108 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 109 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 110 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 111 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 112 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 113 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 114 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 115 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 116 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 117 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 118 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 119 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 120 OBSERVATION TYPE + 0.11000E+04 0.12671E+01 0.56103E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10500E+04 0.13302E+01 0.63026E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.10000E+04 0.14017E+01 0.73388E+00 0.10000E+10 0.68115E+00 0.10000E+10 + 0.95000E+03 0.14543E+01 0.86305E+00 0.10000E+10 0.71307E+00 0.10000E+10 + 0.90000E+03 0.14553E+01 0.99672E+00 0.10000E+10 0.74576E+00 0.10000E+10 + 0.85000E+03 0.13865E+01 0.11210E+01 0.10000E+10 0.77845E+00 0.10000E+10 + 0.80000E+03 0.12696E+01 0.12347E+01 0.10000E+10 0.79791E+00 0.10000E+10 + 0.75000E+03 0.11458E+01 0.13337E+01 0.10000E+10 0.81737E+00 0.10000E+10 + 0.70000E+03 0.10461E+01 0.14214E+01 0.10000E+10 0.83684E+00 0.10000E+10 + 0.65000E+03 0.98493E+00 0.15031E+01 0.10000E+10 0.92441E+00 0.10000E+10 + 0.60000E+03 0.95259E+00 0.15641E+01 0.10000E+10 0.10120E+01 0.10000E+10 + 0.55000E+03 0.93530E+00 0.15940E+01 0.10000E+10 0.10899E+01 0.10000E+10 + 0.50000E+03 0.92541E+00 0.15962E+01 0.10000E+10 0.11775E+01 0.10000E+10 + 0.45000E+03 0.92565E+00 0.16026E+01 0.10000E+10 0.12844E+01 0.10000E+10 + 0.40000E+03 0.94536E+00 0.16419E+01 0.10000E+10 0.14499E+01 0.10000E+10 + 0.35000E+03 0.99513E+00 0.17154E+01 0.10000E+10 0.15858E+01 0.10000E+10 + 0.30000E+03 0.10799E+01 0.17980E+01 0.10000E+10 0.18293E+01 0.10000E+10 + 0.25000E+03 0.11885E+01 0.18754E+01 0.10000E+10 0.24716E+01 0.10000E+10 + 0.20000E+03 0.12894E+01 0.19339E+01 0.10000E+10 0.26954E+01 0.10000E+10 + 0.15000E+03 0.13559E+01 0.19701E+01 0.10000E+10 0.31528E+01 0.10000E+10 + 0.10000E+03 0.13854E+01 0.19887E+01 0.10000E+10 0.38338E+01 0.10000E+10 + 0.75000E+02 0.13857E+01 0.19966E+01 0.10000E+10 0.48946E+01 0.10000E+10 + 0.50000E+02 0.13525E+01 0.19993E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.40000E+02 0.13019E+01 0.20000E+01 0.10000E+10 0.57703E+01 0.10000E+10 + 0.30000E+02 0.12818E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.13112E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.13698E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.14263E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.14654E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.14868E+01 0.20001E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.14964E+01 0.20004E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.14992E+01 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.14962E+01 0.19949E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 121 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 122 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 123 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 124 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 125 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 126 OBSERVATION TYPE + 0.11000E+04 0.24296E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.24261E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.23798E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.23022E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.22627E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.22817E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.22826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.21826E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.20092E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.18385E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.17169E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.16511E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.16306E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.16472E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17905E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.19016E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.19907E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.20094E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.19571E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.18864E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.18600E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.19104E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.20392E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22324E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.24605E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26741E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.28318E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.29263E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.29735E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.29931E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.29985E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.29924E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 127 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 128 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 129 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.10000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.95000E+03 0.11000E+01 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.90000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.85000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.80000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.75000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.70000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.65000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.60000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+01 0.10000E+10 + 0.55000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 130 OBSERVATION TYPE + 0.11000E+04 0.24618E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.24244E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.23481E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.22352E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.20999E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19647E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.18522E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17754E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17323E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17134E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17093E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17131E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17170E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17061E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.16550E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15397E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.13754E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.12567E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12116E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.12520E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.13700E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15010E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16004E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16588E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16865E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16969E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16998E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17001E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17003E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16999E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16956E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 131 OBSERVATION TYPE + 0.11000E+04 0.13385E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12190E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10515E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.87460E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.73725E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.66965E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.66362E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.66525E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.65262E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.63131E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.59435E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.54816E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.51139E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.49975E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.51952E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.59104E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.71862E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.85608E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.95397E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10124E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10103E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10055E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10021E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10005E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.99990E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99991E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10002E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99994E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99744E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 132 OBSERVATION TYPE + 0.11000E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.26291E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23549E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.22342E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.12685E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.12818E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.81442E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.66483E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.69405E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.50735E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.36023E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.52198E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.46408E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.88835E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.60699E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.42288E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.41536E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.71442E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.50865E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.80000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.90000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.95000E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.12500E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 133 OBSERVATION TYPE + 0.11000E+04 0.14088E+01 0.19455E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13361E+01 0.19064E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12395E+01 0.18488E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11379E+01 0.17877E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10505E+01 0.17342E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.98154E+00 0.16976E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.92451E+00 0.16777E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.87349E+00 0.16696E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.82829E+00 0.16605E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.79582E+00 0.16522E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.77562E+00 0.16637E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.75911E+00 0.17086E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.74080E+00 0.17791E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.72571E+00 0.18492E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.72719E+00 0.18996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.75204E+00 0.19294E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.80129E+00 0.19447E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.86960E+00 0.19597E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.93292E+00 0.19748E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.96720E+00 0.19866E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.98310E+00 0.19941E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.99132E+00 0.19979E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.99603E+00 0.19994E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.99854E+00 0.19999E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.99963E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.99997E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.99999E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.99995E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.99985E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.99958E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.99914E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.99869E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 134 OBSERVATION TYPE + 0.11000E+04 0.13806E+01 0.10178E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.12566E+01 0.90966E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.11252E+01 0.82655E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10055E+01 0.78617E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.90851E+00 0.78063E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.83495E+00 0.79308E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.78541E+00 0.81070E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.75802E+00 0.82841E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.74540E+00 0.84912E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.74532E+00 0.88692E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.76976E+00 0.95913E+00 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.83782E+00 0.10801E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.95649E+00 0.12459E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.11080E+01 0.14281E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.12625E+01 0.15959E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.13975E+01 0.17319E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15033E+01 0.18320E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15792E+01 0.19002E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.16299E+01 0.19437E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.16614E+01 0.19699E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.16799E+01 0.19847E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.16901E+01 0.19926E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16953E+01 0.19966E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16979E+01 0.19985E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16991E+01 0.19993E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16995E+01 0.19996E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16997E+01 0.19997E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16996E+01 0.19995E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16993E+01 0.19992E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16989E+01 0.19988E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16984E+01 0.19981E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16968E+01 0.19963E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.19899E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 135 OBSERVATION TYPE + 0.11000E+04 0.14544E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.13404E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.12300E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.11433E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10834E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10460E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10241E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10095E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.99605E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.97832E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.95123E+00 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.91277E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.86866E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.83423E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.82956E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.86953E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.95611E+00 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10780E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.12178E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.13527E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.14663E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15524E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.16121E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.16506E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.16737E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.16866E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.16934E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.16980E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.16984E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.16981E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.16967E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.16914E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 136 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 137 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 138 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 139 OBSERVATION TYPE + 0.11000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.25000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.23000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.21000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.19000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.17000E+01 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 + 140 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 141 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 142 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 143 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 144 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 145 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 146 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 147 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 148 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 149 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.90000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 150 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 151 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 152 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 153 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.20000E+01 + 154 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 155 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 156 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 157 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 158 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.80000E+01 + 159 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 + 160 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 161 OBSERVATION TYPE + 0.11000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.99000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.84250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.69500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.54750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 162 OBSERVATION TYPE + 0.11000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.45667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.44333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.43000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.41667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.40333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.39000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.39250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.39500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.39750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.43750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.42500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.41250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 163 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 164 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 165 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 166 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 167 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 168 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 169 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 170 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 171 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 172 OBSERVATION TYPE + 0.11000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.65667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.64333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.63000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.61667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.60333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.59000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.59250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.59500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.59750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.63750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.62500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.61250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.60000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 173 OBSERVATION TYPE + 0.11000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.76000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.74333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.72667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.71000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.69333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.67667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.66000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.67000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.68000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.69000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.70000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.68750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.67500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.66250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.65000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 174 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 175 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 176 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 177 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 178 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 179 OBSERVATION TYPE + 0.11000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.56000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.54333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.52667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.51000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.49333E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.47667E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.46000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.47000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.48000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.49000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.48750E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.47500E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.46250E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.45000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 180 OBSERVATION TYPE + 0.11000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.21253E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 181 OBSERVATION TYPE + 0.11000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.15056E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 182 OBSERVATION TYPE + 0.11000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10540E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 183 OBSERVATION TYPE + 0.11000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.26349E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 184 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 185 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 186 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 187 OBSERVATION TYPE + 0.11000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.50000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.45000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.40000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.22585E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 188 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.70000E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 189 OBSERVATION TYPE + 0.11000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10500E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.10000E+04 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.95000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.90000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.85000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.80000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.75000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.70000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.65000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.60000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.53890E+00 0.10000E+10 + 0.55000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.40000E+01 0.59120E+00 0.10000E+10 0.10000E+10 0.10000E+10 + 190 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 191 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.20000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 192 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 193 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 194 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 195 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 196 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 197 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 198 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 199 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 200 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 201 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 202 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 203 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 204 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 205 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 206 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 207 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 208 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 209 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 210 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 211 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 212 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 213 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 214 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 215 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 216 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 217 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 218 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 219 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 220 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 221 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.45378E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.31731E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.31827E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.57746E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.41757E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.44875E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.53540E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.43706E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.39567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.38573E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.43050E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.57301E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.44400E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.53824E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.54431E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.51026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.82180E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.88136E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50652E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.50465E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.64676E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 222 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 223 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.20694E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20468E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.20075E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19652E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19392E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19362E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19390E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19288E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.18947E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.18341E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.17469E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.16504E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15700E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15225E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15150E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15445E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15902E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.16377E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.16938E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.17914E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19945E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23461E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.28106E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32342E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.36912E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.37654E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.37924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.37995E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.38006E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.38008E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.37997E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.37902E+01 0.10000E+10 0.10000E+10 + 224 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.28617E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.27545E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26060E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24519E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23213E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.22446E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22396E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.22997E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24140E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.25663E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.27346E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.28938E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30317E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.31600E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32982E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35780E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.43349E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56961E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.74388E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.89893E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10045E+02 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10623E+02 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10883E+02 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10975E+02 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.11000E+02 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.11002E+02 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10999E+02 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10972E+02 0.10000E+10 0.10000E+10 + 225 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 226 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 227 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38103E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.39841E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.41510E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.42916E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.44065E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.44955E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45569E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.45933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.69196E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.92558E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.92998E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.93782E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.95024E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.96730E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.98780E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 1.00944E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 1.02930E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 1.04434E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 1.05204E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 1.05076E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 1.04010E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 1.02100E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.99550E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.96654E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.93720E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.91024E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.88760E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.87010E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.85762E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.84936E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.84420E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.84072E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.83666E+01 0.10000E+10 0.10000E+10 + 228 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.14000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37369E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23798E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.20756E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.33315E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.22269E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23933E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.28554E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23840E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.21478E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.21429E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23791E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32143E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25096E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.25985E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23328E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.22679E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.33118E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.34675E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.20456E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.25233E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.33127E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.21000E+01 0.10000E+10 0.10000E+10 + 229 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.17721E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.20338E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.22927E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.24559E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.25377E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.25705E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.25557E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.25239E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.24846E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.24369E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.24098E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.24330E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.25005E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.25682E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.25950E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26020E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26262E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26879E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.27566E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.27674E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.27115E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26363E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.25409E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.24103E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.22838E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.21916E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.21381E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.21126E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.21029E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.21003E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.21002E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.20998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.20946E+01 0.10000E+10 0.10000E+10 + 230 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.32951E+01 0.10000E+10 0.10000E+10 + 231 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.56567E+01 0.10000E+10 0.10000E+10 + 232 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.33133E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.40029E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.47167E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.51420E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.51372E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.48225E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.43831E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.39783E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.37330E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.36483E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.36557E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.36653E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.36168E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.34788E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.32246E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.29305E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.27079E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26026E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.25883E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26008E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26158E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26346E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26564E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26754E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26882E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26953E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26985E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26995E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26999E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.27001E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.27005E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26998E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26931E+01 0.10000E+10 0.10000E+10 + 233 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.23214E+01 0.10000E+10 0.10000E+10 + 234 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38901E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.37615E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37452E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38681E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.40863E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.43283E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.45455E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.47094E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.48036E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.48388E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.48463E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.48723E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.49327E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50201E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.51193E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.52166E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.53020E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.53703E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.54203E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.54540E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.54750E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.54872E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.54938E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.54971E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54992E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54991E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54986E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54978E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54965E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54947E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54897E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 235 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.39845E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38612E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.37929E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.37968E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38561E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.39456E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.40321E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.40893E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.41115E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.41030E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40690E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40240E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.39821E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.39532E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.39523E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.40010E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.41203E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.43179E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.45673E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.48193E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.50368E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.52042E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.53219E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.53986E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.54452E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.54718E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.54858E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.54924E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.54950E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.54954E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.54942E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.54895E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.54720E+01 0.10000E+10 0.10000E+10 + 236 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 237 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 238 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 239 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.55000E+01 0.10000E+10 0.10000E+10 + 240 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 241 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 242 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 243 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 244 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 245 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 246 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 247 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 248 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 249 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 250 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 251 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 252 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 253 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 254 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 255 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 256 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 257 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.38000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.39000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 258 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 259 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.40000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.41000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.50000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.60000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.63000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.66000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.70000E+01 0.10000E+10 0.10000E+10 + 260 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 261 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.35000E+01 0.10000E+10 0.10000E+10 + 262 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 263 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 264 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 265 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 266 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 267 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 268 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 269 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 270 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 271 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 272 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 273 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 274 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 275 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 276 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 277 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 278 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 279 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 280 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.26280E+01 0.10000E+10 0.10000E+10 + 281 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 282 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 283 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 284 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 285 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 286 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10790E+01 0.10000E+10 0.10000E+10 + 287 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.15874E+01 0.10000E+10 0.10000E+10 + 288 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.30000E+01 0.10000E+10 0.10000E+10 + 289 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.19278E+01 0.10000E+10 0.10000E+10 + 290 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 291 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 292 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 293 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 294 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 295 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 296 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 297 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 298 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 299 OBSERVATION TYPE + 0.11000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10500E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+04 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.95000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.90000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.85000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.80000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.70000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.65000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.60000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.55000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.45000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.35000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.25000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.15000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+03 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.75000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+02 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.50000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.40000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.30000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.20000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.10000E+01 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 + 0.00000E+00 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 0.10000E+10 diff --git a/fix/gsi/nam_regional_satinfo.txt b/fix/gsi/nam_regional_satinfo.txt new file mode 100755 index 000000000..de42cb9f2 --- /dev/null +++ b/fix/gsi/nam_regional_satinfo.txt @@ -0,0 +1,1573 @@ +!sensor/instr/sat chan iuse error error_cld ermax var_b var_pg + amsua_n15 1 1 3.000 9.100 4.500 10.000 0.000 + amsua_n15 2 1 2.000 13.500 4.500 10.000 0.000 + amsua_n15 3 1 2.000 7.100 4.500 10.000 0.000 + amsua_n15 4 1 0.600 1.300 2.500 10.000 0.000 + amsua_n15 5 1 0.300 0.550 2.000 10.000 0.000 + amsua_n15 6 1 0.230 0.230 2.000 10.000 0.000 + amsua_n15 7 1 0.250 0.195 2.000 10.000 0.000 + amsua_n15 8 1 0.275 0.232 2.000 10.000 0.000 + amsua_n15 9 1 0.340 0.235 2.000 10.000 0.000 + amsua_n15 10 1 0.400 0.237 2.000 10.000 0.000 + amsua_n15 11 -1 0.600 0.270 2.500 10.000 0.000 + amsua_n15 12 1 1.000 0.385 3.500 10.000 0.000 + amsua_n15 13 1 1.500 0.520 4.500 10.000 0.000 + amsua_n15 14 -1 2.000 1.400 4.500 10.000 0.000 + amsua_n15 15 1 3.000 10.000 4.500 10.000 0.000 + hirs3_n17 1 -1 2.000 0.000 4.500 10.000 0.000 + hirs3_n17 2 1 0.600 0.000 2.500 10.000 0.000 + hirs3_n17 3 1 0.530 0.000 2.500 10.000 0.000 + hirs3_n17 4 1 0.400 0.000 2.000 10.000 0.000 + hirs3_n17 5 1 0.360 0.000 2.000 10.000 0.000 + hirs3_n17 6 1 0.460 0.000 2.000 10.000 0.000 + hirs3_n17 7 1 0.570 0.000 2.500 10.000 0.000 + hirs3_n17 8 1 1.000 0.000 3.000 10.000 0.000 + hirs3_n17 9 1 1.100 0.000 3.500 10.000 0.000 + hirs3_n17 10 1 0.600 0.000 2.500 10.000 0.000 + hirs3_n17 11 1 1.200 0.000 3.500 10.000 0.000 + hirs3_n17 12 1 1.600 0.000 4.500 10.000 0.000 + hirs3_n17 13 1 0.364 0.000 2.000 10.000 0.000 + hirs3_n17 14 1 0.260 0.000 2.000 10.000 0.000 + hirs3_n17 15 1 0.260 0.000 2.000 10.000 0.000 + hirs3_n17 16 -1 1.000 0.000 3.500 10.000 0.000 + hirs3_n17 17 -1 2.000 0.000 4.500 10.000 0.000 + hirs3_n17 18 -1 2.000 0.000 4.500 10.000 0.000 + hirs3_n17 19 -1 2.000 0.000 4.500 10.000 0.000 + amsua_n18 1 1 2.500 9.100 4.500 10.000 0.000 + amsua_n18 2 1 2.000 13.500 4.500 10.000 0.000 + amsua_n18 3 1 2.000 7.100 4.500 10.000 0.000 + amsua_n18 4 1 0.550 1.300 2.500 10.000 0.000 + amsua_n18 5 1 0.300 0.550 2.000 10.000 0.000 + amsua_n18 6 1 0.230 0.230 2.000 10.000 0.000 + amsua_n18 7 1 0.230 0.195 2.000 10.000 0.000 + amsua_n18 8 1 0.250 0.232 2.000 10.000 0.000 + amsua_n18 9 -1 0.250 0.235 2.000 10.000 0.000 + amsua_n18 10 1 0.350 0.237 2.000 10.000 0.000 + amsua_n18 11 1 0.400 0.270 2.500 10.000 0.000 + amsua_n18 12 1 0.550 0.385 3.500 10.000 0.000 + amsua_n18 13 1 0.800 0.520 4.500 10.000 0.000 + amsua_n18 14 -1 3.000 1.400 4.500 10.000 0.000 + amsua_n18 15 1 2.500 10.000 4.500 10.000 0.000 + mhs_n18 1 1 2.500 0.000 6.000 10.000 0.000 + mhs_n18 2 1 2.500 0.000 6.000 10.000 0.000 + mhs_n18 3 1 2.500 0.000 6.000 10.000 0.000 + mhs_n18 4 1 2.000 0.000 6.000 10.000 0.000 + mhs_n18 5 1 2.000 0.000 6.000 10.000 0.000 + hirs4_metop-a 1 -1 2.500 0.000 4.500 10.000 0.000 + hirs4_metop-a 2 1 0.600 0.000 2.500 10.000 0.000 + hirs4_metop-a 3 1 0.530 0.000 2.500 10.000 0.000 + hirs4_metop-a 4 1 0.400 0.000 2.000 10.000 0.000 + hirs4_metop-a 5 1 0.360 0.000 2.000 10.000 0.000 + hirs4_metop-a 6 1 0.460 0.000 2.000 10.000 0.000 + hirs4_metop-a 7 1 0.570 0.000 2.500 10.000 0.000 + hirs4_metop-a 8 1 1.000 0.000 3.000 10.000 0.000 + hirs4_metop-a 9 1 1.100 0.000 3.500 10.000 0.000 + hirs4_metop-a 10 1 0.600 0.000 2.500 10.000 0.000 + hirs4_metop-a 11 1 1.200 0.000 4.500 10.000 0.000 + hirs4_metop-a 12 1 1.600 0.000 4.500 10.000 0.000 + hirs4_metop-a 13 1 0.364 0.000 2.000 10.000 0.000 + hirs4_metop-a 14 1 0.260 0.000 2.000 10.000 0.000 + hirs4_metop-a 15 1 0.260 0.000 2.000 10.000 0.000 + hirs4_metop-a 16 -1 1.000 0.000 3.500 10.000 0.000 + hirs4_metop-a 17 -1 2.000 0.000 4.500 10.000 0.000 + hirs4_metop-a 18 -1 2.000 0.000 4.500 10.000 0.000 + hirs4_metop-a 19 -1 2.000 0.000 4.500 10.000 0.000 + amsua_metop-a 1 1 2.500 9.100 4.500 10.000 0.000 + amsua_metop-a 2 1 2.000 13.500 4.500 10.000 0.000 + amsua_metop-a 3 1 2.000 7.100 4.500 10.000 0.000 + amsua_metop-a 4 1 0.550 1.300 2.500 10.000 0.000 + amsua_metop-a 5 1 0.300 0.550 2.000 10.000 0.000 + amsua_metop-a 6 1 0.230 0.230 2.000 10.000 0.000 + amsua_metop-a 7 -1 0.230 0.195 2.000 10.000 0.000 + amsua_metop-a 8 1 0.250 0.232 2.000 10.000 0.000 + amsua_metop-a 9 1 0.250 0.235 2.000 10.000 0.000 + amsua_metop-a 10 1 0.350 0.237 2.000 10.000 0.000 + amsua_metop-a 11 1 0.400 0.270 2.500 10.000 0.000 + amsua_metop-a 12 1 0.550 0.385 3.500 10.000 0.000 + amsua_metop-a 13 1 0.800 0.520 4.500 10.000 0.000 + amsua_metop-a 14 -1 3.000 1.400 4.500 10.000 0.000 + amsua_metop-a 15 1 2.500 10.000 4.500 10.000 0.000 + mhs_metop-a 1 1 2.500 0.000 6.000 10.000 0.000 + mhs_metop-a 2 1 2.500 0.000 6.000 10.000 0.000 + mhs_metop-a 3 1 2.500 0.000 6.000 10.000 0.000 + mhs_metop-a 4 1 2.000 0.000 6.000 10.000 0.000 + mhs_metop-a 5 1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 16 1 1.380 0.000 3.000 10.000 0.000 + iasi616_metop-a 29 -1 0.810 0.000 2.000 10.000 0.000 + iasi616_metop-a 32 -1 0.750 0.000 2.000 10.000 0.000 + iasi616_metop-a 35 -1 0.790 0.000 2.000 10.000 0.000 + iasi616_metop-a 38 1 0.720 0.000 2.000 10.000 0.000 + iasi616_metop-a 41 -1 0.740 0.000 2.000 10.000 0.000 + iasi616_metop-a 44 -1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 47 -1 0.720 0.000 2.000 10.000 0.000 + iasi616_metop-a 49 1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 50 -1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 51 1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 53 -1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 55 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 56 -1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 57 1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 59 1 0.670 0.000 2.000 10.000 0.000 + iasi616_metop-a 61 1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 62 -1 0.610 0.000 2.000 10.000 0.000 + iasi616_metop-a 63 1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 66 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 68 -1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 70 1 0.760 0.000 2.000 10.000 0.000 + iasi616_metop-a 72 1 1.220 0.000 4.000 10.000 0.000 + iasi616_metop-a 74 1 0.780 0.000 2.000 10.000 0.000 + iasi616_metop-a 76 -1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 78 -1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 79 1 0.610 0.000 2.000 10.000 0.000 + iasi616_metop-a 81 1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 82 -1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 83 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 84 -1 0.610 0.000 2.000 10.000 0.000 + iasi616_metop-a 85 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 86 -1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 87 1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 89 -1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 92 -1 4.380 0.000 2.000 10.000 0.000 + iasi616_metop-a 93 -1 3.050 0.000 2.000 10.000 0.000 + iasi616_metop-a 95 -1 2.310 0.000 2.000 10.000 0.000 + iasi616_metop-a 97 -1 1.560 0.000 4.000 10.000 0.000 + iasi616_metop-a 99 -1 1.330 0.000 4.000 10.000 0.000 + iasi616_metop-a 101 -1 1.580 0.000 3.500 10.000 0.000 + iasi616_metop-a 103 -1 0.930 0.000 2.500 10.000 0.000 + iasi616_metop-a 104 1 1.670 0.000 2.000 10.000 0.000 + iasi616_metop-a 106 1 0.720 0.000 2.000 10.000 0.000 + iasi616_metop-a 109 1 0.570 0.000 2.000 10.000 0.000 + iasi616_metop-a 110 -1 0.580 0.000 2.000 10.000 0.000 + iasi616_metop-a 111 1 0.550 0.000 2.000 10.000 0.000 + iasi616_metop-a 113 1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 116 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 119 1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 122 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 125 1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 128 1 0.580 0.000 2.000 10.000 0.000 + iasi616_metop-a 131 1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 133 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 135 1 0.580 0.000 2.000 10.000 0.000 + iasi616_metop-a 138 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 141 1 0.550 0.000 2.000 10.000 0.000 + iasi616_metop-a 144 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 146 1 0.500 0.000 2.000 10.000 0.000 + iasi616_metop-a 148 1 0.820 0.000 2.000 10.000 0.000 + iasi616_metop-a 150 -1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 151 1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 154 1 0.510 0.000 2.000 10.000 0.000 + iasi616_metop-a 157 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 159 1 0.520 0.000 2.000 10.000 0.000 + iasi616_metop-a 160 -1 0.510 0.000 2.000 10.000 0.000 + iasi616_metop-a 161 1 0.510 0.000 2.000 10.000 0.000 + iasi616_metop-a 163 1 0.760 0.000 2.000 10.000 0.000 + iasi616_metop-a 167 1 0.520 0.000 2.000 10.000 0.000 + iasi616_metop-a 170 1 0.570 0.000 2.000 10.000 0.000 + iasi616_metop-a 173 1 0.550 0.000 2.000 10.000 0.000 + iasi616_metop-a 176 1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 179 -1 0.580 0.000 2.000 10.000 0.000 + iasi616_metop-a 180 1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 185 1 0.610 0.000 2.000 10.000 0.000 + iasi616_metop-a 187 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 191 -1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 193 1 0.760 0.000 2.000 10.000 0.000 + iasi616_metop-a 197 -1 0.720 0.000 2.000 10.000 0.000 + iasi616_metop-a 199 1 1.050 0.000 3.500 10.000 0.000 + iasi616_metop-a 200 -1 0.750 0.000 2.000 10.000 0.000 + iasi616_metop-a 202 -1 0.510 0.000 2.000 10.000 0.000 + iasi616_metop-a 203 -1 0.650 0.000 2.000 10.000 0.000 + iasi616_metop-a 205 1 1.300 0.000 2.000 10.000 0.000 + iasi616_metop-a 207 1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 210 1 0.930 0.000 2.000 10.000 0.000 + iasi616_metop-a 212 1 1.490 0.000 3.000 10.000 0.000 + iasi616_metop-a 213 -1 1.120 0.000 2.000 10.000 0.000 + iasi616_metop-a 214 1 0.680 0.000 2.000 10.000 0.000 + iasi616_metop-a 217 1 0.660 0.000 2.000 10.000 0.000 + iasi616_metop-a 218 -1 0.670 0.000 2.000 10.000 0.000 + iasi616_metop-a 219 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 222 1 0.590 0.000 2.000 10.000 0.000 + iasi616_metop-a 224 1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 225 -1 0.670 0.000 2.000 10.000 0.000 + iasi616_metop-a 226 1 0.640 0.000 2.000 10.000 0.000 + iasi616_metop-a 228 -1 0.620 0.000 2.000 10.000 0.000 + iasi616_metop-a 230 1 0.720 0.000 2.000 10.000 0.000 + iasi616_metop-a 231 -1 0.690 0.000 2.000 10.000 0.000 + iasi616_metop-a 232 1 0.660 0.000 2.000 10.000 0.000 + iasi616_metop-a 236 1 0.790 0.000 2.000 10.000 0.000 + iasi616_metop-a 237 -1 0.780 0.000 2.000 10.000 0.000 + iasi616_metop-a 239 1 0.740 0.000 2.000 10.000 0.000 + iasi616_metop-a 243 1 0.880 0.000 2.500 10.000 0.000 + iasi616_metop-a 246 1 0.770 0.000 2.000 10.000 0.000 + iasi616_metop-a 249 1 0.880 0.000 2.500 10.000 0.000 + iasi616_metop-a 252 1 0.860 0.000 2.500 10.000 0.000 + iasi616_metop-a 254 1 1.000 0.000 3.000 10.000 0.000 + iasi616_metop-a 259 -1 0.870 0.000 2.500 10.000 0.000 + iasi616_metop-a 260 1 0.850 0.000 2.500 10.000 0.000 + iasi616_metop-a 262 1 0.880 0.000 2.500 10.000 0.000 + iasi616_metop-a 265 1 0.840 0.000 2.500 10.000 0.000 + iasi616_metop-a 267 1 0.840 0.000 3.500 10.000 0.000 + iasi616_metop-a 269 1 0.840 0.000 2.500 10.000 0.000 + iasi616_metop-a 275 1 0.800 0.000 2.500 10.000 0.000 + iasi616_metop-a 279 -1 0.800 0.000 3.000 10.000 0.000 + iasi616_metop-a 282 1 0.870 0.000 3.500 10.000 0.000 + iasi616_metop-a 285 -1 0.980 0.000 3.000 10.000 0.000 + iasi616_metop-a 294 1 0.520 0.000 4.000 10.000 0.000 + iasi616_metop-a 296 1 0.650 0.000 4.000 10.000 0.000 + iasi616_metop-a 299 1 0.690 0.000 4.000 10.000 0.000 + iasi616_metop-a 300 -1 0.610 0.000 4.000 10.000 0.000 + iasi616_metop-a 303 1 0.600 0.000 4.000 10.000 0.000 + iasi616_metop-a 306 1 0.670 0.000 4.000 10.000 0.000 + iasi616_metop-a 309 -1 0.790 0.000 4.500 10.000 0.000 + iasi616_metop-a 313 -1 0.620 0.000 4.500 10.000 0.000 + iasi616_metop-a 320 -1 0.660 0.000 4.500 10.000 0.000 + iasi616_metop-a 323 1 0.700 0.000 4.500 10.000 0.000 + iasi616_metop-a 326 -1 0.650 0.000 4.500 10.000 0.000 + iasi616_metop-a 327 1 0.620 0.000 4.000 10.000 0.000 + iasi616_metop-a 329 1 0.610 0.000 4.500 10.000 0.000 + iasi616_metop-a 332 -1 0.620 0.000 4.000 10.000 0.000 + iasi616_metop-a 335 1 0.530 0.000 4.000 10.000 0.000 + iasi616_metop-a 345 1 0.600 0.000 4.500 10.000 0.000 + iasi616_metop-a 347 1 0.680 0.000 2.500 10.000 0.000 + iasi616_metop-a 350 1 0.950 0.000 3.000 10.000 0.000 + iasi616_metop-a 354 1 0.630 0.000 2.500 10.000 0.000 + iasi616_metop-a 356 1 0.970 0.000 3.000 10.000 0.000 + iasi616_metop-a 360 1 0.650 0.000 2.500 10.000 0.000 + iasi616_metop-a 363 -1 0.980 0.000 3.000 10.000 0.000 + iasi616_metop-a 366 1 0.580 0.000 2.000 10.000 0.000 + iasi616_metop-a 371 1 0.730 0.000 2.500 10.000 0.000 + iasi616_metop-a 372 -1 0.650 0.000 2.500 10.000 0.000 + iasi616_metop-a 373 1 0.850 0.000 3.000 10.000 0.000 + iasi616_metop-a 375 1 0.990 0.000 3.000 10.000 0.000 + iasi616_metop-a 377 1 0.760 0.000 2.500 10.000 0.000 + iasi616_metop-a 379 1 0.850 0.000 3.000 10.000 0.000 + iasi616_metop-a 381 1 0.970 0.000 3.000 10.000 0.000 + iasi616_metop-a 383 1 0.770 0.000 3.000 10.000 0.000 + iasi616_metop-a 386 1 0.620 0.000 2.500 10.000 0.000 + iasi616_metop-a 389 1 0.630 0.000 2.500 10.000 0.000 + iasi616_metop-a 398 1 1.210 0.000 4.000 10.000 0.000 + iasi616_metop-a 401 1 1.410 0.000 4.500 10.000 0.000 + iasi616_metop-a 404 1 1.550 0.000 4.500 10.000 0.000 + iasi616_metop-a 405 -1 1.780 0.000 5.000 10.000 0.000 + iasi616_metop-a 407 1 1.350 0.000 4.000 10.000 0.000 + iasi616_metop-a 408 -1 1.140 0.000 4.000 10.000 0.000 + iasi616_metop-a 410 1 1.690 0.000 5.000 10.000 0.000 + iasi616_metop-a 411 -1 1.790 0.000 5.000 10.000 0.000 + iasi616_metop-a 414 1 1.460 0.000 5.000 10.000 0.000 + iasi616_metop-a 416 1 1.630 0.000 5.000 10.000 0.000 + iasi616_metop-a 418 -1 1.940 0.000 5.500 10.000 0.000 + iasi616_metop-a 423 -1 2.010 0.000 5.500 10.000 0.000 + iasi616_metop-a 426 1 1.240 0.000 4.000 10.000 0.000 + iasi616_metop-a 428 1 1.760 0.000 5.000 10.000 0.000 + iasi616_metop-a 432 1 1.260 0.000 4.000 10.000 0.000 + iasi616_metop-a 433 -1 1.470 0.000 4.500 10.000 0.000 + iasi616_metop-a 434 1 1.900 0.000 5.500 10.000 0.000 + iasi616_metop-a 439 1 1.660 0.000 5.500 10.000 0.000 + iasi616_metop-a 442 -1 2.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 445 1 1.490 0.000 4.500 10.000 0.000 + iasi616_metop-a 450 -1 1.520 0.000 4.500 10.000 0.000 + iasi616_metop-a 457 1 1.550 0.000 4.000 10.000 0.000 + iasi616_metop-a 459 -1 1.960 0.000 5.000 10.000 0.000 + iasi616_metop-a 472 -1 2.310 0.000 5.000 10.000 0.000 + iasi616_metop-a 477 -1 2.330 0.000 6.000 10.000 0.000 + iasi616_metop-a 483 -1 2.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 509 -1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 515 1 2.330 0.000 6.000 10.000 0.000 + iasi616_metop-a 546 1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 552 1 2.330 0.000 6.000 10.000 0.000 + iasi616_metop-a 559 1 1.840 0.000 6.000 10.000 0.000 + iasi616_metop-a 566 1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 571 1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 573 1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 578 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 584 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 594 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 625 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 646 1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 662 1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 668 1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 705 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 739 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 756 1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 797 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 867 1 2.300 0.000 6.000 10.000 0.000 + iasi616_metop-a 906 1 2.150 0.000 6.000 10.000 0.000 + iasi616_metop-a 921 1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 1027 1 2.370 0.000 6.000 10.000 0.000 + iasi616_metop-a 1046 1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 1090 -1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 1098 -1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 1121 1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 1133 1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 1173 -1 2.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 1191 1 2.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 1194 1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 1222 -1 2.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 1271 1 2.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 1283 -1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 1338 -1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 1409 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 1414 -1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 1420 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 1424 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 1427 -1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 1430 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 1434 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 1440 -1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 1442 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 1445 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 1450 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 1454 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 1460 -1 2.170 0.000 6.000 10.000 0.000 + iasi616_metop-a 1463 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 1469 -1 2.170 0.000 6.000 10.000 0.000 + iasi616_metop-a 1474 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 1479 1 1.990 0.000 6.000 10.000 0.000 + iasi616_metop-a 1483 -1 2.160 0.000 6.000 10.000 0.000 + iasi616_metop-a 1487 -1 2.200 0.000 6.000 10.000 0.000 + iasi616_metop-a 1494 -1 2.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 1496 -1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 1502 -1 2.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 1505 -1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 1509 1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 1510 -1 2.110 0.000 6.000 10.000 0.000 + iasi616_metop-a 1513 1 2.090 0.000 6.000 10.000 0.000 + iasi616_metop-a 1518 -1 2.090 0.000 6.000 10.000 0.000 + iasi616_metop-a 1521 1 2.080 0.000 6.000 10.000 0.000 + iasi616_metop-a 1526 -1 2.090 0.000 6.000 10.000 0.000 + iasi616_metop-a 1529 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 1532 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 1536 1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 1537 -1 2.010 0.000 6.000 10.000 0.000 + iasi616_metop-a 1541 -1 2.050 0.000 6.000 10.000 0.000 + iasi616_metop-a 1545 -1 2.030 0.000 6.000 10.000 0.000 + iasi616_metop-a 1548 -1 2.060 0.000 6.000 10.000 0.000 + iasi616_metop-a 1553 -1 1.980 0.000 6.000 10.000 0.000 + iasi616_metop-a 1560 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 1568 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 1574 1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 1579 1 1.700 0.000 6.000 10.000 0.000 + iasi616_metop-a 1583 -1 1.760 0.000 6.000 10.000 0.000 + iasi616_metop-a 1585 1 1.770 0.000 6.000 10.000 0.000 + iasi616_metop-a 1587 1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 1606 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 1626 1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 1639 1 1.990 0.000 6.000 10.000 0.000 + iasi616_metop-a 1643 1 1.990 0.000 6.000 10.000 0.000 + iasi616_metop-a 1652 1 2.070 0.000 6.000 10.000 0.000 + iasi616_metop-a 1658 1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 1659 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 1666 -1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 1671 1 2.060 0.000 6.000 10.000 0.000 + iasi616_metop-a 1675 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 1681 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 1694 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 1697 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 1710 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 1786 1 1.980 0.000 6.000 10.000 0.000 + iasi616_metop-a 1791 -1 2.200 0.000 6.000 10.000 0.000 + iasi616_metop-a 1805 1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 1839 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 1884 1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 1913 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 1946 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 1947 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 1991 1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 2019 1 1.800 0.000 6.000 10.000 0.000 + iasi616_metop-a 2094 1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 2119 1 1.730 0.000 6.000 10.000 0.000 + iasi616_metop-a 2213 1 1.730 0.000 6.000 10.000 0.000 + iasi616_metop-a 2239 1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 2271 1 1.670 0.000 6.000 10.000 0.000 + iasi616_metop-a 2289 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 2321 1 1.720 0.000 6.000 10.000 0.000 + iasi616_metop-a 2333 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 2346 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 2349 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 2352 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 2359 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 2367 -1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 2374 -1 2.170 0.000 6.000 10.000 0.000 + iasi616_metop-a 2398 1 1.740 0.000 6.000 10.000 0.000 + iasi616_metop-a 2426 -1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 2562 -1 1.880 0.000 6.000 10.000 0.000 + iasi616_metop-a 2701 1 1.670 0.000 6.000 10.000 0.000 + iasi616_metop-a 2741 -1 1.730 0.000 6.000 10.000 0.000 + iasi616_metop-a 2745 -1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 2760 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 2819 -1 1.730 0.000 6.000 10.000 0.000 + iasi616_metop-a 2889 -1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 2907 -1 2.190 0.000 6.000 10.000 0.000 + iasi616_metop-a 2910 -1 1.840 0.000 6.000 10.000 0.000 + iasi616_metop-a 2919 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 2921 -1 1.600 0.000 6.000 10.000 0.000 + iasi616_metop-a 2939 -1 1.710 0.000 6.000 10.000 0.000 + iasi616_metop-a 2944 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 2945 -1 1.850 0.000 6.000 10.000 0.000 + iasi616_metop-a 2948 -1 1.840 0.000 6.000 10.000 0.000 + iasi616_metop-a 2951 -1 1.870 0.000 6.000 10.000 0.000 + iasi616_metop-a 2958 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 2971 -1 1.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 2977 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 2985 -1 1.870 0.000 6.000 10.000 0.000 + iasi616_metop-a 2988 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 2990 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 2991 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 2993 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3002 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 3008 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3014 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 3027 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 3029 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 3030 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3036 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 3047 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3049 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3052 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3053 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3055 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3058 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3064 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3069 -1 1.770 0.000 6.000 10.000 0.000 + iasi616_metop-a 3087 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3093 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 3098 -1 1.190 0.000 6.000 10.000 0.000 + iasi616_metop-a 3105 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3107 -1 1.980 0.000 6.000 10.000 0.000 + iasi616_metop-a 3110 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3116 -1 1.550 0.000 6.000 10.000 0.000 + iasi616_metop-a 3127 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3129 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3136 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3146 -1 1.970 0.000 6.000 10.000 0.000 + iasi616_metop-a 3151 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3160 -1 1.990 0.000 6.000 10.000 0.000 + iasi616_metop-a 3165 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 3168 -1 1.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 3175 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3178 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3189 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 3207 -1 1.850 0.000 6.000 10.000 0.000 + iasi616_metop-a 3228 -1 1.840 0.000 6.000 10.000 0.000 + iasi616_metop-a 3244 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3248 -1 1.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 3252 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 3256 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 3263 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 3281 -1 1.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 3295 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3303 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3309 -1 1.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 3312 -1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 3322 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3326 -1 1.360 0.000 6.000 10.000 0.000 + iasi616_metop-a 3354 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3366 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 3375 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3378 -1 1.680 0.000 6.000 10.000 0.000 + iasi616_metop-a 3411 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3416 -1 1.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 3432 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3438 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3440 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 3442 -1 1.410 0.000 5.500 10.000 0.000 + iasi616_metop-a 3444 -1 1.160 0.000 4.500 10.000 0.000 + iasi616_metop-a 3446 -1 1.600 0.000 6.000 10.000 0.000 + iasi616_metop-a 3448 -1 1.250 0.000 5.000 10.000 0.000 + iasi616_metop-a 3450 -1 1.200 0.000 5.000 10.000 0.000 + iasi616_metop-a 3452 -1 1.650 0.000 6.000 10.000 0.000 + iasi616_metop-a 3454 -1 1.660 0.000 6.000 10.000 0.000 + iasi616_metop-a 3458 -1 1.870 0.000 6.000 10.000 0.000 + iasi616_metop-a 3467 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3476 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 3484 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3491 -1 1.250 0.000 5.000 10.000 0.000 + iasi616_metop-a 3497 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 3499 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3504 -1 1.700 0.000 6.000 10.000 0.000 + iasi616_metop-a 3506 -1 0.990 0.000 4.000 10.000 0.000 + iasi616_metop-a 3509 -1 1.810 0.000 6.000 10.000 0.000 + iasi616_metop-a 3518 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 3527 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 3555 -1 1.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 3575 -1 1.470 0.000 4.500 10.000 0.000 + iasi616_metop-a 3577 -1 1.150 0.000 6.000 10.000 0.000 + iasi616_metop-a 3580 -1 1.580 0.000 6.000 10.000 0.000 + iasi616_metop-a 3582 -1 1.180 0.000 4.500 10.000 0.000 + iasi616_metop-a 3586 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 3589 -1 1.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 3599 -1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 3610 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3626 -1 1.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 3638 -1 1.270 0.000 5.000 10.000 0.000 + iasi616_metop-a 3646 -1 1.910 0.000 6.000 10.000 0.000 + iasi616_metop-a 3653 -1 1.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 3658 -1 1.600 0.000 6.000 10.000 0.000 + iasi616_metop-a 3661 -1 1.290 0.000 5.000 10.000 0.000 + iasi616_metop-a 3673 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3689 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3700 -1 1.230 0.000 5.000 10.000 0.000 + iasi616_metop-a 3710 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 3726 -1 1.210 0.000 5.000 10.000 0.000 + iasi616_metop-a 3763 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 3814 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 3841 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 3888 -1 1.330 0.000 5.000 10.000 0.000 + iasi616_metop-a 4032 -1 1.750 0.000 6.000 10.000 0.000 + iasi616_metop-a 4059 -1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 4068 -1 1.980 0.000 6.000 10.000 0.000 + iasi616_metop-a 4082 -1 2.030 0.000 6.000 10.000 0.000 + iasi616_metop-a 4095 -1 1.830 0.000 6.000 10.000 0.000 + iasi616_metop-a 4160 -1 1.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 4234 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 4257 -1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 4411 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 4498 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 4520 -1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 4552 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 4567 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 4608 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 4646 -1 1.950 0.000 6.000 10.000 0.000 + iasi616_metop-a 4698 -1 1.990 0.000 6.000 10.000 0.000 + iasi616_metop-a 4808 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 4849 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 4920 -1 1.960 0.000 6.000 10.000 0.000 + iasi616_metop-a 4939 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 4947 -1 1.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 4967 -1 1.880 0.000 6.000 10.000 0.000 + iasi616_metop-a 4991 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 4996 -1 1.840 0.000 6.000 10.000 0.000 + iasi616_metop-a 5015 -1 1.870 0.000 6.000 10.000 0.000 + iasi616_metop-a 5028 -1 1.770 0.000 6.000 10.000 0.000 + iasi616_metop-a 5056 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 5128 -1 1.890 0.000 6.000 10.000 0.000 + iasi616_metop-a 5130 -1 1.880 0.000 6.000 10.000 0.000 + iasi616_metop-a 5144 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 5170 -1 1.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 5178 -1 1.790 0.000 6.000 10.000 0.000 + iasi616_metop-a 5183 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 5188 -1 2.060 0.000 6.000 10.000 0.000 + iasi616_metop-a 5191 -1 2.330 0.000 6.000 10.000 0.000 + iasi616_metop-a 5368 -1 1.880 0.000 6.000 10.000 0.000 + iasi616_metop-a 5371 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 5379 -1 1.810 0.000 6.000 10.000 0.000 + iasi616_metop-a 5381 -1 1.800 0.000 6.000 10.000 0.000 + iasi616_metop-a 5383 -1 1.800 0.000 6.000 10.000 0.000 + iasi616_metop-a 5397 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 5399 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 5401 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 5403 -1 2.060 0.000 6.000 10.000 0.000 + iasi616_metop-a 5405 -1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 5446 -1 2.200 0.000 6.000 10.000 0.000 + iasi616_metop-a 5455 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 5472 -1 2.160 0.000 6.000 10.000 0.000 + iasi616_metop-a 5480 -1 1.980 0.000 6.000 10.000 0.000 + iasi616_metop-a 5483 -1 1.800 0.000 6.000 10.000 0.000 + iasi616_metop-a 5485 -1 1.800 0.000 6.000 10.000 0.000 + iasi616_metop-a 5492 -1 1.850 0.000 6.000 10.000 0.000 + iasi616_metop-a 5497 -1 1.750 0.000 6.000 10.000 0.000 + iasi616_metop-a 5502 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 5507 -1 2.190 0.000 6.000 10.000 0.000 + iasi616_metop-a 5509 -1 2.140 0.000 6.000 10.000 0.000 + iasi616_metop-a 5517 -1 2.190 0.000 6.000 10.000 0.000 + iasi616_metop-a 5528 -1 1.860 0.000 6.000 10.000 0.000 + iasi616_metop-a 5558 -1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 5697 -1 2.110 0.000 6.000 10.000 0.000 + iasi616_metop-a 5714 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 5749 -1 2.030 0.000 6.000 10.000 0.000 + iasi616_metop-a 5766 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 5785 -1 2.190 0.000 6.000 10.000 0.000 + iasi616_metop-a 5798 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 5799 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 5801 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 5817 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 5833 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 5834 -1 2.330 0.000 6.000 10.000 0.000 + iasi616_metop-a 5836 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 5849 -1 2.210 0.000 6.000 10.000 0.000 + iasi616_metop-a 5851 -1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 5852 -1 2.230 0.000 6.000 10.000 0.000 + iasi616_metop-a 5865 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 5869 -1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 5881 -1 1.880 0.000 6.000 10.000 0.000 + iasi616_metop-a 5884 -1 2.260 0.000 6.000 10.000 0.000 + iasi616_metop-a 5897 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 5900 -1 2.360 0.000 6.000 10.000 0.000 + iasi616_metop-a 5916 -1 2.290 0.000 6.000 10.000 0.000 + iasi616_metop-a 5932 -1 2.350 0.000 6.000 10.000 0.000 + iasi616_metop-a 5948 -1 2.300 0.000 6.000 10.000 0.000 + iasi616_metop-a 5963 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 5968 -1 2.080 0.000 6.000 10.000 0.000 + iasi616_metop-a 5978 -1 2.050 0.000 6.000 10.000 0.000 + iasi616_metop-a 5988 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 5992 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 5994 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 5997 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 6003 -1 1.970 0.000 6.000 10.000 0.000 + iasi616_metop-a 6008 -1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 6023 -1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 6026 -1 2.250 0.000 6.000 10.000 0.000 + iasi616_metop-a 6039 -1 2.310 0.000 6.000 10.000 0.000 + iasi616_metop-a 6053 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 6056 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 6067 -1 2.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 6071 -1 2.240 0.000 6.000 10.000 0.000 + iasi616_metop-a 6082 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 6085 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 6098 -1 2.410 0.000 6.000 10.000 0.000 + iasi616_metop-a 6112 -1 2.340 0.000 6.000 10.000 0.000 + iasi616_metop-a 6126 -1 9.320 0.000 6.000 10.000 0.000 + iasi616_metop-a 6135 -1 2.280 0.000 6.000 10.000 0.000 + iasi616_metop-a 6140 -1 2.380 0.000 6.000 10.000 0.000 + iasi616_metop-a 6149 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 6154 -1 2.270 0.000 6.000 10.000 0.000 + iasi616_metop-a 6158 -1 2.390 0.000 6.000 10.000 0.000 + iasi616_metop-a 6161 -1 2.110 0.000 6.000 10.000 0.000 + iasi616_metop-a 6168 -1 2.090 0.000 6.000 10.000 0.000 + iasi616_metop-a 6174 -1 2.100 0.000 6.000 10.000 0.000 + iasi616_metop-a 6182 -1 2.060 0.000 6.000 10.000 0.000 + iasi616_metop-a 6187 -1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 6205 -1 2.080 0.000 6.000 10.000 0.000 + iasi616_metop-a 6209 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 6213 -1 1.930 0.000 6.000 10.000 0.000 + iasi616_metop-a 6317 -1 2.020 0.000 6.000 10.000 0.000 + iasi616_metop-a 6339 -1 2.550 0.000 6.000 10.000 0.000 + iasi616_metop-a 6342 -1 1.540 0.000 6.000 10.000 0.000 + iasi616_metop-a 6366 -1 1.640 0.000 6.000 10.000 0.000 + iasi616_metop-a 6381 -1 1.510 0.000 6.000 10.000 0.000 + iasi616_metop-a 6391 -1 1.550 0.000 6.000 10.000 0.000 + iasi616_metop-a 6489 -1 2.820 0.000 6.000 10.000 0.000 + iasi616_metop-a 6962 -1 2.920 0.000 6.000 10.000 0.000 + iasi616_metop-a 6966 -1 2.550 0.000 6.000 10.000 0.000 + iasi616_metop-a 6970 -1 2.370 0.000 6.000 10.000 0.000 + iasi616_metop-a 6975 -1 1.850 0.000 6.000 10.000 0.000 + iasi616_metop-a 6977 -1 1.600 0.000 6.000 10.000 0.000 + iasi616_metop-a 6982 -1 1.720 0.000 6.000 10.000 0.000 + iasi616_metop-a 6985 -1 1.740 0.000 6.000 10.000 0.000 + iasi616_metop-a 6987 -1 1.790 0.000 6.000 10.000 0.000 + iasi616_metop-a 6989 -1 1.900 0.000 6.000 10.000 0.000 + iasi616_metop-a 6991 -1 1.940 0.000 6.000 10.000 0.000 + iasi616_metop-a 6993 -1 2.000 0.000 6.000 10.000 0.000 + iasi616_metop-a 6995 -1 2.040 0.000 6.000 10.000 0.000 + iasi616_metop-a 6997 -1 2.080 0.000 6.000 10.000 0.000 + iasi616_metop-a 6999 -1 2.120 0.000 6.000 10.000 0.000 + iasi616_metop-a 7000 -1 2.130 0.000 6.000 10.000 0.000 + iasi616_metop-a 7004 -1 2.160 0.000 6.000 10.000 0.000 + iasi616_metop-a 7008 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 7013 -1 2.180 0.000 6.000 10.000 0.000 + iasi616_metop-a 7016 -1 2.200 0.000 6.000 10.000 0.000 + iasi616_metop-a 7021 -1 2.200 0.000 6.000 10.000 0.000 + iasi616_metop-a 7024 -1 2.410 0.000 6.000 10.000 0.000 + iasi616_metop-a 7027 -1 2.390 0.000 6.000 10.000 0.000 + iasi616_metop-a 7029 -1 2.380 0.000 6.000 10.000 0.000 + iasi616_metop-a 7032 -1 2.400 0.000 6.000 10.000 0.000 + iasi616_metop-a 7038 -1 2.420 0.000 6.000 10.000 0.000 + iasi616_metop-a 7043 -1 2.410 0.000 6.000 10.000 0.000 + iasi616_metop-a 7046 -1 2.430 0.000 6.000 10.000 0.000 + iasi616_metop-a 7049 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7069 -1 2.430 0.000 6.000 10.000 0.000 + iasi616_metop-a 7072 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7076 -1 2.430 0.000 6.000 10.000 0.000 + iasi616_metop-a 7081 -1 2.400 0.000 6.000 10.000 0.000 + iasi616_metop-a 7084 -1 2.440 0.000 6.000 10.000 0.000 + iasi616_metop-a 7089 -1 2.400 0.000 6.000 10.000 0.000 + iasi616_metop-a 7099 -1 2.420 0.000 6.000 10.000 0.000 + iasi616_metop-a 7209 -1 2.430 0.000 6.000 10.000 0.000 + iasi616_metop-a 7222 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7231 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7235 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7247 -1 2.460 0.000 6.000 10.000 0.000 + iasi616_metop-a 7267 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7269 -1 2.450 0.000 6.000 10.000 0.000 + iasi616_metop-a 7284 -1 2.430 0.000 6.000 10.000 0.000 + iasi616_metop-a 7389 -1 2.510 0.000 6.000 10.000 0.000 + iasi616_metop-a 7419 -1 2.480 0.000 6.000 10.000 0.000 + iasi616_metop-a 7423 -1 2.480 0.000 6.000 10.000 0.000 + iasi616_metop-a 7424 -1 2.530 0.000 6.000 10.000 0.000 + iasi616_metop-a 7426 -1 2.460 0.000 6.000 10.000 0.000 + iasi616_metop-a 7428 -1 2.490 0.000 6.000 10.000 0.000 + iasi616_metop-a 7431 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7436 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7444 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7475 -1 2.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 7549 -1 2.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 7584 -1 2.540 0.000 6.000 10.000 0.000 + iasi616_metop-a 7665 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7666 -1 2.480 0.000 6.000 10.000 0.000 + iasi616_metop-a 7831 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7836 -1 2.550 0.000 6.000 10.000 0.000 + iasi616_metop-a 7853 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7865 -1 2.480 0.000 6.000 10.000 0.000 + iasi616_metop-a 7885 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7888 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7912 -1 2.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 7950 -1 2.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 7972 -1 2.480 0.000 6.000 10.000 0.000 + iasi616_metop-a 7980 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 7995 -1 2.500 0.000 6.000 10.000 0.000 + iasi616_metop-a 8007 -1 2.520 0.000 6.000 10.000 0.000 + iasi616_metop-a 8015 -1 2.460 0.000 6.000 10.000 0.000 + iasi616_metop-a 8055 -1 2.530 0.000 6.000 10.000 0.000 + iasi616_metop-a 8078 -1 9.000 0.000 6.000 10.000 0.000 + airs281SUBSET_aqua 1 -1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 6 -1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 7 1 1.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 10 -1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 11 -1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 15 1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 16 -1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 17 -1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 20 1 1.250 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 21 1 1.250 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 22 1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 24 -1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 27 1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 28 1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 30 -1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 36 -1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 39 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 40 1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 42 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 51 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 52 1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 54 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 55 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 56 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 59 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 62 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 63 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 68 -1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 69 1 1.125 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 71 -1 1.050 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 72 1 1.050 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 73 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 74 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 75 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 76 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 77 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 78 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 79 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 80 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 82 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 83 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 84 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 86 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 92 1 0.950 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 93 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 98 1 0.950 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 99 1 0.950 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 101 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 104 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 105 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 108 -1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 110 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 111 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 113 -1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 116 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 117 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 123 1 0.950 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 124 -1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 128 1 0.950 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 129 1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 138 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 139 1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 144 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 145 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 150 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 151 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 156 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 157 1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 159 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 162 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 165 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 168 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 169 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 170 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 172 1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 173 1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 174 1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 175 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 177 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 179 1 1.200 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 180 1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 182 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 185 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 186 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 190 1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 192 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 198 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 201 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 204 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 207 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 210 1 1.400 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 215 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 216 1 2.300 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 221 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 226 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 227 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 232 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 252 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 253 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 256 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 257 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 261 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 262 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 267 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 272 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 295 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 299 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 300 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 305 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 310 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 321 1 1.150 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 325 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 333 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 338 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 355 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 362 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 375 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 453 -1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 475 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 484 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 497 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 528 1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 587 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 672 1 0.925 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 787 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 791 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 843 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 870 1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 914 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 950 1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1003 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1012 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1019 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1024 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1030 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1038 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1048 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1069 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1079 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1082 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1083 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1088 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1090 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1092 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1095 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1104 -1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1111 -1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1115 -1 0.950 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1116 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1119 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1120 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1123 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1130 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1138 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1142 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1178 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1199 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1206 -1 0.900 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1221 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1237 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1252 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1260 -1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1263 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1266 -1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1285 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1301 1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1304 1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1329 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1371 1 1.100 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1382 1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 1415 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1424 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1449 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1455 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1466 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1477 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1500 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1519 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1538 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1545 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1565 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1574 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1583 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1593 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1614 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1627 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1636 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1644 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1652 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1669 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1674 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1681 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1694 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1708 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1717 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1723 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1740 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1748 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1751 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1756 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1763 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1766 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1771 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1777 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1780 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1783 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1794 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1800 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1803 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1806 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1812 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1826 1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1843 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1852 -1 2.500 0.000 4.500 10.000 0.000 + airs281SUBSET_aqua 1865 1 0.600 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1866 1 0.650 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1868 1 0.600 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1869 1 0.550 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1872 1 0.500 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1873 1 0.525 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1876 1 0.550 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1881 1 0.500 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1882 1 0.500 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1883 -1 0.550 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1911 1 0.555 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1917 1 0.575 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1918 1 0.550 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1924 1 0.650 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1928 1 0.700 0.000 2.500 10.000 0.000 + airs281SUBSET_aqua 1937 -1 1.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 1941 -1 1.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2099 -1 3.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2100 -1 3.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2101 -1 2.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2103 -1 2.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2104 -1 2.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2106 -1 1.000 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2107 -1 1.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2108 -1 1.500 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2109 -1 1.800 0.000 3.500 10.000 0.000 + airs281SUBSET_aqua 2110 -1 0.600 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2111 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2112 -1 0.650 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2113 -1 0.675 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2114 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2115 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2116 -1 0.775 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2117 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2118 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2119 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2120 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2121 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2122 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2123 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2128 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2134 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2141 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2145 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2149 -1 0.700 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2153 -1 0.725 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2164 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2189 -1 0.775 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2197 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2209 -1 0.825 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2226 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2234 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2280 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2318 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2321 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2325 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2328 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2333 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2339 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2348 -1 0.850 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2353 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2355 -1 0.800 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2357 -1 2.500 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2363 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2370 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2371 -1 0.750 0.000 3.000 10.000 0.000 + airs281SUBSET_aqua 2377 -1 0.750 0.000 3.000 10.000 0.000 + amsua_aqua 1 -1 2.500 9.100 4.500 10.000 0.000 + amsua_aqua 2 -1 2.000 13.500 4.500 10.000 0.000 + amsua_aqua 3 -1 2.000 7.100 4.500 10.000 0.000 + amsua_aqua 4 -1 0.500 1.300 3.000 10.000 0.000 + amsua_aqua 5 -1 0.400 0.550 2.000 10.000 0.000 + amsua_aqua 6 1 0.400 0.230 2.000 10.000 0.000 + amsua_aqua 7 -1 0.500 0.195 2.000 10.000 0.000 + amsua_aqua 8 1 0.300 0.232 2.000 10.000 0.000 + amsua_aqua 9 1 0.350 0.235 2.000 10.000 0.000 + amsua_aqua 10 1 0.350 0.237 2.000 10.000 0.000 + amsua_aqua 11 1 0.450 0.270 3.000 10.000 0.000 + amsua_aqua 12 1 1.000 0.385 3.500 10.000 0.000 + amsua_aqua 13 1 1.500 0.520 4.500 10.000 0.000 + amsua_aqua 14 -1 2.500 1.400 4.500 10.000 0.000 + amsua_aqua 15 -1 2.500 10.000 4.500 10.000 0.000 + avhrr3_n16 3 -1 0.450 0.000 6.000 10.000 0.000 + avhrr3_n16 4 -1 0.550 0.000 6.000 10.000 0.000 + avhrr3_n16 5 -1 0.600 0.000 6.000 10.000 0.000 + avhrr3_n17 3 -1 0.450 0.000 6.000 10.000 0.000 + avhrr3_n17 4 -1 0.550 0.000 6.000 10.000 0.000 + avhrr3_n17 5 -1 0.600 0.000 6.000 10.000 0.000 + avhrr3_n18 3 -1 0.450 0.000 6.000 10.000 0.000 + avhrr3_n18 4 -1 0.550 0.000 6.000 10.000 0.000 + avhrr3_n18 5 -1 0.600 0.000 6.000 10.000 0.000 + ssmi_f15 1 -1 1.600 0.000 6.000 10.000 0.000 + ssmi_f15 2 -1 2.260 0.000 6.000 10.000 0.000 + ssmi_f15 3 -1 2.010 0.000 6.000 10.000 0.000 + ssmi_f15 4 -1 1.480 0.000 6.000 10.000 0.000 + ssmi_f15 5 -1 2.280 0.000 6.000 10.000 0.000 + ssmi_f15 6 -1 1.430 0.000 6.000 10.000 0.000 + ssmi_f15 7 -1 2.330 0.000 6.000 10.000 0.000 + ssmis_f16 1 -1 1.500 0.000 6.000 10.000 0.000 + ssmis_f16 2 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f16 3 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f16 4 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f16 5 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f16 6 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f16 7 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f16 8 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 9 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 10 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 11 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 12 -1 2.400 0.000 6.000 10.000 0.000 + ssmis_f16 13 -1 1.270 0.000 6.000 10.000 0.000 + ssmis_f16 14 -1 1.440 0.000 6.000 10.000 0.000 + ssmis_f16 15 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 16 -1 1.340 0.000 6.000 10.000 0.000 + ssmis_f16 17 -1 1.740 0.000 6.000 10.000 0.000 + ssmis_f16 18 -1 3.750 0.000 6.000 10.000 0.000 + ssmis_f16 19 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 20 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f16 21 -1 2.000 0.000 6.000 10.000 0.000 + ssmis_f16 22 -1 6.400 0.000 6.000 10.000 0.000 + ssmis_f16 23 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f16 24 -1 1.000 0.000 6.000 10.000 0.000 + amsre_aqua 1 -1 0.626 0.000 6.000 10.000 0.000 + amsre_aqua 2 -1 0.869 0.000 6.000 10.000 0.000 + amsre_aqua 3 -1 0.728 0.000 6.000 10.000 0.000 + amsre_aqua 4 -1 0.950 0.000 6.000 10.000 0.000 + amsre_aqua 5 -1 0.922 0.000 6.000 10.000 0.000 + amsre_aqua 6 -1 1.196 0.000 6.000 10.000 0.000 + amsre_aqua 7 -1 1.169 0.000 6.000 10.000 0.000 + amsre_aqua 8 -1 1.840 0.000 6.000 10.000 0.000 + amsre_aqua 9 -1 0.843 0.000 6.000 10.000 0.000 + amsre_aqua 10 -1 1.600 0.000 6.000 10.000 0.000 + amsre_aqua 11 -1 1.955 0.000 6.000 10.000 0.000 + amsre_aqua 12 -1 4.337 0.000 6.000 10.000 0.000 + imgr_g11 2 -1 2.000 0.000 4.500 10.000 0.000 + imgr_g11 3 -1 1.400 0.000 4.500 10.000 0.000 + imgr_g11 4 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g11 5 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g12 2 -1 2.000 0.000 4.500 10.000 0.000 + imgr_g12 3 -1 1.400 0.000 4.500 10.000 0.000 + imgr_g12 4 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g12 5 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g13 2 -1 2.000 0.000 4.500 10.000 0.000 + imgr_g13 3 -1 1.400 0.000 4.500 10.000 0.000 + imgr_g13 4 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g13 5 -1 3.000 0.000 4.500 10.000 0.000 + sndrD1_g11 1 1 0.850 0.000 2.000 10.000 0.000 + sndrD1_g11 2 1 0.650 0.000 2.000 10.000 0.000 + sndrD1_g11 3 1 0.400 0.000 2.000 10.000 0.000 + sndrD1_g11 4 1 0.400 0.000 2.000 10.000 0.000 + sndrD1_g11 5 1 0.400 0.000 2.000 10.000 0.000 + sndrD1_g11 6 1 0.550 0.000 2.000 10.000 0.000 + sndrD1_g11 7 1 0.550 0.000 2.500 10.000 0.000 + sndrD1_g11 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD1_g11 9 1 0.650 0.000 3.500 10.000 0.000 + sndrD1_g11 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD1_g11 11 1 1.400 0.000 3.500 10.000 0.000 + sndrD1_g11 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD1_g11 13 1 0.250 0.000 2.000 10.000 0.000 + sndrD1_g11 14 1 0.300 0.000 2.000 10.000 0.000 + sndrD1_g11 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD1_g11 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD1_g11 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD1_g11 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD2_g11 1 1 0.850 0.000 2.000 10.000 0.000 + sndrD2_g11 2 1 0.650 0.000 2.000 10.000 0.000 + sndrD2_g11 3 1 0.400 0.000 2.000 10.000 0.000 + sndrD2_g11 4 1 0.400 0.000 2.000 10.000 0.000 + sndrD2_g11 5 1 0.400 0.000 2.000 10.000 0.000 + sndrD2_g11 6 1 0.550 0.000 2.000 10.000 0.000 + sndrD2_g11 7 1 0.550 0.000 2.500 10.000 0.000 + sndrD2_g11 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD2_g11 9 1 0.650 0.000 3.500 10.000 0.000 + sndrD2_g11 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD2_g11 11 1 1.400 0.000 3.500 10.000 0.000 + sndrD2_g11 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD2_g11 13 1 0.250 0.000 2.000 10.000 0.000 + sndrD2_g11 14 1 0.300 0.000 2.000 10.000 0.000 + sndrD2_g11 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD2_g11 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD2_g11 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD2_g11 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD3_g11 1 1 0.850 0.000 2.000 10.000 0.000 + sndrD3_g11 2 1 0.650 0.000 2.000 10.000 0.000 + sndrD3_g11 3 1 0.400 0.000 2.000 10.000 0.000 + sndrD3_g11 4 1 0.400 0.000 2.000 10.000 0.000 + sndrD3_g11 5 1 0.400 0.000 2.000 10.000 0.000 + sndrD3_g11 6 1 0.550 0.000 2.000 10.000 0.000 + sndrD3_g11 7 1 0.550 0.000 2.500 10.000 0.000 + sndrD3_g11 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD3_g11 9 1 0.650 0.000 3.500 10.000 0.000 + sndrD3_g11 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD3_g11 11 1 1.400 0.000 3.500 10.000 0.000 + sndrD3_g11 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD3_g11 13 1 0.250 0.000 2.000 10.000 0.000 + sndrD3_g11 14 1 0.300 0.000 2.000 10.000 0.000 + sndrD3_g11 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD3_g11 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD3_g11 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD3_g11 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD4_g11 1 1 0.850 0.000 2.000 10.000 0.000 + sndrD4_g11 2 1 0.650 0.000 2.000 10.000 0.000 + sndrD4_g11 3 1 0.400 0.000 2.000 10.000 0.000 + sndrD4_g11 4 1 0.400 0.000 2.000 10.000 0.000 + sndrD4_g11 5 1 0.400 0.000 2.000 10.000 0.000 + sndrD4_g11 6 1 0.550 0.000 2.000 10.000 0.000 + sndrD4_g11 7 1 0.550 0.000 2.500 10.000 0.000 + sndrD4_g11 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD4_g11 9 1 0.650 0.000 3.500 10.000 0.000 + sndrD4_g11 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD4_g11 11 1 1.400 0.000 3.500 10.000 0.000 + sndrD4_g11 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD4_g11 13 1 0.250 0.000 2.000 10.000 0.000 + sndrD4_g11 14 1 0.300 0.000 2.000 10.000 0.000 + sndrD4_g11 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD4_g11 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD4_g11 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD4_g11 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD1_g12 1 1 0.950 0.000 2.000 10.000 0.000 + sndrD1_g12 2 1 0.820 0.000 2.000 10.000 0.000 + sndrD1_g12 3 1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g12 4 1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g12 5 1 0.450 0.000 2.000 10.000 0.000 + sndrD1_g12 6 1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g12 7 1 0.500 0.000 2.500 10.000 0.000 + sndrD1_g12 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD1_g12 9 1 0.600 0.000 3.500 10.000 0.000 + sndrD1_g12 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD1_g12 11 1 1.300 0.000 3.500 10.000 0.000 + sndrD1_g12 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD1_g12 13 1 0.300 0.000 2.000 10.000 0.000 + sndrD1_g12 14 1 0.250 0.000 2.000 10.000 0.000 + sndrD1_g12 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD1_g12 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD1_g12 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD1_g12 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD2_g12 1 1 0.950 0.000 2.000 10.000 0.000 + sndrD2_g12 2 1 0.820 0.000 2.000 10.000 0.000 + sndrD2_g12 3 1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g12 4 1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g12 5 1 0.450 0.000 2.000 10.000 0.000 + sndrD2_g12 6 1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g12 7 1 0.500 0.000 2.500 10.000 0.000 + sndrD2_g12 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD2_g12 9 1 0.600 0.000 3.500 10.000 0.000 + sndrD2_g12 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD2_g12 11 1 1.300 0.000 3.500 10.000 0.000 + sndrD2_g12 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD2_g12 13 1 0.300 0.000 2.000 10.000 0.000 + sndrD2_g12 14 1 0.250 0.000 2.000 10.000 0.000 + sndrD2_g12 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD2_g12 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD2_g12 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD2_g12 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD3_g12 1 1 0.950 0.000 2.000 10.000 0.000 + sndrD3_g12 2 1 0.820 0.000 2.000 10.000 0.000 + sndrD3_g12 3 1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g12 4 1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g12 5 1 0.450 0.000 2.000 10.000 0.000 + sndrD3_g12 6 1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g12 7 1 0.500 0.000 2.500 10.000 0.000 + sndrD3_g12 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD3_g12 9 1 0.600 0.000 3.500 10.000 0.000 + sndrD3_g12 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD3_g12 11 1 1.300 0.000 3.500 10.000 0.000 + sndrD3_g12 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD3_g12 13 1 0.300 0.000 2.000 10.000 0.000 + sndrD3_g12 14 1 0.250 0.000 2.000 10.000 0.000 + sndrD3_g12 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD3_g12 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD3_g12 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD3_g12 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD4_g12 1 1 0.950 0.000 2.000 10.000 0.000 + sndrD4_g12 2 1 0.820 0.000 2.000 10.000 0.000 + sndrD4_g12 3 1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g12 4 1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g12 5 1 0.450 0.000 2.000 10.000 0.000 + sndrD4_g12 6 1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g12 7 1 0.500 0.000 2.500 10.000 0.000 + sndrD4_g12 8 1 0.500 0.000 3.000 10.000 0.000 + sndrD4_g12 9 1 0.600 0.000 3.500 10.000 0.000 + sndrD4_g12 10 1 0.950 0.000 2.500 10.000 0.000 + sndrD4_g12 11 1 1.300 0.000 3.500 10.000 0.000 + sndrD4_g12 12 1 1.800 0.000 4.500 10.000 0.000 + sndrD4_g12 13 1 0.300 0.000 2.000 10.000 0.000 + sndrD4_g12 14 1 0.250 0.000 2.000 10.000 0.000 + sndrD4_g12 15 1 1.300 0.000 3.500 10.000 0.000 + sndrD4_g12 16 -1 0.800 0.000 2.500 10.000 0.000 + sndrD4_g12 17 -1 1.300 0.000 4.500 10.000 0.000 + sndrD4_g12 18 -1 1.000 0.000 4.500 10.000 0.000 + sndrD1_g13 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g13 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD1_g13 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD1_g13 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g13 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD1_g13 6 -1 0.990 0.000 2.000 10.000 0.000 + sndrD1_g13 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g13 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD1_g13 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD1_g13 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD1_g13 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD1_g13 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD1_g13 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g13 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD1_g13 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD1_g13 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g13 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD1_g13 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g13 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g13 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD2_g13 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD2_g13 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g13 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD2_g13 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD2_g13 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g13 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD2_g13 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD2_g13 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD2_g13 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD2_g13 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD2_g13 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g13 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD2_g13 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD2_g13 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g13 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g13 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g13 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g13 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD3_g13 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD3_g13 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g13 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD3_g13 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD3_g13 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g13 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD3_g13 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD3_g13 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD3_g13 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD3_g13 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD3_g13 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g13 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD3_g13 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD3_g13 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g13 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g13 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g13 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g13 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD4_g13 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD4_g13 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g13 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD4_g13 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD4_g13 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g13 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD4_g13 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD4_g13 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD4_g13 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD4_g13 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD4_g13 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g13 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD4_g13 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD4_g13 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g13 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g13 18 -1 2.000 0.000 4.500 10.000 0.000 + hirs4_n19 1 -1 2.500 0.000 4.500 10.000 0.000 + hirs4_n19 2 1 0.600 0.000 2.500 10.000 0.000 + hirs4_n19 3 1 0.530 0.000 2.500 10.000 0.000 + hirs4_n19 4 1 0.400 0.000 2.000 10.000 0.000 + hirs4_n19 5 1 0.360 0.000 2.000 10.000 0.000 + hirs4_n19 6 1 0.460 0.000 2.000 10.000 0.000 + hirs4_n19 7 1 0.570 0.000 2.500 10.000 0.000 + hirs4_n19 8 1 1.000 0.000 3.000 10.000 0.000 + hirs4_n19 9 1 1.100 0.000 3.500 10.000 0.000 + hirs4_n19 10 1 0.600 0.000 2.500 10.000 0.000 + hirs4_n19 11 1 1.200 0.000 4.500 10.000 0.000 + hirs4_n19 12 1 1.600 0.000 4.500 10.000 0.000 + hirs4_n19 13 1 0.364 0.000 2.000 10.000 0.000 + hirs4_n19 14 1 0.260 0.000 2.000 10.000 0.000 + hirs4_n19 15 1 0.260 0.000 2.000 10.000 0.000 + hirs4_n19 16 -1 1.000 0.000 3.500 10.000 0.000 + hirs4_n19 17 -1 2.000 0.000 4.500 10.000 0.000 + hirs4_n19 18 -1 2.000 0.000 4.500 10.000 0.000 + hirs4_n19 19 -1 2.000 0.000 4.500 10.000 0.000 + amsua_n19 1 1 2.500 9.100 4.500 10.000 0.000 + amsua_n19 2 1 2.000 13.500 4.500 10.000 0.000 + amsua_n19 3 1 2.000 7.100 4.500 10.000 0.000 + amsua_n19 4 1 0.550 1.300 2.500 10.000 0.000 + amsua_n19 5 1 0.300 0.550 2.000 10.000 0.000 + amsua_n19 6 1 0.230 0.230 2.000 10.000 0.000 + amsua_n19 7 1 0.230 0.195 2.000 10.000 0.000 + amsua_n19 8 -1 0.250 0.232 2.000 10.000 0.000 + amsua_n19 9 1 0.250 0.235 2.000 10.000 0.000 + amsua_n19 10 1 0.350 0.237 2.000 10.000 0.000 + amsua_n19 11 1 0.400 0.270 2.500 10.000 0.000 + amsua_n19 12 1 0.550 0.385 3.500 10.000 0.000 + amsua_n19 13 1 0.800 0.520 4.500 10.000 0.000 + amsua_n19 14 -1 3.000 1.400 4.500 10.000 0.000 + amsua_n19 15 1 2.500 10.000 4.500 10.000 0.000 + mhs_n19 1 1 2.500 0.000 6.000 10.000 0.000 + mhs_n19 2 1 2.500 0.000 6.000 10.000 0.000 + mhs_n19 3 1 2.500 0.000 6.000 10.000 0.000 + mhs_n19 4 1 2.000 0.000 6.000 10.000 0.000 + mhs_n19 5 1 2.000 0.000 6.000 10.000 0.000 + ssmis_f17 1 -1 1.500 0.000 6.000 10.000 0.000 + ssmis_f17 2 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f17 3 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f17 4 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f17 5 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f17 6 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f17 7 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f17 8 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 9 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 10 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 11 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 12 -1 2.400 0.000 6.000 10.000 0.000 + ssmis_f17 13 -1 1.270 0.000 6.000 10.000 0.000 + ssmis_f17 14 -1 1.440 0.000 6.000 10.000 0.000 + ssmis_f17 15 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 16 -1 1.340 0.000 6.000 10.000 0.000 + ssmis_f17 17 -1 1.740 0.000 6.000 10.000 0.000 + ssmis_f17 18 -1 3.750 0.000 6.000 10.000 0.000 + ssmis_f17 19 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 20 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f17 21 -1 2.000 0.000 6.000 10.000 0.000 + ssmis_f17 22 -1 6.400 0.000 6.000 10.000 0.000 + ssmis_f17 23 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f17 24 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f18 1 -1 1.500 0.000 6.000 10.000 0.000 + ssmis_f18 2 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f18 3 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f18 4 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f18 5 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f18 6 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f18 7 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f18 8 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 9 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 10 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 11 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 12 -1 2.400 0.000 6.000 10.000 0.000 + ssmis_f18 13 -1 1.270 0.000 6.000 10.000 0.000 + ssmis_f18 14 -1 1.440 0.000 6.000 10.000 0.000 + ssmis_f18 15 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 16 -1 1.340 0.000 6.000 10.000 0.000 + ssmis_f18 17 -1 1.740 0.000 6.000 10.000 0.000 + ssmis_f18 18 -1 3.750 0.000 6.000 10.000 0.000 + ssmis_f18 19 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 20 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f18 21 -1 2.000 0.000 6.000 10.000 0.000 + ssmis_f18 22 -1 6.400 0.000 6.000 10.000 0.000 + ssmis_f18 23 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f18 24 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f19 1 -1 1.500 0.000 6.000 10.000 0.000 + ssmis_f19 2 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f19 3 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f19 4 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f19 5 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f19 6 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f19 7 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f19 8 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 9 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 10 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 11 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 12 -1 2.400 0.000 6.000 10.000 0.000 + ssmis_f19 13 -1 1.270 0.000 6.000 10.000 0.000 + ssmis_f19 14 -1 1.440 0.000 6.000 10.000 0.000 + ssmis_f19 15 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 16 -1 1.340 0.000 6.000 10.000 0.000 + ssmis_f19 17 -1 1.740 0.000 6.000 10.000 0.000 + ssmis_f19 18 -1 3.750 0.000 6.000 10.000 0.000 + ssmis_f19 19 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 20 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f19 21 -1 2.000 0.000 6.000 10.000 0.000 + ssmis_f19 22 -1 6.400 0.000 6.000 10.000 0.000 + ssmis_f19 23 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f19 24 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f20 1 -1 1.500 0.000 6.000 10.000 0.000 + ssmis_f20 2 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f20 3 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f20 4 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f20 5 -1 0.500 0.000 6.000 10.000 0.000 + ssmis_f20 6 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f20 7 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f20 8 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 9 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 10 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 11 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 12 -1 2.400 0.000 6.000 10.000 0.000 + ssmis_f20 13 -1 1.270 0.000 6.000 10.000 0.000 + ssmis_f20 14 -1 1.440 0.000 6.000 10.000 0.000 + ssmis_f20 15 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 16 -1 1.340 0.000 6.000 10.000 0.000 + ssmis_f20 17 -1 1.740 0.000 6.000 10.000 0.000 + ssmis_f20 18 -1 3.750 0.000 6.000 10.000 0.000 + ssmis_f20 19 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 20 -1 3.000 0.000 6.000 10.000 0.000 + ssmis_f20 21 -1 2.000 0.000 6.000 10.000 0.000 + ssmis_f20 22 -1 6.400 0.000 6.000 10.000 0.000 + ssmis_f20 23 -1 1.000 0.000 6.000 10.000 0.000 + ssmis_f20 24 -1 1.000 0.000 6.000 10.000 0.000 + imgr_g14 2 -1 2.000 0.000 4.500 10.000 0.000 + imgr_g14 3 -1 1.400 0.000 4.500 10.000 0.000 + imgr_g14 4 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g14 5 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g15 2 -1 2.000 0.000 4.500 10.000 0.000 + imgr_g15 3 -1 1.400 0.000 4.500 10.000 0.000 + imgr_g15 4 -1 3.000 0.000 4.500 10.000 0.000 + imgr_g15 5 -1 3.000 0.000 4.500 10.000 0.000 + sndrD1_g14 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g14 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD1_g14 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD1_g14 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g14 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD1_g14 6 -1 0.990 0.000 2.000 10.000 0.000 + sndrD1_g14 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g14 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD1_g14 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD1_g14 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD1_g14 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD1_g14 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD1_g14 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g14 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD1_g14 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD1_g14 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g14 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD1_g14 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g14 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g14 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD2_g14 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD2_g14 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g14 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD2_g14 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD2_g14 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g14 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD2_g14 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD2_g14 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD2_g14 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD2_g14 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD2_g14 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g14 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD2_g14 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD2_g14 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g14 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g14 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g14 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g14 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD3_g14 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD3_g14 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g14 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD3_g14 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD3_g14 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g14 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD3_g14 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD3_g14 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD3_g14 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD3_g14 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD3_g14 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g14 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD3_g14 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD3_g14 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g14 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g14 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g14 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g14 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD4_g14 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD4_g14 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g14 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD4_g14 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD4_g14 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g14 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD4_g14 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD4_g14 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD4_g14 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD4_g14 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD4_g14 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g14 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD4_g14 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD4_g14 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g14 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g14 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD1_g15 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g15 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD1_g15 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD1_g15 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD1_g15 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD1_g15 6 -1 0.990 0.000 2.000 10.000 0.000 + sndrD1_g15 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g15 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD1_g15 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD1_g15 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD1_g15 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD1_g15 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD1_g15 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD1_g15 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD1_g15 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD1_g15 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD1_g15 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD1_g15 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g15 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g15 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD2_g15 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD2_g15 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD2_g15 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD2_g15 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD2_g15 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g15 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD2_g15 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD2_g15 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD2_g15 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD2_g15 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD2_g15 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD2_g15 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD2_g15 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD2_g15 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD2_g15 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD2_g15 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g15 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g15 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD3_g15 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD3_g15 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD3_g15 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD3_g15 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD3_g15 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g15 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD3_g15 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD3_g15 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD3_g15 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD3_g15 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD3_g15 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD3_g15 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD3_g15 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD3_g15 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD3_g15 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD3_g15 18 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g15 1 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g15 2 -1 0.720 0.000 2.000 10.000 0.000 + sndrD4_g15 3 -1 0.600 0.000 2.000 10.000 0.000 + sndrD4_g15 4 -1 0.500 0.000 2.000 10.000 0.000 + sndrD4_g15 5 -1 0.910 0.000 2.000 10.000 0.000 + sndrD4_g15 6 -1 0.980 0.000 2.000 10.000 0.000 + sndrD4_g15 7 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g15 8 -1 2.000 0.000 3.000 10.000 0.000 + sndrD4_g15 9 -1 2.600 0.000 3.500 10.000 0.000 + sndrD4_g15 10 -1 1.800 0.000 2.500 10.000 0.000 + sndrD4_g15 11 -1 2.300 0.000 3.500 10.000 0.000 + sndrD4_g15 12 -1 2.800 0.000 4.500 10.000 0.000 + sndrD4_g15 13 -1 0.900 0.000 2.000 10.000 0.000 + sndrD4_g15 14 -1 0.800 0.000 2.000 10.000 0.000 + sndrD4_g15 15 -1 2.000 0.000 3.500 10.000 0.000 + sndrD4_g15 16 -1 1.080 0.000 2.500 10.000 0.000 + sndrD4_g15 17 -1 2.000 0.000 4.500 10.000 0.000 + sndrD4_g15 18 -1 2.000 0.000 4.500 10.000 0.000 diff --git a/fix/gsi/ndas.t06z.satbias.tm03 b/fix/gsi/ndas.t06z.satbias.tm03 new file mode 100644 index 000000000..232f62e93 --- /dev/null +++ b/fix/gsi/ndas.t06z.satbias.tm03 @@ -0,0 +1,1459 @@ + 1 amsua_n15 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 2 amsua_n15 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 3 amsua_n15 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 4 amsua_n15 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 5 amsua_n15 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 6 amsua_n15 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 7 amsua_n15 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 8 amsua_n15 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 9 amsua_n15 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 10 amsua_n15 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 11 amsua_n15 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 12 amsua_n15 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 13 amsua_n15 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 14 amsua_n15 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 15 amsua_n15 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 16 amsub_n15 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 17 amsub_n15 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 18 amsub_n15 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 19 amsub_n15 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 20 amsub_n15 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 21 hirs3_n16 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 22 hirs3_n16 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 23 hirs3_n16 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 24 hirs3_n16 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 25 hirs3_n16 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 26 hirs3_n16 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 27 hirs3_n16 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 28 hirs3_n16 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 29 hirs3_n16 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 30 hirs3_n16 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 31 hirs3_n16 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 32 hirs3_n16 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 33 hirs3_n16 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 34 hirs3_n16 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 35 hirs3_n16 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 36 hirs3_n16 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 37 hirs3_n16 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 38 hirs3_n16 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 39 hirs3_n16 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 40 amsua_n16 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 41 amsua_n16 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 42 amsua_n16 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 43 amsua_n16 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 44 amsua_n16 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 45 amsua_n16 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 46 amsua_n16 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 47 amsua_n16 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 48 amsua_n16 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 49 amsua_n16 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 50 amsua_n16 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 51 amsua_n16 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 52 amsua_n16 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 53 amsua_n16 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 54 amsua_n16 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 55 amsub_n16 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 56 amsub_n16 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 57 amsub_n16 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 58 amsub_n16 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 59 amsub_n16 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 60 hirs3_n17 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 61 hirs3_n17 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 62 hirs3_n17 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 63 hirs3_n17 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 64 hirs3_n17 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 65 hirs3_n17 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 66 hirs3_n17 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 67 hirs3_n17 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 68 hirs3_n17 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 69 hirs3_n17 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 70 hirs3_n17 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 71 hirs3_n17 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 72 hirs3_n17 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 73 hirs3_n17 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 74 hirs3_n17 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 75 hirs3_n17 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 76 hirs3_n17 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 77 hirs3_n17 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 78 hirs3_n17 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 79 amsua_n17 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 80 amsua_n17 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 81 amsua_n17 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 82 amsua_n17 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 83 amsua_n17 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 84 amsua_n17 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 85 amsua_n17 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 86 amsua_n17 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 87 amsua_n17 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 88 amsua_n17 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 89 amsua_n17 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 90 amsua_n17 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 91 amsua_n17 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 92 amsua_n17 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 93 amsua_n17 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 94 amsub_n17 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 95 amsub_n17 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 96 amsub_n17 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 97 amsub_n17 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 98 amsub_n17 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 99 hirs4_n18 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 100 hirs4_n18 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 101 hirs4_n18 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 102 hirs4_n18 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 103 hirs4_n18 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 104 hirs4_n18 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 105 hirs4_n18 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 106 hirs4_n18 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 107 hirs4_n18 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 108 hirs4_n18 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 109 hirs4_n18 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 110 hirs4_n18 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 111 hirs4_n18 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 112 hirs4_n18 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 113 hirs4_n18 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 114 hirs4_n18 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 115 hirs4_n18 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 116 hirs4_n18 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 117 hirs4_n18 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 118 amsua_n18 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 119 amsua_n18 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 120 amsua_n18 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 121 amsua_n18 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 122 amsua_n18 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 123 amsua_n18 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 124 amsua_n18 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 125 amsua_n18 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 126 amsua_n18 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 127 amsua_n18 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 128 amsua_n18 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 129 amsua_n18 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 130 amsua_n18 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 131 amsua_n18 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 132 amsua_n18 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 133 mhs_n18 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 134 mhs_n18 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 135 mhs_n18 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 136 mhs_n18 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 137 mhs_n18 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 138 hirs4_metop-a 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 139 hirs4_metop-a 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 140 hirs4_metop-a 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 141 hirs4_metop-a 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 142 hirs4_metop-a 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 143 hirs4_metop-a 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 144 hirs4_metop-a 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 145 hirs4_metop-a 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 146 hirs4_metop-a 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 147 hirs4_metop-a 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 148 hirs4_metop-a 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 149 hirs4_metop-a 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 150 hirs4_metop-a 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 151 hirs4_metop-a 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 152 hirs4_metop-a 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 153 hirs4_metop-a 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 154 hirs4_metop-a 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 155 hirs4_metop-a 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 156 hirs4_metop-a 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 157 amsua_metop-a 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 158 amsua_metop-a 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 159 amsua_metop-a 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 160 amsua_metop-a 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 161 amsua_metop-a 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 162 amsua_metop-a 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 163 amsua_metop-a 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 164 amsua_metop-a 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 165 amsua_metop-a 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 166 amsua_metop-a 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 167 amsua_metop-a 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 168 amsua_metop-a 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 169 amsua_metop-a 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 170 amsua_metop-a 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 171 amsua_metop-a 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 172 mhs_metop-a 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 173 mhs_metop-a 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 174 mhs_metop-a 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 175 mhs_metop-a 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 176 mhs_metop-a 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 177 iasi616_metop-a 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 178 iasi616_metop-a 29 0.000000 0.000000 0.000000 0.000000 0.000000 + 179 iasi616_metop-a 32 0.000000 0.000000 0.000000 0.000000 0.000000 + 180 iasi616_metop-a 35 0.000000 0.000000 0.000000 0.000000 0.000000 + 181 iasi616_metop-a 38 0.000000 0.000000 0.000000 0.000000 0.000000 + 182 iasi616_metop-a 41 0.000000 0.000000 0.000000 0.000000 0.000000 + 183 iasi616_metop-a 44 0.000000 0.000000 0.000000 0.000000 0.000000 + 184 iasi616_metop-a 47 0.000000 0.000000 0.000000 0.000000 0.000000 + 185 iasi616_metop-a 49 0.000000 0.000000 0.000000 0.000000 0.000000 + 186 iasi616_metop-a 50 0.000000 0.000000 0.000000 0.000000 0.000000 + 187 iasi616_metop-a 51 0.000000 0.000000 0.000000 0.000000 0.000000 + 188 iasi616_metop-a 53 0.000000 0.000000 0.000000 0.000000 0.000000 + 189 iasi616_metop-a 55 0.000000 0.000000 0.000000 0.000000 0.000000 + 190 iasi616_metop-a 56 0.000000 0.000000 0.000000 0.000000 0.000000 + 191 iasi616_metop-a 57 0.000000 0.000000 0.000000 0.000000 0.000000 + 192 iasi616_metop-a 59 0.000000 0.000000 0.000000 0.000000 0.000000 + 193 iasi616_metop-a 61 0.000000 0.000000 0.000000 0.000000 0.000000 + 194 iasi616_metop-a 62 0.000000 0.000000 0.000000 0.000000 0.000000 + 195 iasi616_metop-a 63 0.000000 0.000000 0.000000 0.000000 0.000000 + 196 iasi616_metop-a 66 0.000000 0.000000 0.000000 0.000000 0.000000 + 197 iasi616_metop-a 68 0.000000 0.000000 0.000000 0.000000 0.000000 + 198 iasi616_metop-a 70 0.000000 0.000000 0.000000 0.000000 0.000000 + 199 iasi616_metop-a 72 0.000000 0.000000 0.000000 0.000000 0.000000 + 200 iasi616_metop-a 74 0.000000 0.000000 0.000000 0.000000 0.000000 + 201 iasi616_metop-a 76 0.000000 0.000000 0.000000 0.000000 0.000000 + 202 iasi616_metop-a 78 0.000000 0.000000 0.000000 0.000000 0.000000 + 203 iasi616_metop-a 79 0.000000 0.000000 0.000000 0.000000 0.000000 + 204 iasi616_metop-a 81 0.000000 0.000000 0.000000 0.000000 0.000000 + 205 iasi616_metop-a 82 0.000000 0.000000 0.000000 0.000000 0.000000 + 206 iasi616_metop-a 83 0.000000 0.000000 0.000000 0.000000 0.000000 + 207 iasi616_metop-a 84 0.000000 0.000000 0.000000 0.000000 0.000000 + 208 iasi616_metop-a 85 0.000000 0.000000 0.000000 0.000000 0.000000 + 209 iasi616_metop-a 86 0.000000 0.000000 0.000000 0.000000 0.000000 + 210 iasi616_metop-a 87 0.000000 0.000000 0.000000 0.000000 0.000000 + 211 iasi616_metop-a 89 0.000000 0.000000 0.000000 0.000000 0.000000 + 212 iasi616_metop-a 92 0.000000 0.000000 0.000000 0.000000 0.000000 + 213 iasi616_metop-a 93 0.000000 0.000000 0.000000 0.000000 0.000000 + 214 iasi616_metop-a 95 0.000000 0.000000 0.000000 0.000000 0.000000 + 215 iasi616_metop-a 97 0.000000 0.000000 0.000000 0.000000 0.000000 + 216 iasi616_metop-a 99 0.000000 0.000000 0.000000 0.000000 0.000000 + 217 iasi616_metop-a 101 0.000000 0.000000 0.000000 0.000000 0.000000 + 218 iasi616_metop-a 103 0.000000 0.000000 0.000000 0.000000 0.000000 + 219 iasi616_metop-a 104 0.000000 0.000000 0.000000 0.000000 0.000000 + 220 iasi616_metop-a 106 0.000000 0.000000 0.000000 0.000000 0.000000 + 221 iasi616_metop-a 109 0.000000 0.000000 0.000000 0.000000 0.000000 + 222 iasi616_metop-a 110 0.000000 0.000000 0.000000 0.000000 0.000000 + 223 iasi616_metop-a 111 0.000000 0.000000 0.000000 0.000000 0.000000 + 224 iasi616_metop-a 113 0.000000 0.000000 0.000000 0.000000 0.000000 + 225 iasi616_metop-a 116 0.000000 0.000000 0.000000 0.000000 0.000000 + 226 iasi616_metop-a 119 0.000000 0.000000 0.000000 0.000000 0.000000 + 227 iasi616_metop-a 122 0.000000 0.000000 0.000000 0.000000 0.000000 + 228 iasi616_metop-a 125 0.000000 0.000000 0.000000 0.000000 0.000000 + 229 iasi616_metop-a 128 0.000000 0.000000 0.000000 0.000000 0.000000 + 230 iasi616_metop-a 131 0.000000 0.000000 0.000000 0.000000 0.000000 + 231 iasi616_metop-a 133 0.000000 0.000000 0.000000 0.000000 0.000000 + 232 iasi616_metop-a 135 0.000000 0.000000 0.000000 0.000000 0.000000 + 233 iasi616_metop-a 138 0.000000 0.000000 0.000000 0.000000 0.000000 + 234 iasi616_metop-a 141 0.000000 0.000000 0.000000 0.000000 0.000000 + 235 iasi616_metop-a 144 0.000000 0.000000 0.000000 0.000000 0.000000 + 236 iasi616_metop-a 146 0.000000 0.000000 0.000000 0.000000 0.000000 + 237 iasi616_metop-a 148 0.000000 0.000000 0.000000 0.000000 0.000000 + 238 iasi616_metop-a 150 0.000000 0.000000 0.000000 0.000000 0.000000 + 239 iasi616_metop-a 151 0.000000 0.000000 0.000000 0.000000 0.000000 + 240 iasi616_metop-a 154 0.000000 0.000000 0.000000 0.000000 0.000000 + 241 iasi616_metop-a 157 0.000000 0.000000 0.000000 0.000000 0.000000 + 242 iasi616_metop-a 159 0.000000 0.000000 0.000000 0.000000 0.000000 + 243 iasi616_metop-a 160 0.000000 0.000000 0.000000 0.000000 0.000000 + 244 iasi616_metop-a 161 0.000000 0.000000 0.000000 0.000000 0.000000 + 245 iasi616_metop-a 163 0.000000 0.000000 0.000000 0.000000 0.000000 + 246 iasi616_metop-a 167 0.000000 0.000000 0.000000 0.000000 0.000000 + 247 iasi616_metop-a 170 0.000000 0.000000 0.000000 0.000000 0.000000 + 248 iasi616_metop-a 173 0.000000 0.000000 0.000000 0.000000 0.000000 + 249 iasi616_metop-a 176 0.000000 0.000000 0.000000 0.000000 0.000000 + 250 iasi616_metop-a 179 0.000000 0.000000 0.000000 0.000000 0.000000 + 251 iasi616_metop-a 180 0.000000 0.000000 0.000000 0.000000 0.000000 + 252 iasi616_metop-a 185 0.000000 0.000000 0.000000 0.000000 0.000000 + 253 iasi616_metop-a 187 0.000000 0.000000 0.000000 0.000000 0.000000 + 254 iasi616_metop-a 191 0.000000 0.000000 0.000000 0.000000 0.000000 + 255 iasi616_metop-a 193 0.000000 0.000000 0.000000 0.000000 0.000000 + 256 iasi616_metop-a 197 0.000000 0.000000 0.000000 0.000000 0.000000 + 257 iasi616_metop-a 199 0.000000 0.000000 0.000000 0.000000 0.000000 + 258 iasi616_metop-a 200 0.000000 0.000000 0.000000 0.000000 0.000000 + 259 iasi616_metop-a 202 0.000000 0.000000 0.000000 0.000000 0.000000 + 260 iasi616_metop-a 203 0.000000 0.000000 0.000000 0.000000 0.000000 + 261 iasi616_metop-a 205 0.000000 0.000000 0.000000 0.000000 0.000000 + 262 iasi616_metop-a 207 0.000000 0.000000 0.000000 0.000000 0.000000 + 263 iasi616_metop-a 210 0.000000 0.000000 0.000000 0.000000 0.000000 + 264 iasi616_metop-a 212 0.000000 0.000000 0.000000 0.000000 0.000000 + 265 iasi616_metop-a 213 0.000000 0.000000 0.000000 0.000000 0.000000 + 266 iasi616_metop-a 214 0.000000 0.000000 0.000000 0.000000 0.000000 + 267 iasi616_metop-a 217 0.000000 0.000000 0.000000 0.000000 0.000000 + 268 iasi616_metop-a 218 0.000000 0.000000 0.000000 0.000000 0.000000 + 269 iasi616_metop-a 219 0.000000 0.000000 0.000000 0.000000 0.000000 + 270 iasi616_metop-a 222 0.000000 0.000000 0.000000 0.000000 0.000000 + 271 iasi616_metop-a 224 0.000000 0.000000 0.000000 0.000000 0.000000 + 272 iasi616_metop-a 225 0.000000 0.000000 0.000000 0.000000 0.000000 + 273 iasi616_metop-a 226 0.000000 0.000000 0.000000 0.000000 0.000000 + 274 iasi616_metop-a 228 0.000000 0.000000 0.000000 0.000000 0.000000 + 275 iasi616_metop-a 230 0.000000 0.000000 0.000000 0.000000 0.000000 + 276 iasi616_metop-a 231 0.000000 0.000000 0.000000 0.000000 0.000000 + 277 iasi616_metop-a 232 0.000000 0.000000 0.000000 0.000000 0.000000 + 278 iasi616_metop-a 236 0.000000 0.000000 0.000000 0.000000 0.000000 + 279 iasi616_metop-a 237 0.000000 0.000000 0.000000 0.000000 0.000000 + 280 iasi616_metop-a 239 0.000000 0.000000 0.000000 0.000000 0.000000 + 281 iasi616_metop-a 243 0.000000 0.000000 0.000000 0.000000 0.000000 + 282 iasi616_metop-a 246 0.000000 0.000000 0.000000 0.000000 0.000000 + 283 iasi616_metop-a 249 0.000000 0.000000 0.000000 0.000000 0.000000 + 284 iasi616_metop-a 252 0.000000 0.000000 0.000000 0.000000 0.000000 + 285 iasi616_metop-a 254 0.000000 0.000000 0.000000 0.000000 0.000000 + 286 iasi616_metop-a 259 0.000000 0.000000 0.000000 0.000000 0.000000 + 287 iasi616_metop-a 260 0.000000 0.000000 0.000000 0.000000 0.000000 + 288 iasi616_metop-a 262 0.000000 0.000000 0.000000 0.000000 0.000000 + 289 iasi616_metop-a 265 0.000000 0.000000 0.000000 0.000000 0.000000 + 290 iasi616_metop-a 267 0.000000 0.000000 0.000000 0.000000 0.000000 + 291 iasi616_metop-a 269 0.000000 0.000000 0.000000 0.000000 0.000000 + 292 iasi616_metop-a 275 0.000000 0.000000 0.000000 0.000000 0.000000 + 293 iasi616_metop-a 279 0.000000 0.000000 0.000000 0.000000 0.000000 + 294 iasi616_metop-a 282 0.000000 0.000000 0.000000 0.000000 0.000000 + 295 iasi616_metop-a 285 0.000000 0.000000 0.000000 0.000000 0.000000 + 296 iasi616_metop-a 294 0.000000 0.000000 0.000000 0.000000 0.000000 + 297 iasi616_metop-a 296 0.000000 0.000000 0.000000 0.000000 0.000000 + 298 iasi616_metop-a 299 0.000000 0.000000 0.000000 0.000000 0.000000 + 299 iasi616_metop-a 300 0.000000 0.000000 0.000000 0.000000 0.000000 + 300 iasi616_metop-a 303 0.000000 0.000000 0.000000 0.000000 0.000000 + 301 iasi616_metop-a 306 0.000000 0.000000 0.000000 0.000000 0.000000 + 302 iasi616_metop-a 309 0.000000 0.000000 0.000000 0.000000 0.000000 + 303 iasi616_metop-a 313 0.000000 0.000000 0.000000 0.000000 0.000000 + 304 iasi616_metop-a 320 0.000000 0.000000 0.000000 0.000000 0.000000 + 305 iasi616_metop-a 323 0.000000 0.000000 0.000000 0.000000 0.000000 + 306 iasi616_metop-a 326 0.000000 0.000000 0.000000 0.000000 0.000000 + 307 iasi616_metop-a 327 0.000000 0.000000 0.000000 0.000000 0.000000 + 308 iasi616_metop-a 329 0.000000 0.000000 0.000000 0.000000 0.000000 + 309 iasi616_metop-a 332 0.000000 0.000000 0.000000 0.000000 0.000000 + 310 iasi616_metop-a 335 0.000000 0.000000 0.000000 0.000000 0.000000 + 311 iasi616_metop-a 345 0.000000 0.000000 0.000000 0.000000 0.000000 + 312 iasi616_metop-a 347 0.000000 0.000000 0.000000 0.000000 0.000000 + 313 iasi616_metop-a 350 0.000000 0.000000 0.000000 0.000000 0.000000 + 314 iasi616_metop-a 354 0.000000 0.000000 0.000000 0.000000 0.000000 + 315 iasi616_metop-a 356 0.000000 0.000000 0.000000 0.000000 0.000000 + 316 iasi616_metop-a 360 0.000000 0.000000 0.000000 0.000000 0.000000 + 317 iasi616_metop-a 363 0.000000 0.000000 0.000000 0.000000 0.000000 + 318 iasi616_metop-a 366 0.000000 0.000000 0.000000 0.000000 0.000000 + 319 iasi616_metop-a 371 0.000000 0.000000 0.000000 0.000000 0.000000 + 320 iasi616_metop-a 372 0.000000 0.000000 0.000000 0.000000 0.000000 + 321 iasi616_metop-a 373 0.000000 0.000000 0.000000 0.000000 0.000000 + 322 iasi616_metop-a 375 0.000000 0.000000 0.000000 0.000000 0.000000 + 323 iasi616_metop-a 377 0.000000 0.000000 0.000000 0.000000 0.000000 + 324 iasi616_metop-a 379 0.000000 0.000000 0.000000 0.000000 0.000000 + 325 iasi616_metop-a 381 0.000000 0.000000 0.000000 0.000000 0.000000 + 326 iasi616_metop-a 383 0.000000 0.000000 0.000000 0.000000 0.000000 + 327 iasi616_metop-a 386 0.000000 0.000000 0.000000 0.000000 0.000000 + 328 iasi616_metop-a 389 0.000000 0.000000 0.000000 0.000000 0.000000 + 329 iasi616_metop-a 398 0.000000 0.000000 0.000000 0.000000 0.000000 + 330 iasi616_metop-a 401 0.000000 0.000000 0.000000 0.000000 0.000000 + 331 iasi616_metop-a 404 0.000000 0.000000 0.000000 0.000000 0.000000 + 332 iasi616_metop-a 405 0.000000 0.000000 0.000000 0.000000 0.000000 + 333 iasi616_metop-a 407 0.000000 0.000000 0.000000 0.000000 0.000000 + 334 iasi616_metop-a 408 0.000000 0.000000 0.000000 0.000000 0.000000 + 335 iasi616_metop-a 410 0.000000 0.000000 0.000000 0.000000 0.000000 + 336 iasi616_metop-a 411 0.000000 0.000000 0.000000 0.000000 0.000000 + 337 iasi616_metop-a 414 0.000000 0.000000 0.000000 0.000000 0.000000 + 338 iasi616_metop-a 416 0.000000 0.000000 0.000000 0.000000 0.000000 + 339 iasi616_metop-a 418 0.000000 0.000000 0.000000 0.000000 0.000000 + 340 iasi616_metop-a 423 0.000000 0.000000 0.000000 0.000000 0.000000 + 341 iasi616_metop-a 426 0.000000 0.000000 0.000000 0.000000 0.000000 + 342 iasi616_metop-a 428 0.000000 0.000000 0.000000 0.000000 0.000000 + 343 iasi616_metop-a 432 0.000000 0.000000 0.000000 0.000000 0.000000 + 344 iasi616_metop-a 433 0.000000 0.000000 0.000000 0.000000 0.000000 + 345 iasi616_metop-a 434 0.000000 0.000000 0.000000 0.000000 0.000000 + 346 iasi616_metop-a 439 0.000000 0.000000 0.000000 0.000000 0.000000 + 347 iasi616_metop-a 442 0.000000 0.000000 0.000000 0.000000 0.000000 + 348 iasi616_metop-a 445 0.000000 0.000000 0.000000 0.000000 0.000000 + 349 iasi616_metop-a 450 0.000000 0.000000 0.000000 0.000000 0.000000 + 350 iasi616_metop-a 457 0.000000 0.000000 0.000000 0.000000 0.000000 + 351 iasi616_metop-a 459 0.000000 0.000000 0.000000 0.000000 0.000000 + 352 iasi616_metop-a 472 0.000000 0.000000 0.000000 0.000000 0.000000 + 353 iasi616_metop-a 477 0.000000 0.000000 0.000000 0.000000 0.000000 + 354 iasi616_metop-a 483 0.000000 0.000000 0.000000 0.000000 0.000000 + 355 iasi616_metop-a 509 0.000000 0.000000 0.000000 0.000000 0.000000 + 356 iasi616_metop-a 515 0.000000 0.000000 0.000000 0.000000 0.000000 + 357 iasi616_metop-a 546 0.000000 0.000000 0.000000 0.000000 0.000000 + 358 iasi616_metop-a 552 0.000000 0.000000 0.000000 0.000000 0.000000 + 359 iasi616_metop-a 559 0.000000 0.000000 0.000000 0.000000 0.000000 + 360 iasi616_metop-a 566 0.000000 0.000000 0.000000 0.000000 0.000000 + 361 iasi616_metop-a 571 0.000000 0.000000 0.000000 0.000000 0.000000 + 362 iasi616_metop-a 573 0.000000 0.000000 0.000000 0.000000 0.000000 + 363 iasi616_metop-a 578 0.000000 0.000000 0.000000 0.000000 0.000000 + 364 iasi616_metop-a 584 0.000000 0.000000 0.000000 0.000000 0.000000 + 365 iasi616_metop-a 594 0.000000 0.000000 0.000000 0.000000 0.000000 + 366 iasi616_metop-a 625 0.000000 0.000000 0.000000 0.000000 0.000000 + 367 iasi616_metop-a 646 0.000000 0.000000 0.000000 0.000000 0.000000 + 368 iasi616_metop-a 662 0.000000 0.000000 0.000000 0.000000 0.000000 + 369 iasi616_metop-a 668 0.000000 0.000000 0.000000 0.000000 0.000000 + 370 iasi616_metop-a 705 0.000000 0.000000 0.000000 0.000000 0.000000 + 371 iasi616_metop-a 739 0.000000 0.000000 0.000000 0.000000 0.000000 + 372 iasi616_metop-a 756 0.000000 0.000000 0.000000 0.000000 0.000000 + 373 iasi616_metop-a 797 0.000000 0.000000 0.000000 0.000000 0.000000 + 374 iasi616_metop-a 867 0.000000 0.000000 0.000000 0.000000 0.000000 + 375 iasi616_metop-a 906 0.000000 0.000000 0.000000 0.000000 0.000000 + 376 iasi616_metop-a 921 0.000000 0.000000 0.000000 0.000000 0.000000 + 377 iasi616_metop-a 1027 0.000000 0.000000 0.000000 0.000000 0.000000 + 378 iasi616_metop-a 1046 0.000000 0.000000 0.000000 0.000000 0.000000 + 379 iasi616_metop-a 1090 0.000000 0.000000 0.000000 0.000000 0.000000 + 380 iasi616_metop-a 1098 0.000000 0.000000 0.000000 0.000000 0.000000 + 381 iasi616_metop-a 1121 0.000000 0.000000 0.000000 0.000000 0.000000 + 382 iasi616_metop-a 1133 0.000000 0.000000 0.000000 0.000000 0.000000 + 383 iasi616_metop-a 1173 0.000000 0.000000 0.000000 0.000000 0.000000 + 384 iasi616_metop-a 1191 0.000000 0.000000 0.000000 0.000000 0.000000 + 385 iasi616_metop-a 1194 0.000000 0.000000 0.000000 0.000000 0.000000 + 386 iasi616_metop-a 1222 0.000000 0.000000 0.000000 0.000000 0.000000 + 387 iasi616_metop-a 1271 0.000000 0.000000 0.000000 0.000000 0.000000 + 388 iasi616_metop-a 1283 0.000000 0.000000 0.000000 0.000000 0.000000 + 389 iasi616_metop-a 1338 0.000000 0.000000 0.000000 0.000000 0.000000 + 390 iasi616_metop-a 1409 0.000000 0.000000 0.000000 0.000000 0.000000 + 391 iasi616_metop-a 1414 0.000000 0.000000 0.000000 0.000000 0.000000 + 392 iasi616_metop-a 1420 0.000000 0.000000 0.000000 0.000000 0.000000 + 393 iasi616_metop-a 1424 0.000000 0.000000 0.000000 0.000000 0.000000 + 394 iasi616_metop-a 1427 0.000000 0.000000 0.000000 0.000000 0.000000 + 395 iasi616_metop-a 1430 0.000000 0.000000 0.000000 0.000000 0.000000 + 396 iasi616_metop-a 1434 0.000000 0.000000 0.000000 0.000000 0.000000 + 397 iasi616_metop-a 1440 0.000000 0.000000 0.000000 0.000000 0.000000 + 398 iasi616_metop-a 1442 0.000000 0.000000 0.000000 0.000000 0.000000 + 399 iasi616_metop-a 1445 0.000000 0.000000 0.000000 0.000000 0.000000 + 400 iasi616_metop-a 1450 0.000000 0.000000 0.000000 0.000000 0.000000 + 401 iasi616_metop-a 1454 0.000000 0.000000 0.000000 0.000000 0.000000 + 402 iasi616_metop-a 1460 0.000000 0.000000 0.000000 0.000000 0.000000 + 403 iasi616_metop-a 1463 0.000000 0.000000 0.000000 0.000000 0.000000 + 404 iasi616_metop-a 1469 0.000000 0.000000 0.000000 0.000000 0.000000 + 405 iasi616_metop-a 1474 0.000000 0.000000 0.000000 0.000000 0.000000 + 406 iasi616_metop-a 1479 0.000000 0.000000 0.000000 0.000000 0.000000 + 407 iasi616_metop-a 1483 0.000000 0.000000 0.000000 0.000000 0.000000 + 408 iasi616_metop-a 1487 0.000000 0.000000 0.000000 0.000000 0.000000 + 409 iasi616_metop-a 1494 0.000000 0.000000 0.000000 0.000000 0.000000 + 410 iasi616_metop-a 1496 0.000000 0.000000 0.000000 0.000000 0.000000 + 411 iasi616_metop-a 1502 0.000000 0.000000 0.000000 0.000000 0.000000 + 412 iasi616_metop-a 1505 0.000000 0.000000 0.000000 0.000000 0.000000 + 413 iasi616_metop-a 1509 0.000000 0.000000 0.000000 0.000000 0.000000 + 414 iasi616_metop-a 1510 0.000000 0.000000 0.000000 0.000000 0.000000 + 415 iasi616_metop-a 1513 0.000000 0.000000 0.000000 0.000000 0.000000 + 416 iasi616_metop-a 1518 0.000000 0.000000 0.000000 0.000000 0.000000 + 417 iasi616_metop-a 1521 0.000000 0.000000 0.000000 0.000000 0.000000 + 418 iasi616_metop-a 1526 0.000000 0.000000 0.000000 0.000000 0.000000 + 419 iasi616_metop-a 1529 0.000000 0.000000 0.000000 0.000000 0.000000 + 420 iasi616_metop-a 1532 0.000000 0.000000 0.000000 0.000000 0.000000 + 421 iasi616_metop-a 1536 0.000000 0.000000 0.000000 0.000000 0.000000 + 422 iasi616_metop-a 1537 0.000000 0.000000 0.000000 0.000000 0.000000 + 423 iasi616_metop-a 1541 0.000000 0.000000 0.000000 0.000000 0.000000 + 424 iasi616_metop-a 1545 0.000000 0.000000 0.000000 0.000000 0.000000 + 425 iasi616_metop-a 1548 0.000000 0.000000 0.000000 0.000000 0.000000 + 426 iasi616_metop-a 1553 0.000000 0.000000 0.000000 0.000000 0.000000 + 427 iasi616_metop-a 1560 0.000000 0.000000 0.000000 0.000000 0.000000 + 428 iasi616_metop-a 1568 0.000000 0.000000 0.000000 0.000000 0.000000 + 429 iasi616_metop-a 1574 0.000000 0.000000 0.000000 0.000000 0.000000 + 430 iasi616_metop-a 1579 0.000000 0.000000 0.000000 0.000000 0.000000 + 431 iasi616_metop-a 1583 0.000000 0.000000 0.000000 0.000000 0.000000 + 432 iasi616_metop-a 1585 0.000000 0.000000 0.000000 0.000000 0.000000 + 433 iasi616_metop-a 1587 0.000000 0.000000 0.000000 0.000000 0.000000 + 434 iasi616_metop-a 1606 0.000000 0.000000 0.000000 0.000000 0.000000 + 435 iasi616_metop-a 1626 0.000000 0.000000 0.000000 0.000000 0.000000 + 436 iasi616_metop-a 1639 0.000000 0.000000 0.000000 0.000000 0.000000 + 437 iasi616_metop-a 1643 0.000000 0.000000 0.000000 0.000000 0.000000 + 438 iasi616_metop-a 1652 0.000000 0.000000 0.000000 0.000000 0.000000 + 439 iasi616_metop-a 1658 0.000000 0.000000 0.000000 0.000000 0.000000 + 440 iasi616_metop-a 1659 0.000000 0.000000 0.000000 0.000000 0.000000 + 441 iasi616_metop-a 1666 0.000000 0.000000 0.000000 0.000000 0.000000 + 442 iasi616_metop-a 1671 0.000000 0.000000 0.000000 0.000000 0.000000 + 443 iasi616_metop-a 1675 0.000000 0.000000 0.000000 0.000000 0.000000 + 444 iasi616_metop-a 1681 0.000000 0.000000 0.000000 0.000000 0.000000 + 445 iasi616_metop-a 1694 0.000000 0.000000 0.000000 0.000000 0.000000 + 446 iasi616_metop-a 1697 0.000000 0.000000 0.000000 0.000000 0.000000 + 447 iasi616_metop-a 1710 0.000000 0.000000 0.000000 0.000000 0.000000 + 448 iasi616_metop-a 1786 0.000000 0.000000 0.000000 0.000000 0.000000 + 449 iasi616_metop-a 1791 0.000000 0.000000 0.000000 0.000000 0.000000 + 450 iasi616_metop-a 1805 0.000000 0.000000 0.000000 0.000000 0.000000 + 451 iasi616_metop-a 1839 0.000000 0.000000 0.000000 0.000000 0.000000 + 452 iasi616_metop-a 1884 0.000000 0.000000 0.000000 0.000000 0.000000 + 453 iasi616_metop-a 1913 0.000000 0.000000 0.000000 0.000000 0.000000 + 454 iasi616_metop-a 1946 0.000000 0.000000 0.000000 0.000000 0.000000 + 455 iasi616_metop-a 1947 0.000000 0.000000 0.000000 0.000000 0.000000 + 456 iasi616_metop-a 1991 0.000000 0.000000 0.000000 0.000000 0.000000 + 457 iasi616_metop-a 2019 0.000000 0.000000 0.000000 0.000000 0.000000 + 458 iasi616_metop-a 2094 0.000000 0.000000 0.000000 0.000000 0.000000 + 459 iasi616_metop-a 2119 0.000000 0.000000 0.000000 0.000000 0.000000 + 460 iasi616_metop-a 2213 0.000000 0.000000 0.000000 0.000000 0.000000 + 461 iasi616_metop-a 2239 0.000000 0.000000 0.000000 0.000000 0.000000 + 462 iasi616_metop-a 2271 0.000000 0.000000 0.000000 0.000000 0.000000 + 463 iasi616_metop-a 2289 0.000000 0.000000 0.000000 0.000000 0.000000 + 464 iasi616_metop-a 2321 0.000000 0.000000 0.000000 0.000000 0.000000 + 465 iasi616_metop-a 2333 0.000000 0.000000 0.000000 0.000000 0.000000 + 466 iasi616_metop-a 2346 0.000000 0.000000 0.000000 0.000000 0.000000 + 467 iasi616_metop-a 2349 0.000000 0.000000 0.000000 0.000000 0.000000 + 468 iasi616_metop-a 2352 0.000000 0.000000 0.000000 0.000000 0.000000 + 469 iasi616_metop-a 2359 0.000000 0.000000 0.000000 0.000000 0.000000 + 470 iasi616_metop-a 2367 0.000000 0.000000 0.000000 0.000000 0.000000 + 471 iasi616_metop-a 2374 0.000000 0.000000 0.000000 0.000000 0.000000 + 472 iasi616_metop-a 2398 0.000000 0.000000 0.000000 0.000000 0.000000 + 473 iasi616_metop-a 2426 0.000000 0.000000 0.000000 0.000000 0.000000 + 474 iasi616_metop-a 2562 0.000000 0.000000 0.000000 0.000000 0.000000 + 475 iasi616_metop-a 2701 0.000000 0.000000 0.000000 0.000000 0.000000 + 476 iasi616_metop-a 2741 0.000000 0.000000 0.000000 0.000000 0.000000 + 477 iasi616_metop-a 2745 0.000000 0.000000 0.000000 0.000000 0.000000 + 478 iasi616_metop-a 2760 0.000000 0.000000 0.000000 0.000000 0.000000 + 479 iasi616_metop-a 2819 0.000000 0.000000 0.000000 0.000000 0.000000 + 480 iasi616_metop-a 2889 0.000000 0.000000 0.000000 0.000000 0.000000 + 481 iasi616_metop-a 2907 0.000000 0.000000 0.000000 0.000000 0.000000 + 482 iasi616_metop-a 2910 0.000000 0.000000 0.000000 0.000000 0.000000 + 483 iasi616_metop-a 2919 0.000000 0.000000 0.000000 0.000000 0.000000 + 484 iasi616_metop-a 2921 0.000000 0.000000 0.000000 0.000000 0.000000 + 485 iasi616_metop-a 2939 0.000000 0.000000 0.000000 0.000000 0.000000 + 486 iasi616_metop-a 2944 0.000000 0.000000 0.000000 0.000000 0.000000 + 487 iasi616_metop-a 2945 0.000000 0.000000 0.000000 0.000000 0.000000 + 488 iasi616_metop-a 2948 0.000000 0.000000 0.000000 0.000000 0.000000 + 489 iasi616_metop-a 2951 0.000000 0.000000 0.000000 0.000000 0.000000 + 490 iasi616_metop-a 2958 0.000000 0.000000 0.000000 0.000000 0.000000 + 491 iasi616_metop-a 2971 0.000000 0.000000 0.000000 0.000000 0.000000 + 492 iasi616_metop-a 2977 0.000000 0.000000 0.000000 0.000000 0.000000 + 493 iasi616_metop-a 2985 0.000000 0.000000 0.000000 0.000000 0.000000 + 494 iasi616_metop-a 2988 0.000000 0.000000 0.000000 0.000000 0.000000 + 495 iasi616_metop-a 2990 0.000000 0.000000 0.000000 0.000000 0.000000 + 496 iasi616_metop-a 2991 0.000000 0.000000 0.000000 0.000000 0.000000 + 497 iasi616_metop-a 2993 0.000000 0.000000 0.000000 0.000000 0.000000 + 498 iasi616_metop-a 3002 0.000000 0.000000 0.000000 0.000000 0.000000 + 499 iasi616_metop-a 3008 0.000000 0.000000 0.000000 0.000000 0.000000 + 500 iasi616_metop-a 3014 0.000000 0.000000 0.000000 0.000000 0.000000 + 501 iasi616_metop-a 3027 0.000000 0.000000 0.000000 0.000000 0.000000 + 502 iasi616_metop-a 3029 0.000000 0.000000 0.000000 0.000000 0.000000 + 503 iasi616_metop-a 3030 0.000000 0.000000 0.000000 0.000000 0.000000 + 504 iasi616_metop-a 3036 0.000000 0.000000 0.000000 0.000000 0.000000 + 505 iasi616_metop-a 3047 0.000000 0.000000 0.000000 0.000000 0.000000 + 506 iasi616_metop-a 3049 0.000000 0.000000 0.000000 0.000000 0.000000 + 507 iasi616_metop-a 3052 0.000000 0.000000 0.000000 0.000000 0.000000 + 508 iasi616_metop-a 3053 0.000000 0.000000 0.000000 0.000000 0.000000 + 509 iasi616_metop-a 3055 0.000000 0.000000 0.000000 0.000000 0.000000 + 510 iasi616_metop-a 3058 0.000000 0.000000 0.000000 0.000000 0.000000 + 511 iasi616_metop-a 3064 0.000000 0.000000 0.000000 0.000000 0.000000 + 512 iasi616_metop-a 3069 0.000000 0.000000 0.000000 0.000000 0.000000 + 513 iasi616_metop-a 3087 0.000000 0.000000 0.000000 0.000000 0.000000 + 514 iasi616_metop-a 3093 0.000000 0.000000 0.000000 0.000000 0.000000 + 515 iasi616_metop-a 3098 0.000000 0.000000 0.000000 0.000000 0.000000 + 516 iasi616_metop-a 3105 0.000000 0.000000 0.000000 0.000000 0.000000 + 517 iasi616_metop-a 3107 0.000000 0.000000 0.000000 0.000000 0.000000 + 518 iasi616_metop-a 3110 0.000000 0.000000 0.000000 0.000000 0.000000 + 519 iasi616_metop-a 3116 0.000000 0.000000 0.000000 0.000000 0.000000 + 520 iasi616_metop-a 3127 0.000000 0.000000 0.000000 0.000000 0.000000 + 521 iasi616_metop-a 3129 0.000000 0.000000 0.000000 0.000000 0.000000 + 522 iasi616_metop-a 3136 0.000000 0.000000 0.000000 0.000000 0.000000 + 523 iasi616_metop-a 3146 0.000000 0.000000 0.000000 0.000000 0.000000 + 524 iasi616_metop-a 3151 0.000000 0.000000 0.000000 0.000000 0.000000 + 525 iasi616_metop-a 3160 0.000000 0.000000 0.000000 0.000000 0.000000 + 526 iasi616_metop-a 3165 0.000000 0.000000 0.000000 0.000000 0.000000 + 527 iasi616_metop-a 3168 0.000000 0.000000 0.000000 0.000000 0.000000 + 528 iasi616_metop-a 3175 0.000000 0.000000 0.000000 0.000000 0.000000 + 529 iasi616_metop-a 3178 0.000000 0.000000 0.000000 0.000000 0.000000 + 530 iasi616_metop-a 3189 0.000000 0.000000 0.000000 0.000000 0.000000 + 531 iasi616_metop-a 3207 0.000000 0.000000 0.000000 0.000000 0.000000 + 532 iasi616_metop-a 3228 0.000000 0.000000 0.000000 0.000000 0.000000 + 533 iasi616_metop-a 3244 0.000000 0.000000 0.000000 0.000000 0.000000 + 534 iasi616_metop-a 3248 0.000000 0.000000 0.000000 0.000000 0.000000 + 535 iasi616_metop-a 3252 0.000000 0.000000 0.000000 0.000000 0.000000 + 536 iasi616_metop-a 3256 0.000000 0.000000 0.000000 0.000000 0.000000 + 537 iasi616_metop-a 3263 0.000000 0.000000 0.000000 0.000000 0.000000 + 538 iasi616_metop-a 3281 0.000000 0.000000 0.000000 0.000000 0.000000 + 539 iasi616_metop-a 3295 0.000000 0.000000 0.000000 0.000000 0.000000 + 540 iasi616_metop-a 3303 0.000000 0.000000 0.000000 0.000000 0.000000 + 541 iasi616_metop-a 3309 0.000000 0.000000 0.000000 0.000000 0.000000 + 542 iasi616_metop-a 3312 0.000000 0.000000 0.000000 0.000000 0.000000 + 543 iasi616_metop-a 3322 0.000000 0.000000 0.000000 0.000000 0.000000 + 544 iasi616_metop-a 3326 0.000000 0.000000 0.000000 0.000000 0.000000 + 545 iasi616_metop-a 3354 0.000000 0.000000 0.000000 0.000000 0.000000 + 546 iasi616_metop-a 3366 0.000000 0.000000 0.000000 0.000000 0.000000 + 547 iasi616_metop-a 3375 0.000000 0.000000 0.000000 0.000000 0.000000 + 548 iasi616_metop-a 3378 0.000000 0.000000 0.000000 0.000000 0.000000 + 549 iasi616_metop-a 3411 0.000000 0.000000 0.000000 0.000000 0.000000 + 550 iasi616_metop-a 3416 0.000000 0.000000 0.000000 0.000000 0.000000 + 551 iasi616_metop-a 3432 0.000000 0.000000 0.000000 0.000000 0.000000 + 552 iasi616_metop-a 3438 0.000000 0.000000 0.000000 0.000000 0.000000 + 553 iasi616_metop-a 3440 0.000000 0.000000 0.000000 0.000000 0.000000 + 554 iasi616_metop-a 3442 0.000000 0.000000 0.000000 0.000000 0.000000 + 555 iasi616_metop-a 3444 0.000000 0.000000 0.000000 0.000000 0.000000 + 556 iasi616_metop-a 3446 0.000000 0.000000 0.000000 0.000000 0.000000 + 557 iasi616_metop-a 3448 0.000000 0.000000 0.000000 0.000000 0.000000 + 558 iasi616_metop-a 3450 0.000000 0.000000 0.000000 0.000000 0.000000 + 559 iasi616_metop-a 3452 0.000000 0.000000 0.000000 0.000000 0.000000 + 560 iasi616_metop-a 3454 0.000000 0.000000 0.000000 0.000000 0.000000 + 561 iasi616_metop-a 3458 0.000000 0.000000 0.000000 0.000000 0.000000 + 562 iasi616_metop-a 3467 0.000000 0.000000 0.000000 0.000000 0.000000 + 563 iasi616_metop-a 3476 0.000000 0.000000 0.000000 0.000000 0.000000 + 564 iasi616_metop-a 3484 0.000000 0.000000 0.000000 0.000000 0.000000 + 565 iasi616_metop-a 3491 0.000000 0.000000 0.000000 0.000000 0.000000 + 566 iasi616_metop-a 3497 0.000000 0.000000 0.000000 0.000000 0.000000 + 567 iasi616_metop-a 3499 0.000000 0.000000 0.000000 0.000000 0.000000 + 568 iasi616_metop-a 3504 0.000000 0.000000 0.000000 0.000000 0.000000 + 569 iasi616_metop-a 3506 0.000000 0.000000 0.000000 0.000000 0.000000 + 570 iasi616_metop-a 3509 0.000000 0.000000 0.000000 0.000000 0.000000 + 571 iasi616_metop-a 3518 0.000000 0.000000 0.000000 0.000000 0.000000 + 572 iasi616_metop-a 3527 0.000000 0.000000 0.000000 0.000000 0.000000 + 573 iasi616_metop-a 3555 0.000000 0.000000 0.000000 0.000000 0.000000 + 574 iasi616_metop-a 3575 0.000000 0.000000 0.000000 0.000000 0.000000 + 575 iasi616_metop-a 3577 0.000000 0.000000 0.000000 0.000000 0.000000 + 576 iasi616_metop-a 3580 0.000000 0.000000 0.000000 0.000000 0.000000 + 577 iasi616_metop-a 3582 0.000000 0.000000 0.000000 0.000000 0.000000 + 578 iasi616_metop-a 3586 0.000000 0.000000 0.000000 0.000000 0.000000 + 579 iasi616_metop-a 3589 0.000000 0.000000 0.000000 0.000000 0.000000 + 580 iasi616_metop-a 3599 0.000000 0.000000 0.000000 0.000000 0.000000 + 581 iasi616_metop-a 3610 0.000000 0.000000 0.000000 0.000000 0.000000 + 582 iasi616_metop-a 3626 0.000000 0.000000 0.000000 0.000000 0.000000 + 583 iasi616_metop-a 3638 0.000000 0.000000 0.000000 0.000000 0.000000 + 584 iasi616_metop-a 3646 0.000000 0.000000 0.000000 0.000000 0.000000 + 585 iasi616_metop-a 3653 0.000000 0.000000 0.000000 0.000000 0.000000 + 586 iasi616_metop-a 3658 0.000000 0.000000 0.000000 0.000000 0.000000 + 587 iasi616_metop-a 3661 0.000000 0.000000 0.000000 0.000000 0.000000 + 588 iasi616_metop-a 3673 0.000000 0.000000 0.000000 0.000000 0.000000 + 589 iasi616_metop-a 3689 0.000000 0.000000 0.000000 0.000000 0.000000 + 590 iasi616_metop-a 3700 0.000000 0.000000 0.000000 0.000000 0.000000 + 591 iasi616_metop-a 3710 0.000000 0.000000 0.000000 0.000000 0.000000 + 592 iasi616_metop-a 3726 0.000000 0.000000 0.000000 0.000000 0.000000 + 593 iasi616_metop-a 3763 0.000000 0.000000 0.000000 0.000000 0.000000 + 594 iasi616_metop-a 3814 0.000000 0.000000 0.000000 0.000000 0.000000 + 595 iasi616_metop-a 3841 0.000000 0.000000 0.000000 0.000000 0.000000 + 596 iasi616_metop-a 3888 0.000000 0.000000 0.000000 0.000000 0.000000 + 597 iasi616_metop-a 4032 0.000000 0.000000 0.000000 0.000000 0.000000 + 598 iasi616_metop-a 4059 0.000000 0.000000 0.000000 0.000000 0.000000 + 599 iasi616_metop-a 4068 0.000000 0.000000 0.000000 0.000000 0.000000 + 600 iasi616_metop-a 4082 0.000000 0.000000 0.000000 0.000000 0.000000 + 601 iasi616_metop-a 4095 0.000000 0.000000 0.000000 0.000000 0.000000 + 602 iasi616_metop-a 4160 0.000000 0.000000 0.000000 0.000000 0.000000 + 603 iasi616_metop-a 4234 0.000000 0.000000 0.000000 0.000000 0.000000 + 604 iasi616_metop-a 4257 0.000000 0.000000 0.000000 0.000000 0.000000 + 605 iasi616_metop-a 4411 0.000000 0.000000 0.000000 0.000000 0.000000 + 606 iasi616_metop-a 4498 0.000000 0.000000 0.000000 0.000000 0.000000 + 607 iasi616_metop-a 4520 0.000000 0.000000 0.000000 0.000000 0.000000 + 608 iasi616_metop-a 4552 0.000000 0.000000 0.000000 0.000000 0.000000 + 609 iasi616_metop-a 4567 0.000000 0.000000 0.000000 0.000000 0.000000 + 610 iasi616_metop-a 4608 0.000000 0.000000 0.000000 0.000000 0.000000 + 611 iasi616_metop-a 4646 0.000000 0.000000 0.000000 0.000000 0.000000 + 612 iasi616_metop-a 4698 0.000000 0.000000 0.000000 0.000000 0.000000 + 613 iasi616_metop-a 4808 0.000000 0.000000 0.000000 0.000000 0.000000 + 614 iasi616_metop-a 4849 0.000000 0.000000 0.000000 0.000000 0.000000 + 615 iasi616_metop-a 4920 0.000000 0.000000 0.000000 0.000000 0.000000 + 616 iasi616_metop-a 4939 0.000000 0.000000 0.000000 0.000000 0.000000 + 617 iasi616_metop-a 4947 0.000000 0.000000 0.000000 0.000000 0.000000 + 618 iasi616_metop-a 4967 0.000000 0.000000 0.000000 0.000000 0.000000 + 619 iasi616_metop-a 4991 0.000000 0.000000 0.000000 0.000000 0.000000 + 620 iasi616_metop-a 4996 0.000000 0.000000 0.000000 0.000000 0.000000 + 621 iasi616_metop-a 5015 0.000000 0.000000 0.000000 0.000000 0.000000 + 622 iasi616_metop-a 5028 0.000000 0.000000 0.000000 0.000000 0.000000 + 623 iasi616_metop-a 5056 0.000000 0.000000 0.000000 0.000000 0.000000 + 624 iasi616_metop-a 5128 0.000000 0.000000 0.000000 0.000000 0.000000 + 625 iasi616_metop-a 5130 0.000000 0.000000 0.000000 0.000000 0.000000 + 626 iasi616_metop-a 5144 0.000000 0.000000 0.000000 0.000000 0.000000 + 627 iasi616_metop-a 5170 0.000000 0.000000 0.000000 0.000000 0.000000 + 628 iasi616_metop-a 5178 0.000000 0.000000 0.000000 0.000000 0.000000 + 629 iasi616_metop-a 5183 0.000000 0.000000 0.000000 0.000000 0.000000 + 630 iasi616_metop-a 5188 0.000000 0.000000 0.000000 0.000000 0.000000 + 631 iasi616_metop-a 5191 0.000000 0.000000 0.000000 0.000000 0.000000 + 632 iasi616_metop-a 5368 0.000000 0.000000 0.000000 0.000000 0.000000 + 633 iasi616_metop-a 5371 0.000000 0.000000 0.000000 0.000000 0.000000 + 634 iasi616_metop-a 5379 0.000000 0.000000 0.000000 0.000000 0.000000 + 635 iasi616_metop-a 5381 0.000000 0.000000 0.000000 0.000000 0.000000 + 636 iasi616_metop-a 5383 0.000000 0.000000 0.000000 0.000000 0.000000 + 637 iasi616_metop-a 5397 0.000000 0.000000 0.000000 0.000000 0.000000 + 638 iasi616_metop-a 5399 0.000000 0.000000 0.000000 0.000000 0.000000 + 639 iasi616_metop-a 5401 0.000000 0.000000 0.000000 0.000000 0.000000 + 640 iasi616_metop-a 5403 0.000000 0.000000 0.000000 0.000000 0.000000 + 641 iasi616_metop-a 5405 0.000000 0.000000 0.000000 0.000000 0.000000 + 642 iasi616_metop-a 5446 0.000000 0.000000 0.000000 0.000000 0.000000 + 643 iasi616_metop-a 5455 0.000000 0.000000 0.000000 0.000000 0.000000 + 644 iasi616_metop-a 5472 0.000000 0.000000 0.000000 0.000000 0.000000 + 645 iasi616_metop-a 5480 0.000000 0.000000 0.000000 0.000000 0.000000 + 646 iasi616_metop-a 5483 0.000000 0.000000 0.000000 0.000000 0.000000 + 647 iasi616_metop-a 5485 0.000000 0.000000 0.000000 0.000000 0.000000 + 648 iasi616_metop-a 5492 0.000000 0.000000 0.000000 0.000000 0.000000 + 649 iasi616_metop-a 5497 0.000000 0.000000 0.000000 0.000000 0.000000 + 650 iasi616_metop-a 5502 0.000000 0.000000 0.000000 0.000000 0.000000 + 651 iasi616_metop-a 5507 0.000000 0.000000 0.000000 0.000000 0.000000 + 652 iasi616_metop-a 5509 0.000000 0.000000 0.000000 0.000000 0.000000 + 653 iasi616_metop-a 5517 0.000000 0.000000 0.000000 0.000000 0.000000 + 654 iasi616_metop-a 5528 0.000000 0.000000 0.000000 0.000000 0.000000 + 655 iasi616_metop-a 5558 0.000000 0.000000 0.000000 0.000000 0.000000 + 656 iasi616_metop-a 5697 0.000000 0.000000 0.000000 0.000000 0.000000 + 657 iasi616_metop-a 5714 0.000000 0.000000 0.000000 0.000000 0.000000 + 658 iasi616_metop-a 5749 0.000000 0.000000 0.000000 0.000000 0.000000 + 659 iasi616_metop-a 5766 0.000000 0.000000 0.000000 0.000000 0.000000 + 660 iasi616_metop-a 5785 0.000000 0.000000 0.000000 0.000000 0.000000 + 661 iasi616_metop-a 5798 0.000000 0.000000 0.000000 0.000000 0.000000 + 662 iasi616_metop-a 5799 0.000000 0.000000 0.000000 0.000000 0.000000 + 663 iasi616_metop-a 5801 0.000000 0.000000 0.000000 0.000000 0.000000 + 664 iasi616_metop-a 5817 0.000000 0.000000 0.000000 0.000000 0.000000 + 665 iasi616_metop-a 5833 0.000000 0.000000 0.000000 0.000000 0.000000 + 666 iasi616_metop-a 5834 0.000000 0.000000 0.000000 0.000000 0.000000 + 667 iasi616_metop-a 5836 0.000000 0.000000 0.000000 0.000000 0.000000 + 668 iasi616_metop-a 5849 0.000000 0.000000 0.000000 0.000000 0.000000 + 669 iasi616_metop-a 5851 0.000000 0.000000 0.000000 0.000000 0.000000 + 670 iasi616_metop-a 5852 0.000000 0.000000 0.000000 0.000000 0.000000 + 671 iasi616_metop-a 5865 0.000000 0.000000 0.000000 0.000000 0.000000 + 672 iasi616_metop-a 5869 0.000000 0.000000 0.000000 0.000000 0.000000 + 673 iasi616_metop-a 5881 0.000000 0.000000 0.000000 0.000000 0.000000 + 674 iasi616_metop-a 5884 0.000000 0.000000 0.000000 0.000000 0.000000 + 675 iasi616_metop-a 5897 0.000000 0.000000 0.000000 0.000000 0.000000 + 676 iasi616_metop-a 5900 0.000000 0.000000 0.000000 0.000000 0.000000 + 677 iasi616_metop-a 5916 0.000000 0.000000 0.000000 0.000000 0.000000 + 678 iasi616_metop-a 5932 0.000000 0.000000 0.000000 0.000000 0.000000 + 679 iasi616_metop-a 5948 0.000000 0.000000 0.000000 0.000000 0.000000 + 680 iasi616_metop-a 5963 0.000000 0.000000 0.000000 0.000000 0.000000 + 681 iasi616_metop-a 5968 0.000000 0.000000 0.000000 0.000000 0.000000 + 682 iasi616_metop-a 5978 0.000000 0.000000 0.000000 0.000000 0.000000 + 683 iasi616_metop-a 5988 0.000000 0.000000 0.000000 0.000000 0.000000 + 684 iasi616_metop-a 5992 0.000000 0.000000 0.000000 0.000000 0.000000 + 685 iasi616_metop-a 5994 0.000000 0.000000 0.000000 0.000000 0.000000 + 686 iasi616_metop-a 5997 0.000000 0.000000 0.000000 0.000000 0.000000 + 687 iasi616_metop-a 6003 0.000000 0.000000 0.000000 0.000000 0.000000 + 688 iasi616_metop-a 6008 0.000000 0.000000 0.000000 0.000000 0.000000 + 689 iasi616_metop-a 6023 0.000000 0.000000 0.000000 0.000000 0.000000 + 690 iasi616_metop-a 6026 0.000000 0.000000 0.000000 0.000000 0.000000 + 691 iasi616_metop-a 6039 0.000000 0.000000 0.000000 0.000000 0.000000 + 692 iasi616_metop-a 6053 0.000000 0.000000 0.000000 0.000000 0.000000 + 693 iasi616_metop-a 6056 0.000000 0.000000 0.000000 0.000000 0.000000 + 694 iasi616_metop-a 6067 0.000000 0.000000 0.000000 0.000000 0.000000 + 695 iasi616_metop-a 6071 0.000000 0.000000 0.000000 0.000000 0.000000 + 696 iasi616_metop-a 6082 0.000000 0.000000 0.000000 0.000000 0.000000 + 697 iasi616_metop-a 6085 0.000000 0.000000 0.000000 0.000000 0.000000 + 698 iasi616_metop-a 6098 0.000000 0.000000 0.000000 0.000000 0.000000 + 699 iasi616_metop-a 6112 0.000000 0.000000 0.000000 0.000000 0.000000 + 700 iasi616_metop-a 6126 0.000000 0.000000 0.000000 0.000000 0.000000 + 701 iasi616_metop-a 6135 0.000000 0.000000 0.000000 0.000000 0.000000 + 702 iasi616_metop-a 6140 0.000000 0.000000 0.000000 0.000000 0.000000 + 703 iasi616_metop-a 6149 0.000000 0.000000 0.000000 0.000000 0.000000 + 704 iasi616_metop-a 6154 0.000000 0.000000 0.000000 0.000000 0.000000 + 705 iasi616_metop-a 6158 0.000000 0.000000 0.000000 0.000000 0.000000 + 706 iasi616_metop-a 6161 0.000000 0.000000 0.000000 0.000000 0.000000 + 707 iasi616_metop-a 6168 0.000000 0.000000 0.000000 0.000000 0.000000 + 708 iasi616_metop-a 6174 0.000000 0.000000 0.000000 0.000000 0.000000 + 709 iasi616_metop-a 6182 0.000000 0.000000 0.000000 0.000000 0.000000 + 710 iasi616_metop-a 6187 0.000000 0.000000 0.000000 0.000000 0.000000 + 711 iasi616_metop-a 6205 0.000000 0.000000 0.000000 0.000000 0.000000 + 712 iasi616_metop-a 6209 0.000000 0.000000 0.000000 0.000000 0.000000 + 713 iasi616_metop-a 6213 0.000000 0.000000 0.000000 0.000000 0.000000 + 714 iasi616_metop-a 6317 0.000000 0.000000 0.000000 0.000000 0.000000 + 715 iasi616_metop-a 6339 0.000000 0.000000 0.000000 0.000000 0.000000 + 716 iasi616_metop-a 6342 0.000000 0.000000 0.000000 0.000000 0.000000 + 717 iasi616_metop-a 6366 0.000000 0.000000 0.000000 0.000000 0.000000 + 718 iasi616_metop-a 6381 0.000000 0.000000 0.000000 0.000000 0.000000 + 719 iasi616_metop-a 6391 0.000000 0.000000 0.000000 0.000000 0.000000 + 720 iasi616_metop-a 6489 0.000000 0.000000 0.000000 0.000000 0.000000 + 721 iasi616_metop-a 6962 0.000000 0.000000 0.000000 0.000000 0.000000 + 722 iasi616_metop-a 6966 0.000000 0.000000 0.000000 0.000000 0.000000 + 723 iasi616_metop-a 6970 0.000000 0.000000 0.000000 0.000000 0.000000 + 724 iasi616_metop-a 6975 0.000000 0.000000 0.000000 0.000000 0.000000 + 725 iasi616_metop-a 6977 0.000000 0.000000 0.000000 0.000000 0.000000 + 726 iasi616_metop-a 6982 0.000000 0.000000 0.000000 0.000000 0.000000 + 727 iasi616_metop-a 6985 0.000000 0.000000 0.000000 0.000000 0.000000 + 728 iasi616_metop-a 6987 0.000000 0.000000 0.000000 0.000000 0.000000 + 729 iasi616_metop-a 6989 0.000000 0.000000 0.000000 0.000000 0.000000 + 730 iasi616_metop-a 6991 0.000000 0.000000 0.000000 0.000000 0.000000 + 731 iasi616_metop-a 6993 0.000000 0.000000 0.000000 0.000000 0.000000 + 732 iasi616_metop-a 6995 0.000000 0.000000 0.000000 0.000000 0.000000 + 733 iasi616_metop-a 6997 0.000000 0.000000 0.000000 0.000000 0.000000 + 734 iasi616_metop-a 6999 0.000000 0.000000 0.000000 0.000000 0.000000 + 735 iasi616_metop-a 7000 0.000000 0.000000 0.000000 0.000000 0.000000 + 736 iasi616_metop-a 7004 0.000000 0.000000 0.000000 0.000000 0.000000 + 737 iasi616_metop-a 7008 0.000000 0.000000 0.000000 0.000000 0.000000 + 738 iasi616_metop-a 7013 0.000000 0.000000 0.000000 0.000000 0.000000 + 739 iasi616_metop-a 7016 0.000000 0.000000 0.000000 0.000000 0.000000 + 740 iasi616_metop-a 7021 0.000000 0.000000 0.000000 0.000000 0.000000 + 741 iasi616_metop-a 7024 0.000000 0.000000 0.000000 0.000000 0.000000 + 742 iasi616_metop-a 7027 0.000000 0.000000 0.000000 0.000000 0.000000 + 743 iasi616_metop-a 7029 0.000000 0.000000 0.000000 0.000000 0.000000 + 744 iasi616_metop-a 7032 0.000000 0.000000 0.000000 0.000000 0.000000 + 745 iasi616_metop-a 7038 0.000000 0.000000 0.000000 0.000000 0.000000 + 746 iasi616_metop-a 7043 0.000000 0.000000 0.000000 0.000000 0.000000 + 747 iasi616_metop-a 7046 0.000000 0.000000 0.000000 0.000000 0.000000 + 748 iasi616_metop-a 7049 0.000000 0.000000 0.000000 0.000000 0.000000 + 749 iasi616_metop-a 7069 0.000000 0.000000 0.000000 0.000000 0.000000 + 750 iasi616_metop-a 7072 0.000000 0.000000 0.000000 0.000000 0.000000 + 751 iasi616_metop-a 7076 0.000000 0.000000 0.000000 0.000000 0.000000 + 752 iasi616_metop-a 7081 0.000000 0.000000 0.000000 0.000000 0.000000 + 753 iasi616_metop-a 7084 0.000000 0.000000 0.000000 0.000000 0.000000 + 754 iasi616_metop-a 7089 0.000000 0.000000 0.000000 0.000000 0.000000 + 755 iasi616_metop-a 7099 0.000000 0.000000 0.000000 0.000000 0.000000 + 756 iasi616_metop-a 7209 0.000000 0.000000 0.000000 0.000000 0.000000 + 757 iasi616_metop-a 7222 0.000000 0.000000 0.000000 0.000000 0.000000 + 758 iasi616_metop-a 7231 0.000000 0.000000 0.000000 0.000000 0.000000 + 759 iasi616_metop-a 7235 0.000000 0.000000 0.000000 0.000000 0.000000 + 760 iasi616_metop-a 7247 0.000000 0.000000 0.000000 0.000000 0.000000 + 761 iasi616_metop-a 7267 0.000000 0.000000 0.000000 0.000000 0.000000 + 762 iasi616_metop-a 7269 0.000000 0.000000 0.000000 0.000000 0.000000 + 763 iasi616_metop-a 7284 0.000000 0.000000 0.000000 0.000000 0.000000 + 764 iasi616_metop-a 7389 0.000000 0.000000 0.000000 0.000000 0.000000 + 765 iasi616_metop-a 7419 0.000000 0.000000 0.000000 0.000000 0.000000 + 766 iasi616_metop-a 7423 0.000000 0.000000 0.000000 0.000000 0.000000 + 767 iasi616_metop-a 7424 0.000000 0.000000 0.000000 0.000000 0.000000 + 768 iasi616_metop-a 7426 0.000000 0.000000 0.000000 0.000000 0.000000 + 769 iasi616_metop-a 7428 0.000000 0.000000 0.000000 0.000000 0.000000 + 770 iasi616_metop-a 7431 0.000000 0.000000 0.000000 0.000000 0.000000 + 771 iasi616_metop-a 7436 0.000000 0.000000 0.000000 0.000000 0.000000 + 772 iasi616_metop-a 7444 0.000000 0.000000 0.000000 0.000000 0.000000 + 773 iasi616_metop-a 7475 0.000000 0.000000 0.000000 0.000000 0.000000 + 774 iasi616_metop-a 7549 0.000000 0.000000 0.000000 0.000000 0.000000 + 775 iasi616_metop-a 7584 0.000000 0.000000 0.000000 0.000000 0.000000 + 776 iasi616_metop-a 7665 0.000000 0.000000 0.000000 0.000000 0.000000 + 777 iasi616_metop-a 7666 0.000000 0.000000 0.000000 0.000000 0.000000 + 778 iasi616_metop-a 7831 0.000000 0.000000 0.000000 0.000000 0.000000 + 779 iasi616_metop-a 7836 0.000000 0.000000 0.000000 0.000000 0.000000 + 780 iasi616_metop-a 7853 0.000000 0.000000 0.000000 0.000000 0.000000 + 781 iasi616_metop-a 7865 0.000000 0.000000 0.000000 0.000000 0.000000 + 782 iasi616_metop-a 7885 0.000000 0.000000 0.000000 0.000000 0.000000 + 783 iasi616_metop-a 7888 0.000000 0.000000 0.000000 0.000000 0.000000 + 784 iasi616_metop-a 7912 0.000000 0.000000 0.000000 0.000000 0.000000 + 785 iasi616_metop-a 7950 0.000000 0.000000 0.000000 0.000000 0.000000 + 786 iasi616_metop-a 7972 0.000000 0.000000 0.000000 0.000000 0.000000 + 787 iasi616_metop-a 7980 0.000000 0.000000 0.000000 0.000000 0.000000 + 788 iasi616_metop-a 7995 0.000000 0.000000 0.000000 0.000000 0.000000 + 789 iasi616_metop-a 8007 0.000000 0.000000 0.000000 0.000000 0.000000 + 790 iasi616_metop-a 8015 0.000000 0.000000 0.000000 0.000000 0.000000 + 791 iasi616_metop-a 8055 0.000000 0.000000 0.000000 0.000000 0.000000 + 792 iasi616_metop-a 8078 0.000000 0.000000 0.000000 0.000000 0.000000 + 793 airs281SUBSET_aqua 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 794 airs281SUBSET_aqua 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 795 airs281SUBSET_aqua 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 796 airs281SUBSET_aqua 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 797 airs281SUBSET_aqua 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 798 airs281SUBSET_aqua 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 799 airs281SUBSET_aqua 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 800 airs281SUBSET_aqua 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 801 airs281SUBSET_aqua 20 0.000000 0.000000 0.000000 0.000000 0.000000 + 802 airs281SUBSET_aqua 21 0.000000 0.000000 0.000000 0.000000 0.000000 + 803 airs281SUBSET_aqua 22 0.000000 0.000000 0.000000 0.000000 0.000000 + 804 airs281SUBSET_aqua 24 0.000000 0.000000 0.000000 0.000000 0.000000 + 805 airs281SUBSET_aqua 27 0.000000 0.000000 0.000000 0.000000 0.000000 + 806 airs281SUBSET_aqua 28 0.000000 0.000000 0.000000 0.000000 0.000000 + 807 airs281SUBSET_aqua 30 0.000000 0.000000 0.000000 0.000000 0.000000 + 808 airs281SUBSET_aqua 36 0.000000 0.000000 0.000000 0.000000 0.000000 + 809 airs281SUBSET_aqua 39 0.000000 0.000000 0.000000 0.000000 0.000000 + 810 airs281SUBSET_aqua 40 0.000000 0.000000 0.000000 0.000000 0.000000 + 811 airs281SUBSET_aqua 42 0.000000 0.000000 0.000000 0.000000 0.000000 + 812 airs281SUBSET_aqua 51 0.000000 0.000000 0.000000 0.000000 0.000000 + 813 airs281SUBSET_aqua 52 0.000000 0.000000 0.000000 0.000000 0.000000 + 814 airs281SUBSET_aqua 54 0.000000 0.000000 0.000000 0.000000 0.000000 + 815 airs281SUBSET_aqua 55 0.000000 0.000000 0.000000 0.000000 0.000000 + 816 airs281SUBSET_aqua 56 0.000000 0.000000 0.000000 0.000000 0.000000 + 817 airs281SUBSET_aqua 59 0.000000 0.000000 0.000000 0.000000 0.000000 + 818 airs281SUBSET_aqua 62 0.000000 0.000000 0.000000 0.000000 0.000000 + 819 airs281SUBSET_aqua 63 0.000000 0.000000 0.000000 0.000000 0.000000 + 820 airs281SUBSET_aqua 68 0.000000 0.000000 0.000000 0.000000 0.000000 + 821 airs281SUBSET_aqua 69 0.000000 0.000000 0.000000 0.000000 0.000000 + 822 airs281SUBSET_aqua 71 0.000000 0.000000 0.000000 0.000000 0.000000 + 823 airs281SUBSET_aqua 72 0.000000 0.000000 0.000000 0.000000 0.000000 + 824 airs281SUBSET_aqua 73 0.000000 0.000000 0.000000 0.000000 0.000000 + 825 airs281SUBSET_aqua 74 0.000000 0.000000 0.000000 0.000000 0.000000 + 826 airs281SUBSET_aqua 75 0.000000 0.000000 0.000000 0.000000 0.000000 + 827 airs281SUBSET_aqua 76 0.000000 0.000000 0.000000 0.000000 0.000000 + 828 airs281SUBSET_aqua 77 0.000000 0.000000 0.000000 0.000000 0.000000 + 829 airs281SUBSET_aqua 78 0.000000 0.000000 0.000000 0.000000 0.000000 + 830 airs281SUBSET_aqua 79 0.000000 0.000000 0.000000 0.000000 0.000000 + 831 airs281SUBSET_aqua 80 0.000000 0.000000 0.000000 0.000000 0.000000 + 832 airs281SUBSET_aqua 82 0.000000 0.000000 0.000000 0.000000 0.000000 + 833 airs281SUBSET_aqua 83 0.000000 0.000000 0.000000 0.000000 0.000000 + 834 airs281SUBSET_aqua 84 0.000000 0.000000 0.000000 0.000000 0.000000 + 835 airs281SUBSET_aqua 86 0.000000 0.000000 0.000000 0.000000 0.000000 + 836 airs281SUBSET_aqua 92 0.000000 0.000000 0.000000 0.000000 0.000000 + 837 airs281SUBSET_aqua 93 0.000000 0.000000 0.000000 0.000000 0.000000 + 838 airs281SUBSET_aqua 98 0.000000 0.000000 0.000000 0.000000 0.000000 + 839 airs281SUBSET_aqua 99 0.000000 0.000000 0.000000 0.000000 0.000000 + 840 airs281SUBSET_aqua 101 0.000000 0.000000 0.000000 0.000000 0.000000 + 841 airs281SUBSET_aqua 104 0.000000 0.000000 0.000000 0.000000 0.000000 + 842 airs281SUBSET_aqua 105 0.000000 0.000000 0.000000 0.000000 0.000000 + 843 airs281SUBSET_aqua 108 0.000000 0.000000 0.000000 0.000000 0.000000 + 844 airs281SUBSET_aqua 110 0.000000 0.000000 0.000000 0.000000 0.000000 + 845 airs281SUBSET_aqua 111 0.000000 0.000000 0.000000 0.000000 0.000000 + 846 airs281SUBSET_aqua 113 0.000000 0.000000 0.000000 0.000000 0.000000 + 847 airs281SUBSET_aqua 116 0.000000 0.000000 0.000000 0.000000 0.000000 + 848 airs281SUBSET_aqua 117 0.000000 0.000000 0.000000 0.000000 0.000000 + 849 airs281SUBSET_aqua 123 0.000000 0.000000 0.000000 0.000000 0.000000 + 850 airs281SUBSET_aqua 124 0.000000 0.000000 0.000000 0.000000 0.000000 + 851 airs281SUBSET_aqua 128 0.000000 0.000000 0.000000 0.000000 0.000000 + 852 airs281SUBSET_aqua 129 0.000000 0.000000 0.000000 0.000000 0.000000 + 853 airs281SUBSET_aqua 138 0.000000 0.000000 0.000000 0.000000 0.000000 + 854 airs281SUBSET_aqua 139 0.000000 0.000000 0.000000 0.000000 0.000000 + 855 airs281SUBSET_aqua 144 0.000000 0.000000 0.000000 0.000000 0.000000 + 856 airs281SUBSET_aqua 145 0.000000 0.000000 0.000000 0.000000 0.000000 + 857 airs281SUBSET_aqua 150 0.000000 0.000000 0.000000 0.000000 0.000000 + 858 airs281SUBSET_aqua 151 0.000000 0.000000 0.000000 0.000000 0.000000 + 859 airs281SUBSET_aqua 156 0.000000 0.000000 0.000000 0.000000 0.000000 + 860 airs281SUBSET_aqua 157 0.000000 0.000000 0.000000 0.000000 0.000000 + 861 airs281SUBSET_aqua 159 0.000000 0.000000 0.000000 0.000000 0.000000 + 862 airs281SUBSET_aqua 162 0.000000 0.000000 0.000000 0.000000 0.000000 + 863 airs281SUBSET_aqua 165 0.000000 0.000000 0.000000 0.000000 0.000000 + 864 airs281SUBSET_aqua 168 0.000000 0.000000 0.000000 0.000000 0.000000 + 865 airs281SUBSET_aqua 169 0.000000 0.000000 0.000000 0.000000 0.000000 + 866 airs281SUBSET_aqua 170 0.000000 0.000000 0.000000 0.000000 0.000000 + 867 airs281SUBSET_aqua 172 0.000000 0.000000 0.000000 0.000000 0.000000 + 868 airs281SUBSET_aqua 173 0.000000 0.000000 0.000000 0.000000 0.000000 + 869 airs281SUBSET_aqua 174 0.000000 0.000000 0.000000 0.000000 0.000000 + 870 airs281SUBSET_aqua 175 0.000000 0.000000 0.000000 0.000000 0.000000 + 871 airs281SUBSET_aqua 177 0.000000 0.000000 0.000000 0.000000 0.000000 + 872 airs281SUBSET_aqua 179 0.000000 0.000000 0.000000 0.000000 0.000000 + 873 airs281SUBSET_aqua 180 0.000000 0.000000 0.000000 0.000000 0.000000 + 874 airs281SUBSET_aqua 182 0.000000 0.000000 0.000000 0.000000 0.000000 + 875 airs281SUBSET_aqua 185 0.000000 0.000000 0.000000 0.000000 0.000000 + 876 airs281SUBSET_aqua 186 0.000000 0.000000 0.000000 0.000000 0.000000 + 877 airs281SUBSET_aqua 190 0.000000 0.000000 0.000000 0.000000 0.000000 + 878 airs281SUBSET_aqua 192 0.000000 0.000000 0.000000 0.000000 0.000000 + 879 airs281SUBSET_aqua 198 0.000000 0.000000 0.000000 0.000000 0.000000 + 880 airs281SUBSET_aqua 201 0.000000 0.000000 0.000000 0.000000 0.000000 + 881 airs281SUBSET_aqua 204 0.000000 0.000000 0.000000 0.000000 0.000000 + 882 airs281SUBSET_aqua 207 0.000000 0.000000 0.000000 0.000000 0.000000 + 883 airs281SUBSET_aqua 210 0.000000 0.000000 0.000000 0.000000 0.000000 + 884 airs281SUBSET_aqua 215 0.000000 0.000000 0.000000 0.000000 0.000000 + 885 airs281SUBSET_aqua 216 0.000000 0.000000 0.000000 0.000000 0.000000 + 886 airs281SUBSET_aqua 221 0.000000 0.000000 0.000000 0.000000 0.000000 + 887 airs281SUBSET_aqua 226 0.000000 0.000000 0.000000 0.000000 0.000000 + 888 airs281SUBSET_aqua 227 0.000000 0.000000 0.000000 0.000000 0.000000 + 889 airs281SUBSET_aqua 232 0.000000 0.000000 0.000000 0.000000 0.000000 + 890 airs281SUBSET_aqua 252 0.000000 0.000000 0.000000 0.000000 0.000000 + 891 airs281SUBSET_aqua 253 0.000000 0.000000 0.000000 0.000000 0.000000 + 892 airs281SUBSET_aqua 256 0.000000 0.000000 0.000000 0.000000 0.000000 + 893 airs281SUBSET_aqua 257 0.000000 0.000000 0.000000 0.000000 0.000000 + 894 airs281SUBSET_aqua 261 0.000000 0.000000 0.000000 0.000000 0.000000 + 895 airs281SUBSET_aqua 262 0.000000 0.000000 0.000000 0.000000 0.000000 + 896 airs281SUBSET_aqua 267 0.000000 0.000000 0.000000 0.000000 0.000000 + 897 airs281SUBSET_aqua 272 0.000000 0.000000 0.000000 0.000000 0.000000 + 898 airs281SUBSET_aqua 295 0.000000 0.000000 0.000000 0.000000 0.000000 + 899 airs281SUBSET_aqua 299 0.000000 0.000000 0.000000 0.000000 0.000000 + 900 airs281SUBSET_aqua 300 0.000000 0.000000 0.000000 0.000000 0.000000 + 901 airs281SUBSET_aqua 305 0.000000 0.000000 0.000000 0.000000 0.000000 + 902 airs281SUBSET_aqua 310 0.000000 0.000000 0.000000 0.000000 0.000000 + 903 airs281SUBSET_aqua 321 0.000000 0.000000 0.000000 0.000000 0.000000 + 904 airs281SUBSET_aqua 325 0.000000 0.000000 0.000000 0.000000 0.000000 + 905 airs281SUBSET_aqua 333 0.000000 0.000000 0.000000 0.000000 0.000000 + 906 airs281SUBSET_aqua 338 0.000000 0.000000 0.000000 0.000000 0.000000 + 907 airs281SUBSET_aqua 355 0.000000 0.000000 0.000000 0.000000 0.000000 + 908 airs281SUBSET_aqua 362 0.000000 0.000000 0.000000 0.000000 0.000000 + 909 airs281SUBSET_aqua 375 0.000000 0.000000 0.000000 0.000000 0.000000 + 910 airs281SUBSET_aqua 453 0.000000 0.000000 0.000000 0.000000 0.000000 + 911 airs281SUBSET_aqua 475 0.000000 0.000000 0.000000 0.000000 0.000000 + 912 airs281SUBSET_aqua 484 0.000000 0.000000 0.000000 0.000000 0.000000 + 913 airs281SUBSET_aqua 497 0.000000 0.000000 0.000000 0.000000 0.000000 + 914 airs281SUBSET_aqua 528 0.000000 0.000000 0.000000 0.000000 0.000000 + 915 airs281SUBSET_aqua 587 0.000000 0.000000 0.000000 0.000000 0.000000 + 916 airs281SUBSET_aqua 672 0.000000 0.000000 0.000000 0.000000 0.000000 + 917 airs281SUBSET_aqua 787 0.000000 0.000000 0.000000 0.000000 0.000000 + 918 airs281SUBSET_aqua 791 0.000000 0.000000 0.000000 0.000000 0.000000 + 919 airs281SUBSET_aqua 843 0.000000 0.000000 0.000000 0.000000 0.000000 + 920 airs281SUBSET_aqua 870 0.000000 0.000000 0.000000 0.000000 0.000000 + 921 airs281SUBSET_aqua 914 0.000000 0.000000 0.000000 0.000000 0.000000 + 922 airs281SUBSET_aqua 950 0.000000 0.000000 0.000000 0.000000 0.000000 + 923 airs281SUBSET_aqua 1003 0.000000 0.000000 0.000000 0.000000 0.000000 + 924 airs281SUBSET_aqua 1012 0.000000 0.000000 0.000000 0.000000 0.000000 + 925 airs281SUBSET_aqua 1019 0.000000 0.000000 0.000000 0.000000 0.000000 + 926 airs281SUBSET_aqua 1024 0.000000 0.000000 0.000000 0.000000 0.000000 + 927 airs281SUBSET_aqua 1030 0.000000 0.000000 0.000000 0.000000 0.000000 + 928 airs281SUBSET_aqua 1038 0.000000 0.000000 0.000000 0.000000 0.000000 + 929 airs281SUBSET_aqua 1048 0.000000 0.000000 0.000000 0.000000 0.000000 + 930 airs281SUBSET_aqua 1069 0.000000 0.000000 0.000000 0.000000 0.000000 + 931 airs281SUBSET_aqua 1079 0.000000 0.000000 0.000000 0.000000 0.000000 + 932 airs281SUBSET_aqua 1082 0.000000 0.000000 0.000000 0.000000 0.000000 + 933 airs281SUBSET_aqua 1083 0.000000 0.000000 0.000000 0.000000 0.000000 + 934 airs281SUBSET_aqua 1088 0.000000 0.000000 0.000000 0.000000 0.000000 + 935 airs281SUBSET_aqua 1090 0.000000 0.000000 0.000000 0.000000 0.000000 + 936 airs281SUBSET_aqua 1092 0.000000 0.000000 0.000000 0.000000 0.000000 + 937 airs281SUBSET_aqua 1095 0.000000 0.000000 0.000000 0.000000 0.000000 + 938 airs281SUBSET_aqua 1104 0.000000 0.000000 0.000000 0.000000 0.000000 + 939 airs281SUBSET_aqua 1111 0.000000 0.000000 0.000000 0.000000 0.000000 + 940 airs281SUBSET_aqua 1115 0.000000 0.000000 0.000000 0.000000 0.000000 + 941 airs281SUBSET_aqua 1116 0.000000 0.000000 0.000000 0.000000 0.000000 + 942 airs281SUBSET_aqua 1119 0.000000 0.000000 0.000000 0.000000 0.000000 + 943 airs281SUBSET_aqua 1120 0.000000 0.000000 0.000000 0.000000 0.000000 + 944 airs281SUBSET_aqua 1123 0.000000 0.000000 0.000000 0.000000 0.000000 + 945 airs281SUBSET_aqua 1130 0.000000 0.000000 0.000000 0.000000 0.000000 + 946 airs281SUBSET_aqua 1138 0.000000 0.000000 0.000000 0.000000 0.000000 + 947 airs281SUBSET_aqua 1142 0.000000 0.000000 0.000000 0.000000 0.000000 + 948 airs281SUBSET_aqua 1178 0.000000 0.000000 0.000000 0.000000 0.000000 + 949 airs281SUBSET_aqua 1199 0.000000 0.000000 0.000000 0.000000 0.000000 + 950 airs281SUBSET_aqua 1206 0.000000 0.000000 0.000000 0.000000 0.000000 + 951 airs281SUBSET_aqua 1221 0.000000 0.000000 0.000000 0.000000 0.000000 + 952 airs281SUBSET_aqua 1237 0.000000 0.000000 0.000000 0.000000 0.000000 + 953 airs281SUBSET_aqua 1252 0.000000 0.000000 0.000000 0.000000 0.000000 + 954 airs281SUBSET_aqua 1260 0.000000 0.000000 0.000000 0.000000 0.000000 + 955 airs281SUBSET_aqua 1263 0.000000 0.000000 0.000000 0.000000 0.000000 + 956 airs281SUBSET_aqua 1266 0.000000 0.000000 0.000000 0.000000 0.000000 + 957 airs281SUBSET_aqua 1285 0.000000 0.000000 0.000000 0.000000 0.000000 + 958 airs281SUBSET_aqua 1301 0.000000 0.000000 0.000000 0.000000 0.000000 + 959 airs281SUBSET_aqua 1304 0.000000 0.000000 0.000000 0.000000 0.000000 + 960 airs281SUBSET_aqua 1329 0.000000 0.000000 0.000000 0.000000 0.000000 + 961 airs281SUBSET_aqua 1371 0.000000 0.000000 0.000000 0.000000 0.000000 + 962 airs281SUBSET_aqua 1382 0.000000 0.000000 0.000000 0.000000 0.000000 + 963 airs281SUBSET_aqua 1415 0.000000 0.000000 0.000000 0.000000 0.000000 + 964 airs281SUBSET_aqua 1424 0.000000 0.000000 0.000000 0.000000 0.000000 + 965 airs281SUBSET_aqua 1449 0.000000 0.000000 0.000000 0.000000 0.000000 + 966 airs281SUBSET_aqua 1455 0.000000 0.000000 0.000000 0.000000 0.000000 + 967 airs281SUBSET_aqua 1466 0.000000 0.000000 0.000000 0.000000 0.000000 + 968 airs281SUBSET_aqua 1477 0.000000 0.000000 0.000000 0.000000 0.000000 + 969 airs281SUBSET_aqua 1500 0.000000 0.000000 0.000000 0.000000 0.000000 + 970 airs281SUBSET_aqua 1519 0.000000 0.000000 0.000000 0.000000 0.000000 + 971 airs281SUBSET_aqua 1538 0.000000 0.000000 0.000000 0.000000 0.000000 + 972 airs281SUBSET_aqua 1545 0.000000 0.000000 0.000000 0.000000 0.000000 + 973 airs281SUBSET_aqua 1565 0.000000 0.000000 0.000000 0.000000 0.000000 + 974 airs281SUBSET_aqua 1574 0.000000 0.000000 0.000000 0.000000 0.000000 + 975 airs281SUBSET_aqua 1583 0.000000 0.000000 0.000000 0.000000 0.000000 + 976 airs281SUBSET_aqua 1593 0.000000 0.000000 0.000000 0.000000 0.000000 + 977 airs281SUBSET_aqua 1614 0.000000 0.000000 0.000000 0.000000 0.000000 + 978 airs281SUBSET_aqua 1627 0.000000 0.000000 0.000000 0.000000 0.000000 + 979 airs281SUBSET_aqua 1636 0.000000 0.000000 0.000000 0.000000 0.000000 + 980 airs281SUBSET_aqua 1644 0.000000 0.000000 0.000000 0.000000 0.000000 + 981 airs281SUBSET_aqua 1652 0.000000 0.000000 0.000000 0.000000 0.000000 + 982 airs281SUBSET_aqua 1669 0.000000 0.000000 0.000000 0.000000 0.000000 + 983 airs281SUBSET_aqua 1674 0.000000 0.000000 0.000000 0.000000 0.000000 + 984 airs281SUBSET_aqua 1681 0.000000 0.000000 0.000000 0.000000 0.000000 + 985 airs281SUBSET_aqua 1694 0.000000 0.000000 0.000000 0.000000 0.000000 + 986 airs281SUBSET_aqua 1708 0.000000 0.000000 0.000000 0.000000 0.000000 + 987 airs281SUBSET_aqua 1717 0.000000 0.000000 0.000000 0.000000 0.000000 + 988 airs281SUBSET_aqua 1723 0.000000 0.000000 0.000000 0.000000 0.000000 + 989 airs281SUBSET_aqua 1740 0.000000 0.000000 0.000000 0.000000 0.000000 + 990 airs281SUBSET_aqua 1748 0.000000 0.000000 0.000000 0.000000 0.000000 + 991 airs281SUBSET_aqua 1751 0.000000 0.000000 0.000000 0.000000 0.000000 + 992 airs281SUBSET_aqua 1756 0.000000 0.000000 0.000000 0.000000 0.000000 + 993 airs281SUBSET_aqua 1763 0.000000 0.000000 0.000000 0.000000 0.000000 + 994 airs281SUBSET_aqua 1766 0.000000 0.000000 0.000000 0.000000 0.000000 + 995 airs281SUBSET_aqua 1771 0.000000 0.000000 0.000000 0.000000 0.000000 + 996 airs281SUBSET_aqua 1777 0.000000 0.000000 0.000000 0.000000 0.000000 + 997 airs281SUBSET_aqua 1780 0.000000 0.000000 0.000000 0.000000 0.000000 + 998 airs281SUBSET_aqua 1783 0.000000 0.000000 0.000000 0.000000 0.000000 + 999 airs281SUBSET_aqua 1794 0.000000 0.000000 0.000000 0.000000 0.000000 + 1000 airs281SUBSET_aqua 1800 0.000000 0.000000 0.000000 0.000000 0.000000 + 1001 airs281SUBSET_aqua 1803 0.000000 0.000000 0.000000 0.000000 0.000000 + 1002 airs281SUBSET_aqua 1806 0.000000 0.000000 0.000000 0.000000 0.000000 + 1003 airs281SUBSET_aqua 1812 0.000000 0.000000 0.000000 0.000000 0.000000 + 1004 airs281SUBSET_aqua 1826 0.000000 0.000000 0.000000 0.000000 0.000000 + 1005 airs281SUBSET_aqua 1843 0.000000 0.000000 0.000000 0.000000 0.000000 + 1006 airs281SUBSET_aqua 1852 0.000000 0.000000 0.000000 0.000000 0.000000 + 1007 airs281SUBSET_aqua 1865 0.000000 0.000000 0.000000 0.000000 0.000000 + 1008 airs281SUBSET_aqua 1866 0.000000 0.000000 0.000000 0.000000 0.000000 + 1009 airs281SUBSET_aqua 1868 0.000000 0.000000 0.000000 0.000000 0.000000 + 1010 airs281SUBSET_aqua 1869 0.000000 0.000000 0.000000 0.000000 0.000000 + 1011 airs281SUBSET_aqua 1872 0.000000 0.000000 0.000000 0.000000 0.000000 + 1012 airs281SUBSET_aqua 1873 0.000000 0.000000 0.000000 0.000000 0.000000 + 1013 airs281SUBSET_aqua 1876 0.000000 0.000000 0.000000 0.000000 0.000000 + 1014 airs281SUBSET_aqua 1881 0.000000 0.000000 0.000000 0.000000 0.000000 + 1015 airs281SUBSET_aqua 1882 0.000000 0.000000 0.000000 0.000000 0.000000 + 1016 airs281SUBSET_aqua 1883 0.000000 0.000000 0.000000 0.000000 0.000000 + 1017 airs281SUBSET_aqua 1911 0.000000 0.000000 0.000000 0.000000 0.000000 + 1018 airs281SUBSET_aqua 1917 0.000000 0.000000 0.000000 0.000000 0.000000 + 1019 airs281SUBSET_aqua 1918 0.000000 0.000000 0.000000 0.000000 0.000000 + 1020 airs281SUBSET_aqua 1924 0.000000 0.000000 0.000000 0.000000 0.000000 + 1021 airs281SUBSET_aqua 1928 0.000000 0.000000 0.000000 0.000000 0.000000 + 1022 airs281SUBSET_aqua 1937 0.000000 0.000000 0.000000 0.000000 0.000000 + 1023 airs281SUBSET_aqua 1941 0.000000 0.000000 0.000000 0.000000 0.000000 + 1024 airs281SUBSET_aqua 2099 0.000000 0.000000 0.000000 0.000000 0.000000 + 1025 airs281SUBSET_aqua 2100 0.000000 0.000000 0.000000 0.000000 0.000000 + 1026 airs281SUBSET_aqua 2101 0.000000 0.000000 0.000000 0.000000 0.000000 + 1027 airs281SUBSET_aqua 2103 0.000000 0.000000 0.000000 0.000000 0.000000 + 1028 airs281SUBSET_aqua 2104 0.000000 0.000000 0.000000 0.000000 0.000000 + 1029 airs281SUBSET_aqua 2106 0.000000 0.000000 0.000000 0.000000 0.000000 + 1030 airs281SUBSET_aqua 2107 0.000000 0.000000 0.000000 0.000000 0.000000 + 1031 airs281SUBSET_aqua 2108 0.000000 0.000000 0.000000 0.000000 0.000000 + 1032 airs281SUBSET_aqua 2109 0.000000 0.000000 0.000000 0.000000 0.000000 + 1033 airs281SUBSET_aqua 2110 0.000000 0.000000 0.000000 0.000000 0.000000 + 1034 airs281SUBSET_aqua 2111 0.000000 0.000000 0.000000 0.000000 0.000000 + 1035 airs281SUBSET_aqua 2112 0.000000 0.000000 0.000000 0.000000 0.000000 + 1036 airs281SUBSET_aqua 2113 0.000000 0.000000 0.000000 0.000000 0.000000 + 1037 airs281SUBSET_aqua 2114 0.000000 0.000000 0.000000 0.000000 0.000000 + 1038 airs281SUBSET_aqua 2115 0.000000 0.000000 0.000000 0.000000 0.000000 + 1039 airs281SUBSET_aqua 2116 0.000000 0.000000 0.000000 0.000000 0.000000 + 1040 airs281SUBSET_aqua 2117 0.000000 0.000000 0.000000 0.000000 0.000000 + 1041 airs281SUBSET_aqua 2118 0.000000 0.000000 0.000000 0.000000 0.000000 + 1042 airs281SUBSET_aqua 2119 0.000000 0.000000 0.000000 0.000000 0.000000 + 1043 airs281SUBSET_aqua 2120 0.000000 0.000000 0.000000 0.000000 0.000000 + 1044 airs281SUBSET_aqua 2121 0.000000 0.000000 0.000000 0.000000 0.000000 + 1045 airs281SUBSET_aqua 2122 0.000000 0.000000 0.000000 0.000000 0.000000 + 1046 airs281SUBSET_aqua 2123 0.000000 0.000000 0.000000 0.000000 0.000000 + 1047 airs281SUBSET_aqua 2128 0.000000 0.000000 0.000000 0.000000 0.000000 + 1048 airs281SUBSET_aqua 2134 0.000000 0.000000 0.000000 0.000000 0.000000 + 1049 airs281SUBSET_aqua 2141 0.000000 0.000000 0.000000 0.000000 0.000000 + 1050 airs281SUBSET_aqua 2145 0.000000 0.000000 0.000000 0.000000 0.000000 + 1051 airs281SUBSET_aqua 2149 0.000000 0.000000 0.000000 0.000000 0.000000 + 1052 airs281SUBSET_aqua 2153 0.000000 0.000000 0.000000 0.000000 0.000000 + 1053 airs281SUBSET_aqua 2164 0.000000 0.000000 0.000000 0.000000 0.000000 + 1054 airs281SUBSET_aqua 2189 0.000000 0.000000 0.000000 0.000000 0.000000 + 1055 airs281SUBSET_aqua 2197 0.000000 0.000000 0.000000 0.000000 0.000000 + 1056 airs281SUBSET_aqua 2209 0.000000 0.000000 0.000000 0.000000 0.000000 + 1057 airs281SUBSET_aqua 2226 0.000000 0.000000 0.000000 0.000000 0.000000 + 1058 airs281SUBSET_aqua 2234 0.000000 0.000000 0.000000 0.000000 0.000000 + 1059 airs281SUBSET_aqua 2280 0.000000 0.000000 0.000000 0.000000 0.000000 + 1060 airs281SUBSET_aqua 2318 0.000000 0.000000 0.000000 0.000000 0.000000 + 1061 airs281SUBSET_aqua 2321 0.000000 0.000000 0.000000 0.000000 0.000000 + 1062 airs281SUBSET_aqua 2325 0.000000 0.000000 0.000000 0.000000 0.000000 + 1063 airs281SUBSET_aqua 2328 0.000000 0.000000 0.000000 0.000000 0.000000 + 1064 airs281SUBSET_aqua 2333 0.000000 0.000000 0.000000 0.000000 0.000000 + 1065 airs281SUBSET_aqua 2339 0.000000 0.000000 0.000000 0.000000 0.000000 + 1066 airs281SUBSET_aqua 2348 0.000000 0.000000 0.000000 0.000000 0.000000 + 1067 airs281SUBSET_aqua 2353 0.000000 0.000000 0.000000 0.000000 0.000000 + 1068 airs281SUBSET_aqua 2355 0.000000 0.000000 0.000000 0.000000 0.000000 + 1069 airs281SUBSET_aqua 2357 0.000000 0.000000 0.000000 0.000000 0.000000 + 1070 airs281SUBSET_aqua 2363 0.000000 0.000000 0.000000 0.000000 0.000000 + 1071 airs281SUBSET_aqua 2370 0.000000 0.000000 0.000000 0.000000 0.000000 + 1072 airs281SUBSET_aqua 2371 0.000000 0.000000 0.000000 0.000000 0.000000 + 1073 airs281SUBSET_aqua 2377 0.000000 0.000000 0.000000 0.000000 0.000000 + 1074 amsua_aqua 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1075 amsua_aqua 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1076 amsua_aqua 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1077 amsua_aqua 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1078 amsua_aqua 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1079 amsua_aqua 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1080 amsua_aqua 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1081 amsua_aqua 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1082 amsua_aqua 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1083 amsua_aqua 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1084 amsua_aqua 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1085 amsua_aqua 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1086 amsua_aqua 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1087 amsua_aqua 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1088 amsua_aqua 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1089 avhrr3_n16 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1090 avhrr3_n16 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1091 avhrr3_n16 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1092 avhrr3_n17 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1093 avhrr3_n17 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1094 avhrr3_n17 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1095 avhrr3_n18 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1096 avhrr3_n18 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1097 avhrr3_n18 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1098 ssmi_f13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1099 ssmi_f13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1100 ssmi_f13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1101 ssmi_f13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1102 ssmi_f13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1103 ssmi_f13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1104 ssmi_f13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1105 ssmi_f14 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1106 ssmi_f14 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1107 ssmi_f14 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1108 ssmi_f14 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1109 ssmi_f14 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1110 ssmi_f14 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1111 ssmi_f14 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1112 ssmi_f15 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1113 ssmi_f15 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1114 ssmi_f15 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1115 ssmi_f15 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1116 ssmi_f15 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1117 ssmi_f15 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1118 ssmi_f15 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1119 ssmis_f16 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1120 ssmis_f16 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1121 ssmis_f16 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1122 ssmis_f16 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1123 ssmis_f16 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1124 ssmis_f16 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1125 ssmis_f16 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1126 ssmis_f16 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1127 ssmis_f16 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1128 ssmis_f16 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1129 ssmis_f16 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1130 ssmis_f16 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1131 ssmis_f16 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1132 ssmis_f16 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1133 ssmis_f16 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1134 ssmis_f16 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1135 ssmis_f16 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1136 ssmis_f16 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1137 ssmis_f16 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 1138 ssmis_f16 20 0.000000 0.000000 0.000000 0.000000 0.000000 + 1139 ssmis_f16 21 0.000000 0.000000 0.000000 0.000000 0.000000 + 1140 ssmis_f16 22 0.000000 0.000000 0.000000 0.000000 0.000000 + 1141 ssmis_f16 23 0.000000 0.000000 0.000000 0.000000 0.000000 + 1142 ssmis_f16 24 0.000000 0.000000 0.000000 0.000000 0.000000 + 1143 amsre_aqua 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1144 amsre_aqua 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1145 amsre_aqua 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1146 amsre_aqua 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1147 amsre_aqua 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1148 amsre_aqua 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1149 amsre_aqua 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1150 amsre_aqua 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1151 amsre_aqua 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1152 amsre_aqua 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1153 amsre_aqua 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1154 amsre_aqua 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1155 sndr_g11 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1156 sndr_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1157 sndr_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1158 sndr_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1159 sndr_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1160 sndr_g11 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1161 sndr_g11 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1162 sndr_g11 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1163 sndr_g11 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1164 sndr_g11 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1165 sndr_g11 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1166 sndr_g11 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1167 sndr_g11 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1168 sndr_g11 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1169 sndr_g11 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1170 sndr_g11 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1171 sndr_g11 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1172 sndr_g11 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1173 imgr_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1174 imgr_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1175 imgr_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1176 imgr_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1177 sndr_g12 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1178 sndr_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1179 sndr_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1180 sndr_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1181 sndr_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1182 sndr_g12 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1183 sndr_g12 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1184 sndr_g12 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1185 sndr_g12 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1186 sndr_g12 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1187 sndr_g12 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1188 sndr_g12 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1189 sndr_g12 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1190 sndr_g12 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1191 sndr_g12 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1192 sndr_g12 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1193 sndr_g12 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1194 sndr_g12 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1195 imgr_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1196 imgr_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1197 imgr_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1198 imgr_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1199 sndr_g13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1200 sndr_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1201 sndr_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1202 sndr_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1203 sndr_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1204 sndr_g13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1205 sndr_g13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1206 sndr_g13 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1207 sndr_g13 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1208 sndr_g13 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1209 sndr_g13 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1210 sndr_g13 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1211 sndr_g13 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1212 sndr_g13 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1213 sndr_g13 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1214 sndr_g13 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1215 sndr_g13 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1216 sndr_g13 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1217 imgr_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1218 imgr_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1219 imgr_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1220 imgr_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1221 sndrD1_g11 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1222 sndrD1_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1223 sndrD1_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1224 sndrD1_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1225 sndrD1_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1226 sndrD1_g11 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1227 sndrD1_g11 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1228 sndrD1_g11 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1229 sndrD1_g11 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1230 sndrD1_g11 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1231 sndrD1_g11 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1232 sndrD1_g11 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1233 sndrD1_g11 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1234 sndrD1_g11 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1235 sndrD1_g11 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1236 sndrD1_g11 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1237 sndrD1_g11 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1238 sndrD1_g11 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1239 sndrD2_g11 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1240 sndrD2_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1241 sndrD2_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1242 sndrD2_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1243 sndrD2_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1244 sndrD2_g11 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1245 sndrD2_g11 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1246 sndrD2_g11 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1247 sndrD2_g11 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1248 sndrD2_g11 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1249 sndrD2_g11 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1250 sndrD2_g11 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1251 sndrD2_g11 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1252 sndrD2_g11 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1253 sndrD2_g11 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1254 sndrD2_g11 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1255 sndrD2_g11 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1256 sndrD2_g11 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1257 sndrD3_g11 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1258 sndrD3_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1259 sndrD3_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1260 sndrD3_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1261 sndrD3_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1262 sndrD3_g11 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1263 sndrD3_g11 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1264 sndrD3_g11 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1265 sndrD3_g11 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1266 sndrD3_g11 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1267 sndrD3_g11 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1268 sndrD3_g11 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1269 sndrD3_g11 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1270 sndrD3_g11 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1271 sndrD3_g11 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1272 sndrD3_g11 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1273 sndrD3_g11 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1274 sndrD3_g11 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1275 sndrD4_g11 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1276 sndrD4_g11 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1277 sndrD4_g11 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1278 sndrD4_g11 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1279 sndrD4_g11 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1280 sndrD4_g11 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1281 sndrD4_g11 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1282 sndrD4_g11 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1283 sndrD4_g11 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1284 sndrD4_g11 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1285 sndrD4_g11 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1286 sndrD4_g11 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1287 sndrD4_g11 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1288 sndrD4_g11 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1289 sndrD4_g11 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1290 sndrD4_g11 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1291 sndrD4_g11 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1292 sndrD4_g11 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1293 sndrD1_g12 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1294 sndrD1_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1295 sndrD1_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1296 sndrD1_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1297 sndrD1_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1298 sndrD1_g12 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1299 sndrD1_g12 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1300 sndrD1_g12 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1301 sndrD1_g12 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1302 sndrD1_g12 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1303 sndrD1_g12 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1304 sndrD1_g12 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1305 sndrD1_g12 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1306 sndrD1_g12 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1307 sndrD1_g12 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1308 sndrD1_g12 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1309 sndrD1_g12 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1310 sndrD1_g12 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1311 sndrD2_g12 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1312 sndrD2_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1313 sndrD2_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1314 sndrD2_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1315 sndrD2_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1316 sndrD2_g12 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1317 sndrD2_g12 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1318 sndrD2_g12 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1319 sndrD2_g12 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1320 sndrD2_g12 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1321 sndrD2_g12 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1322 sndrD2_g12 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1323 sndrD2_g12 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1324 sndrD2_g12 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1325 sndrD2_g12 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1326 sndrD2_g12 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1327 sndrD2_g12 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1328 sndrD2_g12 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1329 sndrD3_g12 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1330 sndrD3_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1331 sndrD3_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1332 sndrD3_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1333 sndrD3_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1334 sndrD3_g12 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1335 sndrD3_g12 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1336 sndrD3_g12 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1337 sndrD3_g12 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1338 sndrD3_g12 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1339 sndrD3_g12 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1340 sndrD3_g12 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1341 sndrD3_g12 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1342 sndrD3_g12 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1343 sndrD3_g12 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1344 sndrD3_g12 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1345 sndrD3_g12 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1346 sndrD3_g12 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1347 sndrD4_g12 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1348 sndrD4_g12 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1349 sndrD4_g12 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1350 sndrD4_g12 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1351 sndrD4_g12 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1352 sndrD4_g12 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1353 sndrD4_g12 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1354 sndrD4_g12 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1355 sndrD4_g12 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1356 sndrD4_g12 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1357 sndrD4_g12 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1358 sndrD4_g12 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1359 sndrD4_g12 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1360 sndrD4_g12 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1361 sndrD4_g12 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1362 sndrD4_g12 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1363 sndrD4_g12 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1364 sndrD4_g12 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1365 sndrD1_g13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1366 sndrD1_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1367 sndrD1_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1368 sndrD1_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1369 sndrD1_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1370 sndrD1_g13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1371 sndrD1_g13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1372 sndrD1_g13 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1373 sndrD1_g13 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1374 sndrD1_g13 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1375 sndrD1_g13 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1376 sndrD1_g13 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1377 sndrD1_g13 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1378 sndrD1_g13 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1379 sndrD1_g13 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1380 sndrD1_g13 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1381 sndrD1_g13 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1382 sndrD1_g13 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1383 sndrD2_g13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1384 sndrD2_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1385 sndrD2_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1386 sndrD2_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1387 sndrD2_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1388 sndrD2_g13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1389 sndrD2_g13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1390 sndrD2_g13 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1391 sndrD2_g13 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1392 sndrD2_g13 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1393 sndrD2_g13 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1394 sndrD2_g13 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1395 sndrD2_g13 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1396 sndrD2_g13 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1397 sndrD2_g13 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1398 sndrD2_g13 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1399 sndrD2_g13 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1400 sndrD2_g13 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1401 sndrD3_g13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1402 sndrD3_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1403 sndrD3_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1404 sndrD3_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1405 sndrD3_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1406 sndrD3_g13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1407 sndrD3_g13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1408 sndrD3_g13 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1409 sndrD3_g13 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1410 sndrD3_g13 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1411 sndrD3_g13 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1412 sndrD3_g13 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1413 sndrD3_g13 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1414 sndrD3_g13 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1415 sndrD3_g13 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1416 sndrD3_g13 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1417 sndrD3_g13 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1418 sndrD3_g13 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1419 sndrD4_g13 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1420 sndrD4_g13 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1421 sndrD4_g13 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1422 sndrD4_g13 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1423 sndrD4_g13 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1424 sndrD4_g13 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1425 sndrD4_g13 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1426 sndrD4_g13 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1427 sndrD4_g13 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1428 sndrD4_g13 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1429 sndrD4_g13 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1430 sndrD4_g13 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1431 sndrD4_g13 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1432 sndrD4_g13 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1433 sndrD4_g13 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1434 sndrD4_g13 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1435 sndrD4_g13 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1436 sndrD4_g13 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1437 hirs2_n14 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1438 hirs2_n14 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1439 hirs2_n14 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1440 hirs2_n14 4 0.000000 0.000000 0.000000 0.000000 0.000000 + 1441 hirs2_n14 5 0.000000 0.000000 0.000000 0.000000 0.000000 + 1442 hirs2_n14 6 0.000000 0.000000 0.000000 0.000000 0.000000 + 1443 hirs2_n14 7 0.000000 0.000000 0.000000 0.000000 0.000000 + 1444 hirs2_n14 8 0.000000 0.000000 0.000000 0.000000 0.000000 + 1445 hirs2_n14 9 0.000000 0.000000 0.000000 0.000000 0.000000 + 1446 hirs2_n14 10 0.000000 0.000000 0.000000 0.000000 0.000000 + 1447 hirs2_n14 11 0.000000 0.000000 0.000000 0.000000 0.000000 + 1448 hirs2_n14 12 0.000000 0.000000 0.000000 0.000000 0.000000 + 1449 hirs2_n14 13 0.000000 0.000000 0.000000 0.000000 0.000000 + 1450 hirs2_n14 14 0.000000 0.000000 0.000000 0.000000 0.000000 + 1451 hirs2_n14 15 0.000000 0.000000 0.000000 0.000000 0.000000 + 1452 hirs2_n14 16 0.000000 0.000000 0.000000 0.000000 0.000000 + 1453 hirs2_n14 17 0.000000 0.000000 0.000000 0.000000 0.000000 + 1454 hirs2_n14 18 0.000000 0.000000 0.000000 0.000000 0.000000 + 1455 hirs2_n14 19 0.000000 0.000000 0.000000 0.000000 0.000000 + 1456 msu_n14 1 0.000000 0.000000 0.000000 0.000000 0.000000 + 1457 msu_n14 2 0.000000 0.000000 0.000000 0.000000 0.000000 + 1458 msu_n14 3 0.000000 0.000000 0.000000 0.000000 0.000000 + 1459 msu_n14 4 0.000000 0.000000 0.000000 0.000000 0.000000 diff --git a/fix/gsi/prepobs_prep.bufrtable b/fix/gsi/prepobs_prep.bufrtable new file mode 100755 index 000000000..32d08bcf5 --- /dev/null +++ b/fix/gsi/prepobs_prep.bufrtable @@ -0,0 +1,1071 @@ +.------------------------------------------------------------------------------. +| ------------ USER DEFINITIONS FOR TABLE-A TABLE-B TABLE D -------------- | +|------------------------------------------------------------------------------| +| MNEMONIC | NUMBER | DESCRIPTION | +|----------|--------|----------------------------------------------------------| +* | +* | +* THE FOLLOWING ARE TABLE A ENTRIES FOR PREPBUFR MESSAGE TYPES | +* | +| ADPUPA | A48102 | UPPER-AIR (RAOB, PIBAL, RECCO, DROPS) REPORTS | +| AIRCAR | A48103 | MDCRS ACARS AIRCRAFT REPORTS | +| AIRCFT | A48104 | AIREP/PIREP,AMDAR(ASDAR/ACARS), E-ADAS(AMDAR BUFR) ACFT | +| SATWND | A48105 | SATELLITE-DERIVED WIND REPORTS | +| PROFLR | A48106 | WIND PROFILER REPORTS | +| VADWND | A48107 | VAD (NEXRAD) WIND REPORTS | +| SATEMP | A48108 | TOVS SATELLITE DATA (SOUNDINGS, RETRIEVALS, RADIANCES) | +| ADPSFC | A48109 | SURFACE LAND (SYNOPTIC, METAR) REPORTS | +| SFCSHP | A48110 | SURFACE MARINE (SHIP, BUOY, C-MAN PLATFORM) REPORTS | +| SFCBOG | A48111 | MEAN SEA-LEVEL PRESSURE BOGUS REPORTS | +| SPSSMI | A48112 | SSM/I RETRIEVAL PRODUCTS (REPROCESSED WIND SPEED, TPW) | +| SYNDAT | A48113 | SYNTHETIC TROPICAL CYCLONE BOGUS REPORTS | +| ERS1DA | A48114 | ERS SCATTEROMETER DATA (REPROCESSED WIND SPEED) | +| GOESND | A48115 | GOES SATELLITE DATA (SOUNDINGS, RETRIEVALS, RADIANCES) | +| QKSWND | A48116 | QUIKSCAT SCATTEROMETER DATA (REPROCESSED) | +| MSONET | A48117 | MESONET SURFACE REPORTS (COOPERATIVE NETWORKS) | +| GPSIPW | A48118 | GLOBAL POSITIONING SATELLITE-INTEGRATED PRECIP. WATER | +| RASSDA | A48119 | RADIO ACOUSTIC SOUNDING SYSTEM (RASS) TEMP PROFILE RPTS | +| WDSATR | A48120 | WINDSAT SCATTEROMETER DATA (REPROCESSED) | +| ASCATW | A48121 | ASCAT SCATTEROMETER DATA (REPROCESSED) | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR SEQUENCES DEFINED IN TABLE A ENTRIES | +* | +| HEADR | 348001 | REPORT HEADER SEQUENCE | +| PRSLEVEL | 348002 | PRESSURE LEVEL SEQUENCE (ALL TYPES EXCEPT GOESND) | +| PMSL_SEQ | 348003 | MEAN SEA LEVEL PRESSURE SEQUENCE | +| BTMPLEVL | 348004 | BRIGHTNESS TEMPERATURE "LEVEL" SEQUENCE | +| ALTIMSEQ | 348005 | ALTIMETER SETTING SEQUENCE | +| TURB1SEQ | 348006 | TURBULENCE SEQUENCE # 1 | +| TURB2SEQ | 348007 | TURBULENCE SEQUENCE # 2 | +| ACFT_SEQ | 348008 | AIRCRAFT SUPPLEMENTARY DATA SEQUENCE | +| PCCF_SEQ | 348009 | SATELLITE WIND PERCENT CONFIDENCE SEQUENCE | +| WSPD_SEQ | 348010 | WIND SPEED SEQUENCE | +| PRSLEVLG | 348011 | GOESND PRESSURE LEVEL SEQUENCE | +| TOPC_SEQ | 348012 | TOTAL PRECIPITATION/TOTAL WATER EQUIVALENT SEQUENCE | +| PREWXSEQ | 348013 | PRESENT WEATHER SEQUENCE | +| CLOUDSEQ | 348014 | OBSERVED CLOUD SEQUENCE # 1 | +| HOCT_SEQ | 348015 | HEIGHT OF TOP OF CLOUD SEQUENCE | +| TMXMNSEQ | 348016 | MAXIMUM/MINIMUM TEMPERATURE SEQUENCE | +| SWELLSEQ | 348017 | SWELL WAVE SEQUENCE | +| DBSS_SEQ | 348018 | DEPTH BELOW SEA SURFACE SEQUENCE | +| VISB1SEQ | 348019 | VISIBILITY SEQUENCE # 1 | +| VISB2SEQ | 348020 | VISIBILITY SEQUENCE # 2 | +| VTVI_SEQ | 348021 | VERTICAL VISIBILITY SEQUENCE | +| PSTWXSEQ | 348022 | PAST WEATHER SEQUENCE | +| PKWNDSEQ | 348023 | PEAK WIND SEQUENCE | +| GUST1SEQ | 348024 | MAXIMUM WIND GUST SEQUENCE # 1 | +| GUST2SEQ | 348025 | MAXIMUM WIND GUST SEQUENCE # 2 | +| TPRECSEQ | 348026 | TOTAL PRECIPITATION SEQUENCE | +| TP12_SEQ | 348027 | TOTAL PRECIPITATION PAST 12 HOURS SEQUENCE | +| SUNSHSEQ | 348028 | TOTAL SUNSHINE SEQUENCE | +| CLOU2SEQ | 348029 | OBSERVED CLOUD SEQUENCE # 2 | +| XWSPDSEQ | 348030 | EXTRAPOLATED WIND SPEED SEQUENCE | +| SWINDSEQ | 348031 | SURFACE WIND SEQUENCE | +| SNOW_SEQ | 348032 | SNOW DEPTH SEQUENCE | +| WAVE_SEQ | 348033 | WAVE SEQUENCE | +| SHIP_SEQ | 348034 | SHIP DIRECTION/SPEED SEQUENCE | +| PTENDSEQ | 348035 | PRESSURE TENDENCY SEQUENCE | +| PTE24SEQ | 348036 | 24 HOUR PRESSURE TENDENCY SEQUENCE | +| ACID_SEQ | 348037 | AIRCRAFT FLIGHT NUMBER SEQUENCE | +| AFIC_SEQ | 348038 | AIRCRAFT ICING SEQUENCE | +| TURB3SEQ | 348039 | TURBULENCE SEQUENCE # 3 | +| PRSLEVLA | 348040 | AIRCRAFT (AIRCFT/AIRCAR) PRESSURE LEVEL SEQUENCE | +| NRLQMSEQ | 348041 | NRL AIRCRAFT QUALITY MARK SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR SEQUENCES IN REPORT HEADER | +* | +| RSRD_SEQ | 348081 | RESTRICTIONS ON REDISTRIBUTION SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "INFORMATION" SEQUENCES | +* | +| P___INFO | 348141 | PRESSURE INFORMATION | +| Q___INFO | 348142 | SPECIFIC HUMIDITY INFORMATION | +| T___INFO | 348143 | TEMPERATURE INFORMATION | +| Z___INFO | 348144 | HEIGHT INFORMATION | +| W___INFO | 348145 | WIND INFORMATION | +| PW__INFO | 348146 | PRECIPITABLE WATER INFORMATION | +| PWT_INFO | 348147 | TOTAL PRECIPITABLE WATER INFORMATION | +| PWL_INFO | 348148 | LAYER PRECIPITABLE WATER INFORMATION | +| PW1_INFO | 348149 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW2_INFO | 348150 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW3_INFO | 348151 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW4_INFO | 348152 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| BTMPINFO | 348153 | TOVS OR GOES BRIGHTNESS TEMPERATURE INFORMATION | +| SCATINFO | 348154 | SCATTEROMETER DATA INFORMATION | +| DRFTINFO | 348155 | PROFILE LEVEL TIME/LOCATION INFORMATION | +| RRT_INFO | 348156 | RAIN RATE INFORMATION | +| CTP_INFO | 348157 | CLOUD TOP INFORMATION | +| SST_INFO | 348158 | SEA TEMPERATURE INFORMATION | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "EVENT" SEQUENCES | +* | +| P__EVENT | 348171 | PRESSURE EVENT SEQUENCE | +| Q__EVENT | 348172 | SPECIFIC HUMIDITY EVENT SEQUENCE | +| T__EVENT | 348173 | TEMPERATURE EVENT SEQUENCE | +| Z__EVENT | 348174 | HEIGHT EVENT SEQUENCE | +| W__EVENT | 348175 | WIND EVENT SEQUENCE | +| DF_EVENT | 348176 | WIND (DIRECTION/SPEED) EVENT SEQUENCE | +| PWTEVENT | 348177 | TOTAL PRECIPITABLE WATER EVENT SEQUENCE | +| PW1EVENT | 348178 | 1.0 TO 0.9 PRECIPITABLE WATER EVENT SEQUENCE | +| PW2EVENT | 348179 | 0.9 TO 0.7 PRECIPITABLE WATER EVENT SEQUENCE | +| PW3EVENT | 348180 | 0.7 TO 0.3 PRECIPITABLE WATER EVENT SEQUENCE | +| PW4EVENT | 348181 | 0.3 TO 0.0 PRECIPITABLE WATER EVENT SEQUENCE | +| RRTEVENT | 348182 | RATE RATE EVENT SEQUENCE | +| CTPEVENT | 348183 | CLOUD TOP PRESSURE EVENT SEQUENCE | +| SSTEVENT | 348184 | SEA TEMPERATURE EVENT SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "BACKGROUND" SEQUENCES | +* | +| P__BACKG | 348191 | PRESSURE BACKGROUND SEQUENCE | +| Q__BACKG | 348192 | SPECIFIC HUMIDITY BACKGROUND SEQUENCE | +| T__BACKG | 348193 | TEMPERATURE BACKGROUND SEQUENCE | +| Z__BACKG | 348194 | HEIGHT BACKGROUND SEQUENCE | +| W__BACKG | 348195 | WIND BACKGROUND SEQUENCE | +| PWTBACKG | 348196 | TOTAL PRECIPITABLE WATER BACKGROUND SEQUENCE | +| PW1BACKG | 348197 | 1.0 TO 0.9 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW2BACKG | 348198 | 0.9 TO 0.7 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW3BACKG | 348199 | 0.7 TO 0.3 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW4BACKG | 348200 | 0.3 TO 0.0 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| RRTBACKG | 348201 | RAIN RATE BACKGROUND SEQUENCE | +| CTPBACKG | 348202 | CLOUD TOP PRESSURE BACKGROUND SEQUENCE | +| SSTBACKG | 348203 | SEA TEMPERATURE BACKGROUND SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "POSTPROCESSING" SEQUENCES | +* | +| P__POSTP | 348211 | PRESSURE POSTPROCESSING SEQUENCE | +| Q__POSTP | 348212 | SPECIFIC HUMIDITY POSTPROCESSING SEQUENCE | +| T__POSTP | 348213 | TEMPERATURE POSTPROCESSING SEQUENCE | +| Z__POSTP | 348214 | HEIGHT POSTPROCESSING SEQUENCE | +| W__POSTP | 348215 | WIND POSTPROCESSING SEQUENCE | +| PWTPOSTP | 348216 | TOTAL PRECIPITABLE WATER POSTPROCESSING SEQUENCE | +| PW1POSTP | 348217 | 1.0 TO 0.9 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW2POSTP | 348218 | 0.9 TO 0.7 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW3POSTP | 348219 | 0.7 TO 0.3 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW4POSTP | 348220 | 0.3 TO 0.0 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| RRTPOSTP | 348221 | RAIN RATE POSTPROCESSING SEQUENCE | +| CTPPOSTP | 348222 | CLOUD TOP PRESSURE POSTPROCESSING SEQUENCE | +| SSTPOSTP | 348223 | SEA TEMPERATURE POSTPROCESSING SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "CLIMATOLOGY" SEQUENCES | +* | +| PCLIMATO | 348231 | PRESSURE CLIMATOLOGY SEQUENCE | +| QCLIMATO | 348232 | SPECIFIC HUMIDITY CLIMATOLOGY SEQUENCE | +| TCLIMATO | 348233 | TEMPERATURE CLIMATOLOGY SEQUENCE | +| ZCLIMATO | 348234 | HEIGHT CLIMATOLOGY SEQUENCE | +| WCLIMATO | 348235 | WIND CLIMATOLOGY SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR TEMPRY CURRENT MODEL GUESS SEQUENCES | +* | +| PFC__MSQ | 348241 | MODEL PRESSURE FORECAST SEQUENCE | +| QFC__MSQ | 348242 | MODEL SPECIFIC HUMIDITY FORECAST SEQUENCE | +| TFC__MSQ | 348243 | MODEL TEMPERATURE FORECAST SEQUENCE | +| ZFC__MSQ | 348244 | MODEL HEIGHT FORECAST SEQUENCE | +| WFC__MSQ | 348245 | MODEL WIND FORECAST SEQUENCE | +| PWF__MSQ | 348246 | MODEL TOTAL PRECIPITABLE WATER FORECAST SEQUENCE | +| PW1F_MSQ | 348247 | MODEL 1.0 TO 0.9 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW2F_MSQ | 348248 | MODEL 0.9 TO 0.7 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW3F_MSQ | 348249 | MODEL 0.7 TO 0.3 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW4F_MSQ | 348250 | MODEL 0.3 TO 0.0 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR EVENTS CODES FOR THE VARIOUS | +* PREPBUFR PROCESSING "STEPS" (PROGRAMS OR SUBROUTINES WITHIN PROGRAMS) | +* THE LAST THREE DIGITS OF THE DESCRIPTOR NUMBER BECOMES THE "PROGRAM CODE" | +* | +| PREPRO | 363001 | INITIAL PREPBUFR PROCESSING STEP | +* | | (PREPDATA PROGRAM, PRIOR TO PREVENTS PROGRAM OR VTPEVN | +* SUBR. IN SUBR. GBLEVENTS) | +| SYNDATA | 363002 | SYNTHETIC TROPICAL CYCLONE BOGUS PROCESSING STEP | +* | | (SYNDATA PROGRAM, PRIOR TO PREVENTS PROGRAM OR VTPEVN | +* SUBR. IN SUBR. GBLEVENTS) | +| CLIMO | 363003 | CLIMOTOLOGICAL PROCESSING STEP | +* (NOT YET AVAILABLE) | +| PREVENT | 363004 | PRE-EVENTS BACKGROUND/OBSERVATION ERROR PROCESSING STEP | +* | | (PREVENTS PROGRAM OR GBLEVENTS SUBROUTINE IN PREPDATA | +* OR SYNDATA PROGRAM) | +| CQCHT | 363005 | RAWINSONDE HEIGHT/TEMP COMPLEX QUALITY CONTROL STEP | +* | | (CQCBUFR PROGRAM) | +| RADCOR | 363006 | RAWINSONDE HEIGHT/TEMP INTERSONDE(RADIATION) CORR. STEP | +* | | (RADEVN SUBROUTINE IN CQCBUFR PROGRAM) | +| PREPACQC | 363007 | AIRCRAFT QUALITY CONTROL STEP (NOT INCL. MDCRS ACARS) | +* | | (PREPACQC PROGRAM) | +| VIRTMP | 363008 | VIRTUAL TEMPERATURE/SPECIFIC HUMIDITY PROCESSING STEP | +* | | (PREVENTS PROGRAM OR VTPEVN SUBR. IN SUBR. GBLEVENTS IN | +* PREPDATA PROGRAM FOR ALL OBS. TYPES EXCEPT RAOBS/DROPS;| +* VTPEVN SUBR. IN CQCBUFR PROGRAM FOR RAOBS/DROPS) | +| CQCPROF | 363009 | WIND PROFILER QUALITY CONTROL STEP | +* | | (PROFCQC PROGRAM) | +| OIQC | 363010 | OI-QUALITY MULTI-PLATFROM CONTROL STEP | +* | | (OIQCBUFR PROGRAM) | +| SSI | 363011 | SSI GLOBAL ANALYSIS STEP | +* | | (SSIANL PROGRAM) | +| CQCVAD | 363012 | VAD WIND QUALITY CONTROL STEP | +* | | (CQCVAD PROGRAM) | +| R3DVAR | 363013 | 3DVAR REGIONAL ANALYSIS STEP | +* | | (R3DVAR PROGRAM) | +| ACARSQC | 363014 | MDCRS ACARS AIRCRAFT QUALITY CONTROL STEP | +* | | (ACARSQC PROGRAM) | +| NRLACQC | 363015 | NRL AIRCRAFT QUALITY CONTROL STEP | +* | | (NRLACQC PROGRAM) | +| GSI | 363016 | GSI ANALYSIS STEP | +* | | (GLOBAL_GSI AND NAM_GSI PROGRAMS) | +| DEFAULT | 363099 | NON-DEFINED STEP (DEFAULT) | +* | +* | +* THE FOLLOWING ARE TABLE B ENTRIES FOR THE REPORT HEADER | +* | +| ACID | 001006 | AIRCRAFT FLIGHT NUMBER | +| SAID | 001007 | SATELLITE IDENTIFIER (SATELLITE REPORTS ONLY) | +| SID | 001194 | STATION IDENTIFICATION | +| | | | +| SIRC | 002013 | RAWINSONDE SOLAR & INFRARED RADIATION CORR. INDICATOR | +| MSST | 002038 | METHOD OF SEA SURFACE TEMPERATURE MEASUREMENT | +| ITP | 002195 | INSTRUMENT TYPE | +| ROLF | 002199 | AIRCRAFT ROLL ANGLE FLAG | +| | | | +| RPT | 004214 | REPORTED OBSERVATION TIME | +| DHR | 004215 | OBSERVATION TIME MINUS CYCLE TIME | +| TCOR | 004216 | INDICATOR WHETHER OBS. TIME IN "DHR" WAS CORRECTED | +| RCT | 004217 | RECEIPT TIME | +| | | | +| YOB | 005002 | LATITUDE | +| ATRN | 005034 | ALONG TRACK ROW NUMBER (QUIKSCAT REPORTS ONLY) | +| | | | +| CTCN | 006034 | CROSS TRACK CELL NUMBER (QUIKSCAT & ASCAT REPORTS ONLY) | +| XOB | 006240 | LONGITUDE | +| | | | +| VSSO | 008002 | VERT. SIGNIFICANCE (SFC OBSERVATION) | +| ACAV | 008022 | TOTAL NUMBER WITH RESPECT TO ACCUMULATION OR AVERAGE | +| | | | +| IALR | 010082 | INSTANTANEOUS ALTITUDE RATE | +| ELV | 010199 | STATION ELEVATION | +| | | | +| SPRR | 021120 | SEAWINDS PROBABILITY OF RAIN (QUIKSCAT REPORTS ONLY) | +| | | | +| NRLQM | 033249 | NRL AIRCRAFT QUALITY CNTRL MARK (ADDED BY PGM NRLACQC) | +| | | | +| RSRD | 035200 | RESTRICTIONS ON REDISTRIBUTION | +| EXPRSRD | 035201 | EXPIRATION OF RESTRICTIONS ON REDISTRIBUTION | +| | | | +| SQN | 050001 | REPORT SEQUENCE NUMBER | +| PROCN | 050003 | PROCESS NUMBER FOR THIS MPI RUN (OBTAINED FROM SCRIPT) | +| | | | +| TYP | 055007 | PREPBUFR REPORT TYPE | +| T29 | 055008 | DATA DUMP REPORT TYPE | +| TSB | 055009 | REPORT SUBTYPE (HAS VARIOUS MEANINGS DEPENDING ON TYPE) | +| | | | +| PRVSTG | 058009 | MESONET PROVIDER ID STRING | +| SPRVSTG | 058010 | MESONET SUBPROVIDER ID STRING | +* | +* | +* THE FOLLOWING ARE TABLE B ENTRIES FOR THE REPORT LEVEL DATA | +* | +| TDMP | 001193 | TRUE DIRECTION OF SHIP DURING PAST 3 HOURS | +| ASMP | 001200 | AVG SPD OF SHIP DURING PAST 3 HOURS | +| | | | +| PCAT | 002005 | PRECISION OF TEMPERATURE OBSERVATION | +| AFIC | 020041 | AIRFRAME ICING | +| HBOI | 020194 | HEIGHT OF BASE OF ICING | +| HTOI | 020195 | HEIGHT OF TOP OF ICING | +| | | | +| .DTH.... | 004031 | DURATION OF TIME IN HOURS RELATED TO FOLLOWING VALUE | +| .DTM.... | 004032 | DURATION OF TIME IN MINS RELATED TO FOLLOWING VALUE | +| HRDR | 004218 | PROFILE LVL TIME-CYCLE (FOR RAOB/PIBAL, BASED ON B DFT) | +| | | | +| CHNM | 005042 | CHANNEL NUMBER | +| YDR | 005241 | PROFILE LEVEL LAT (FOR RAOB/PIBAL BASED ON BALLOON DFT) | +| | | | +| XDR | 006241 | PROFILE LEVEL LON (FOR RAOB/PIBAL BASED ON BALLOON DFT) | +| | | | +| ELEV | 007021 | SATELLITE ELEVATION (ZENITH ANGLE) | +| SOEL | 007022 | SOLAR ELEVATION (ZENITH ANGLE) | +| DBSS | 007062 | DEPTH BELOW SEA SURFACE | +| POB | 007245 | PRESSURE OBSERVATION | +| PQM | 007246 | PRESSURE (QUALITY) MARKER | +| PPC | 007247 | PRESSURE EVENT PROGRAM CODE | +| PRC | 007248 | PRESSURE EVENT REASON CODE | +| PFC | 007249 | FORECAST (BACKGROUND) PRESSURE VALUE | +| POE | 007250 | PRESSURE OBSERVATION ERROR | +| PAN | 007251 | ANALYZED PRESSURE VALUE | +| PCL | 007252 | CLIMATOLOGICAL PRESSURE VALUE | +| PCS | 007253 | STANDARD DEVIATION OF CLIMATOLOGICAL PRESSURE VALUE | +| POETU | 007254 | ANALYSIS-TUNED PRESSURE OBSERVATION ERROR | +| | | | +| POAF | 008004 | PHASE OF AIRCRAFT FLIGHT | +| CAT | 008193 | PREPBUFR DATA LEVEL CATEGORY | +| .RE.... | 008201 | RELATIONSHIP TO THE FOLLOWING VALUE | +| | | | +| ZOB | 010007 | HEIGHT OBSERVATION | +| ALSE | 010052 | ALTIMETER SETTING OBSERVATION | +| 3HPC | 010061 | 3 HOUR PRESSURE CHANGE | +| 24PC | 010062 | 24 HOUR PRESSURE CHANGE | +| CHPT | 010063 | CHARACTERISTIC OF PRESSURE TENDENCY | +| PRSS | 010195 | SURFACE PRESSURE OBSERVATION | +| PMO | 010243 | MEAN SEA-LEVEL PRESSURE OBSERVATION | +| PMQ | 010244 | MEAN SEA-LVL PRESSURE (QUALITY) MARKER | +| ZQM | 010246 | HEIGHT (QUALITY) MARKER | +| ZPC | 010247 | HEIGHT EVENT PROGRAM CODE | +| ZRC | 010248 | HEIGHT EVENT REASON CODE | +| ZFC | 010249 | FORECAST (BACKGROUND) HEIGHT VALUE | +| ZOE | 010250 | HEIGHT OBSERVATION ERROR | +| ZAN | 010251 | ANALYZED HEIGHT VALUE | +| ZCL | 010252 | CLIMATOLOGICAL HEIGHT VALUE | +| ZCS | 010253 | STANDARD DEVIATION OF CLIMATOLOGICAL HEIGHT VALUE | +| | | | +| DDO | 011001 | WIND DIRECTION OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "PREPACQC" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| SOB | 011002 | WIND SPEED OBSERVATION | +* | | (STORED WHEN DIRECTION IS MISSING; E.G. METARS) | +| UOB | 011003 | U-COMPONENT WIND OBSERVATION | +| VOB | 011004 | V-COMPONENT WIND OBSERVATION | +| DGOT | 011031 | DEGREE OF TURBULENCE | +| HBOT | 011032 | HEIGHT OF BASE OF TURBULENCE | +| HTOT | 011033 | HEIGHT OF TOP OF TURBULENCE | +| MXGS | 011041 | MAXIMUM WIND SPEED (GUSTS) | +| MXGD | 011043 | MAXIMUM WIND GUST DIRECTION | +| MWD10 | 011081 | MODEL WIND DIRECTION AT 10 M | +| MWS10 | 011082 | MODEL WIND SPEED AT 10 M | +| WDIR1 | 011200 | SURFACE WIND DIRECTION | +| WSPD1 | 011201 | SURFACE WIND SPEED | +| PKWDDR | 011202 | PEAK WIND DIRECTION | +| PKWDSP | 011203 | PEAK WIND SPEED | +| SQM | 011217 | WIND SPEED (SOB) (QUALITY) MARKER | +* | | (STORED WHEN DIRECTION IS MISSING; E.G. METARS) | +| DFQ | 011218 | WIND DIRECTION/SPEED (DDO/FFO) (QUALITY) MARKER | +| DFP | 011219 | WIND DIRECTION/SPEED (DDO/FFO) EVENT PROGRAM CODE | +| DFR | 011220 | WIND DIRECTION/SPEED (DDO/FFO) EVENT REASON CODE | +| XS10 | 011223 | 10 METER EXTRAPOLATED WIND SPEED | +| XS20 | 011224 | 20 METER EXTRAPOLATED WIND SPEED | +| RF10M | 011225 | 10 METER WIND REDUCTION FACTOR | +| TRBX | 011235 | TURBULENCE INDEX | +| TRBX10 | 011236 | TURBULENCE INDEX FOR PERIOD (TOB-1 MIN) -> TOB | +| TRBX21 | 011237 | TURBULENCE INDEX FOR PERIOD (TOB-2 MIN) -> (TOB-1 MIN) | +| TRBX32 | 011238 | TURBULENCE INDEX FOR PERIOD (TOB-3 MIN) -> (TOB-2 MIN) | +| TRBX43 | 011239 | TURBULENCE INDEX FOR PERIOD (TOB-4 MIN) -> (TOB-3 MIN) | +| WQM | 011240 | U-, V-COMPONENT WIND (UOB/VOB) (QUALITY) MARKER | +| WPC | 011241 | U-, V-COMPONENT WIND (UOB/VOB) EVENT PROGRAM CODE | +| WRC | 011242 | U-, V-COMPONENT WIND (UOB/VOB) EVENT REASON CODE | +| UFC | 011243 | FORECAST (BACKGROUND) U-COMPONENT WIND VALUE | +| VFC | 011244 | FORECAST (BACKGROUND) V-COMPONENT WIND VALUE | +| WOE | 011245 | WIND OBSERVATION ERROR | +| UAN | 011246 | ANALYZED U-COMPONENT WIND VALUE | +| VAN | 011247 | ANALYZED V-COMPONENT WIND VALUE | +| UCL | 011248 | CLIMATOLOGICAL U-COMPONENT WIND VALUE | +| VCL | 011249 | CLIMATOLOGICAL V-COMPONENT WIND VALUE | +| UCS | 011250 | STANDARD DEVIATION OF CLIMATOLOGICAL U-COMP WIND VALUE | +| VCS | 011251 | STANDARD DEVIATION OF CLIMATOLOGICAL V-COMP WIND VALUE | +| FFO | 011252 | WIND SPEED OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "PREPACQC" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| WOETU | 011253 | ANALYSIS-TUNED WIND OBSERVATION ERROR | +| | | | +| MXTM | 012111 | MAXIMUM TEMPERATURE | +| MITM | 012112 | MINIMUM TEMPERATURE | +| TMSK | 012161 | SKIN TEMPERATURE | +| TMBR | 012163 | BRIGHTNESS TEMPERATURE | +| GCDTT | 012210 | GOES CLOUD TOP TEMPERATURE OBSERVATION | +| TVO | 012243 | NON-Q. CONTROLLED VIRTUAL TEMP OBS (NOT ASSIMILATED) | +* | | (AFTER "PREPRO" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| TDO | 012244 | DEWPOINT TEMPERATURE OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "VIRTMP" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| TOB | 012245 | TEMPERATURE OBSERVATION | +* | | {AFTER "PREPRO" STEP - REPORTED TEMP, EITHER SENSIBLE | +* | | OR VIRTUAL DEPENDING UPON DATA TYPE; | +* | | AFTER "VIRTMP" STEP - VIRTUAL TEMPERATURE IF MOISTURE | +* | | AVAILABLE AND TEMPERATURE AFTER "PREPRO" STEP IS | +* | | SENSIBLE (EXCEPT FOR AIRCRAFT), OTHERWISE AS DEFINED | +* | | AFTER "PREPRO" STEP} | +| TQM | 012246 | TEMPERATURE (QUALITY) MARKER | +| TPC | 012247 | TEMPERATURE EVENT PROGRAM CODE | +| TRC | 012248 | TEMPERATURE EVENT REASON CODE | +| TFC | 012249 | FORECAST (BACKGROUND) TEMPERATURE VALUE | +| TOE | 012250 | TEMPERATURE OBSERVATION ERROR | +| TAN | 012251 | ANALYZED TEMPERATURE VALUE | +| TCL | 012252 | CLIMATOLOGICAL TEMPERATURE VALUE | +| TCS | 012253 | STANDARD DEVIATION OF CLIMATOLOGICAL TEMPERATURE VALUE | +| TOETU | 012254 | ANALYSIS-TUNED TEMPERATURE OBSERVATION ERROR | +| | | | +| TOPC | 013011 | TOTAL PRECIPITATION/TOTAL WATER EQUIVALENT | +| DOFS | 013012 | DEPTH OF FRESH SNOW | +| TOSD | 013013 | TOTAL SNOW DEPTH | +| REQV | 013014 | RAINFALL (AVERAGE RATE) OBSERVATION | +| TP01 | 013019 | TOTAL PRECIPITATION PAST 1 HOUR | +| TP03 | 013020 | TOTAL PRECIPITATION PAST 3 HOURS | +| TP06 | 013021 | TOTAL PRECIPITATION PAST 6 HOURS | +| TP12 | 013022 | TOTAL PRECIPITATION PAST 12 HOURS | +| TP24 | 013023 | TOTAL PRECIPITATION PAST 24 HOURS | +| MRWVC | 013096 | MWR WATER VAPOR CONTENT (TOTAL WATER VAPOR) | +| MRLWC | 013097 | MWR LIQUID WATER CONTENT (TOTAL CLOUD LIQUID WATER) | +| PWO | 013193 | TOTAL PRECIPITABLE WATER OBSERVATION | +| PW1O | 013202 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW2O | 013203 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW3O | 013204 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| QOB | 013245 | SPECIFIC HUMIDITY OBSERVATION | +* | | (AFTER "VIRTMP" STEP - ALWAYS RECALCULATED FROM QUALITY | +* | | CONTROLLED VIRTUAL TEMPERATURE DATA) | +| ESBAK | 013242 | FORECAST(BACKGROUND) SATURATION SPECIFIC HUMIDITY VALUE | +| QQM | 013246 | SPECIFIC HUMIDITY (QUALITY) MARKER | +| QPC | 013247 | SPECIFIC HUMIDITY EVENT PROGRAM CODE | +| QRC | 013248 | SPECIFIC HUMIDITY EVENT REASON CODE | +| QFC | 013249 | FORECAST (BACKGROUND) SPECIFIC HUMIDITY VALUE | +| QOE | 013250 | RELATIVE HUMIDITY OBSERVATION ERROR | +| QAN | 013251 | ANALYZED SPECIFIC HUMIDITY VALUE | +| QCL | 013252 | CLIMATOLOGICAL SPECIFIC HUMIDITY VALUE | +| QCS | 013253 | STANDARD DEV OF CLIMATOLOGICAL SPECIFIC HUMIDITY VALUE | +| QOETU | 013254 | ANALYSIS-TUNED RELATIVE HUMIDITY OBSERVATION ERROR | +| | | | +| TOSS | 014031 | TOTAL SUNSHINE | +| | | | +| OZON | 015001 | OZONE | +| | | | +| HOVI | 020001 | HORIZONTAL VISIBILITY | +| VTVI | 020002 | VERTICAL VISIBILITY | +| PRWE | 020003 | PRESENT WEATHER | +| PSW1 | 020004 | PAST WEATHER (1) | +| PSW2 | 020005 | PAST WEATHER (2) | +| TOCC | 020010 | CLOUD COVER (TOTAL) | +| CLAM | 020011 | CLOUD AMOUNT | +| CLTP | 020012 | CLOUD TYPE | +| HOCB | 020013 | HEIGHT OF BASE OF CLOUD | +| HOCT | 020014 | HEIGHT OF TOP OF CLOUD | +| CDTP | 020016 | CLOUD TOP PRESSURE OBSERVATION | +| HBLCS | 020201 | HEIGHT ABOVE SURFACE OF BASE OF LOWEST CLOUD SEEN | +| WSST | 020219 | WINDSAT SURFACE TYPE | +| CTPQM | 020246 | CLOUD TOP PRESSURE (QUALITY) MARKER | +| CTPPC | 020247 | CLOUD TOP PRESSURE EVENT PROGRAM CODE | +| CTPRC | 020248 | CLOUD TOP PRESSURE EVENT REASON CODE | +| CTPFC | 020249 | FORECAST (BACKGROUND) CLOUD TOP PRESSURE VALUE | +| CTPOE | 020250 | CLOUD TOP PRESSURE OBSERVATION ERROR | +| CTPAN | 020251 | ANALYZED CLOUD TOP PRESSURE VALUE | +| | | | +| LKCS | 021104 | LIKELIHOOD COMPUTED FOR SOLUTION (ASCAT REPORTS ONLY) | +| WVCQ | 021155 | WIND VECTOR CELL QUALITY (ASCAT REPORTS ONLY) | +| BSCD | 021156 | BACKSCATTER DISTANCE (ASCAT REPORTS ONLY) | +| A1 | 021226 | ERS INCIDENT ANGLE NUMBER 1 | +| A2 | 021227 | ERS INCIDENT ANGLE NUMBER 2 | +| A3 | 021228 | ERS INCIDENT ANGLE NUMBER 3 | +| B1 | 021231 | ERS AZIMUTH ANGLE NUMBER 1 | +| B2 | 021232 | ERS AZIMUTH ANGLE NUMBER 2 | +| B3 | 021233 | ERS AZIMUTH ANGLE NUMBER 3 | +| S1 | 021236 | ERS BACKSCATTER NUMBER 1 | +| S2 | 021237 | ERS BACKSCATTER NUMBER 2 | +| S3 | 021238 | ERS BACKSCATTER NUMBER 3 | +| E1 | 021241 | ERS ERROR ESTIMATE NUMBER 1 | +| E2 | 021242 | ERS ERROR ESTIMATE NUMBER 2 | +| E3 | 021243 | ERS ERROR ESTIMATE NUMBER 3 | +| | | | +| DOSW | 022003 | DIRECTION OF SWELL WAVES | +| POWV | 022011 | PERIOD OF WAVES | +| POWW | 022012 | PERIOD OF WIND WAVES | +| POSW | 022013 | PERIOD OF SWELL WAVES | +| HOWV | 022021 | HEIGHT OF WAVES | +| HOWW | 022022 | HEIGHT OF WIND WAVES | +| HOSW | 022023 | HEIGHT OF SWELL WAVES | +| SST1 | 022043 | SEA TEMPERATURE | +| SSTQM | 022246 | SEA TEMPERATURE (QUALITY) MARKER | +| SSTPC | 022247 | SEA TEMPERATURE EVENT PROGRAM CODE | +| SSTRC | 022248 | SEA TEMPERATURE EVENT REASON CODE | +| SSTFC | 022249 | FORECAST (BACKGROUND) SEA TEMPERATURE VALUE | +| SSTOE | 022250 | SEA TEMPERATURE OBSERVATION ERROR | +| SSTAN | 022251 | ANALYZED SEA TEMPERATURE VALUE | +| | | | +| MSTQ | 033026 | MOISTURE QUALITY | +| RFFL | 033196 | PERCENT CONFIDENCE BASED ON NESDIS RECURSIVE FILTER FCN | +| QIFY | 033197 | PERCENT CONFIDENCE BASED ON EUMETSAT QUAL INDX W/ FCST | +| QIFN | 033198 | PERCENT CONFIDENCE BASED ON EUMETSAT QUAL INDX W/O FCST | +| CHSQ | 033199 | CHI-SQUARED (OF THE WIND VECTOR RETRIEVAL) | +| WSEQC1 | 033200 | WINDSAT EDR QC FLAG #1 | +| PHER | 033201 | EST. ERROR COVARIANCE FOR WIND DIRECTION RETRIEVAL | +| EEQF | 033203 | PERCENT CONFIDENCE BASED ON NESDIS EXPECTED ERROR | +| PVWTG | 033204 | ANAL VARIATIONAL QC WEIGHT ON PRESS. OBS BASED ON GUESS | +| PVWTA | 033205 | ANAL VARIATIONAL QC WEIGHT ON PRESS. OBS BASED ON ANAL | +| TVWTG | 033206 | ANAL VARIATIONAL QC WEIGHT ON TEMP. OBS BASED ON GUESS | +| TVWTA | 033209 | ANAL VARIATIONAL QC WEIGHT ON TEMP. OBS BASED ON ANAL | +| QVWTG | 033210 | ANAL VARIATIONAL QC WEIGHT ON MOIST. OBS BASED ON GUESS | +| QVWTA | 033211 | ANAL VARIATIONAL QC WEIGHT ON MOIST. OBS BASED ON ANAL | +| WVWTG | 033212 | ANAL VARIATIONAL QC WEIGHT ON WIND OBS BASED ON GUESS | +| WVWTA | 033213 | ANAL VARIATIONAL QC WEIGHT ON WIND OBS BASED ON ANAL | +| PWTVWTG | 033214 | ANAL VARIAT. QC WGHT ON TOT PREC. WTR OBS BASED ON GESS | +| PWTVWTA | 033228 | ANAL VARIAT. QC WGHT ON TOT PREC. WTR OBS BASED ON ANAL | +| SSTE | 033245 | EST. ERROR COVARIANCE FOR SEA SURFACE TEMP RETRIEVAL | +| SPDE | 033246 | EST. ERROR COVARIANCE FOR WIND SPEED RETRIEVAL | +| VPRE | 033247 | EST. ERROR COVARIANCE FOR TOTAL WATER VAPOR RETRIEVAL | +| CLDE | 033248 | EST. ERROR COVARIANCE FOR TOTAL CLD LIQUID WATER RETR. | +| | | | +| RRTQM | 051001 | RAINFALL (AVERAGE RATE) (QUALITY) MARKER | +| RRTPC | 051002 | RAINFALL (AVERAGE RATE) EVENT PROGRAM CODE | +| RRTRC | 051003 | RAINFALL (AVERAGE RATE) EVENT REASON CODE | +| RRTFC | 051004 | FORECAST (BACKGROUND) RAINFALL (AVERAGE RATE) VALUE | +| RRTOE | 051005 | RAINFALL (AVERAGE RATE) OBSERVATION ERROR | +| RRTAN | 051006 | ANALYZED RAINFALL (AVERAGE RATE) VALUE | +| PWQ | 051021 | TOTAL PRECIPITABLE WATER (QUALITY) MARKER | +| PWP | 051022 | TOTAL PRECIPITABLE WATER EVENT PROGRAM CODE | +| PWR | 051023 | TOTAL PRECIPITABLE WATER EVENT REASON CODE | +| PWF | 051024 | FORECAST (BACKGROUND) TOTAL PRECIPITABLE WATER VALUE | +| PWE | 051025 | TOTAL PRECIPITABLE WATER OBSERVATION ERROR | +| PWA | 051026 | ANALYZED TOTAL PRECIPITABLE WATER VALUE | +| PWETU | 051027 | ANALYSIS-TUNED TOTAL PRECIPITABLE WATER OBS ERROR | +| PW1Q | 051032 | 1.0 TO 0.9 SIGMA LAYER PRECIP. WATER (QUALITY) MARKER | +| PW1P | 051033 | 1.0 TO 0.9 SIGMA LAYER PRECIP. WATER EVENT PROGRAM CODE | +| PW1R | 051034 | 1.0 TO 0.9 SIGMA LAYER PRECIP. WATER EVENT REASON CODE | +| PW1F | 051035 | FCST(BACKGRND) 1.0 TO 0.9 SIGMA LYR PRECIP. WATER VALUE | +| PW1E | 051036 | 1.0 TO 0.9 SIGMA LAYER PRECIP. WATER OBSERVATION ERROR | +| PW1A | 051037 | ANALYZED 1.0 TO 0.9 SIGMA LAYER PRECIP. WATER VALUE | +| PW2Q | 051042 | 0.9 TO 0.7 SIGMA LAYER PRECIP. WATER (QUALITY) MARKER | +| PW2P | 051043 | 0.9 TO 0.7 SIGMA LAYER PRECIP. WATER EVENT PROGRAM CODE | +| PW2R | 051044 | 0.9 TO 0.7 SIGMA LAYER PRECIP. WATER EVENT REASON CODE | +| PW2F | 051045 | FCST(BACKGRND) 0.9 TO 0.7 SIGMA LYR PRECIP. WATER VALUE | +| PW2E | 051046 | 0.9 TO 0.7 SIGMA LAYER PRECIP. WATER OBSERVATION ERROR | +| PW2A | 051047 | ANALYZED 0.9 TO 0.7 SIGMA LAYER PRECIP. WATER VALUE | +| PW3Q | 051052 | 0.7 TO 0.3 SIGMA LAYER PRECIP. WATER (QUALITY) MARKER | +| PW3P | 051053 | 0.7 TO 0.3 SIGMA LAYER PRECIP. WATER EVENT PROGRAM CODE | +| PW3R | 051054 | 0.7 TO 0.3 SIGMA LAYER PRECIP. WATER EVENT REASON CODE | +| PW3F | 051055 | FCST(BACKGRND) 0.7 TO 0.3 SIGMA LYR PRECIP. WATER VALUE | +| PW3E | 051056 | 0.7 TO 0.3 SIGMA LAYER PRECIP. WATER OBSERVATION ERROR | +| PW3A | 051057 | ANALYZED 0.7 TO 0.3 SIGMA LAYER PRECIP. WATER VALUE | +| PW4O | 051061 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW4Q | 051062 | 0.3 TO 0.0 SIGMA LAYER PRECIP. WATER (QUALITY) MARKER | +| PW4P | 051063 | 0.3 TO 0.0 SIGMA LAYER PRECIP. WATER EVENT PROGRAM CODE | +| PW4R | 051064 | 0.3 TO 0.0 SIGMA LAYER PRECIP. WATER EVENT REASON CODE | +| PW4F | 051065 | FCST(BACKGRND) 0.3 TO 0.0 SIGMA LYR PRECIP. WATER VALUE | +| PW4E | 051066 | 0.3 TO 0.0 SIGMA LAYER PRECIP. WATER OBSERVATION ERROR | +| PW4A | 051067 | ANALYZED 0.3 TO 0.0 SIGMA LAYER PRECIP. WATER VALUE | +| | | | +* The following are added temporarily until PFC, ZFC, etc. contain current | +* model guess instead of Global guess (applies for all models except Global) | +| | | | +| PFCMOD | 007255 | MODEL PRESSURE FORECAST VALUE (GLOBAL MODEL SEE PFC) | +| ZFCMOD | 010255 | MODEL HEIGHT FORECAST VALUE (GLOBAL MODEL SEE ZFC) | +| UFCMOD | 011254 | MODEL U-COMPONENT FORECAST VALUE (GLOBAL MODEL SEE UFC) | +| VFCMOD | 011255 | MODEL V-COMPONENT FORECAST VALUE (GLOBAL MODEL SEE VFC) | +| TFCMOD | 012255 | MODEL TEMPERATURE FORECAST VALUE (GLOBAL MODEL SEE TFC) | +| QFCMOD | 013255 | MODEL S. HUMIDITY FORECAST VALUE (GLOBAL MODEL SEE QFC) | +| PWFMOD | 051030 | MODEL TOTAL PWATER FORECAST VALUE(GLOBAL MODEL SEE PWC) | +| PW1FMOD | 051040 | MODEL 1.-.9 SIG. LYR PWATER FCST(GLOBAL MODEL SEE PW1F) | +| PW2FMOD | 051050 | MODEL .9-.7 SIG. LYR PWATER FCST(GLOBAL MODEL SEE PW2F) | +| PW3FMOD | 051060 | MODEL .7-.3 SIG. LYR PWATER FCST(GLOBAL MODEL SEE PW3F) | +| PW4FMOD | 051070 | MODEL .3-0. SIG. LYR PWATER FCST(GLOBAL MODEL SEE PW4F) | +| | | | +|------------------------------------------------------------------------------| +| MNEMONIC | SEQUENCE | +|----------|-------------------------------------------------------------------| +| | | +| ADPUPA | HEADR SIRC {PRSLEVEL} {CLOUDSEQ} | +| ADPUPA | | +| | | +| AIRCAR | HEADR ACID {PRSLEVLA} | +| | | +| AIRCFT | HEADR {PRSLEVLA} | +| | | +| SATWND | HEADR SAID PRSLEVEL | +| | | +| PROFLR | HEADR {PRSLEVEL} | +| | | +| VADWND | HEADR {PRSLEVEL} | +| | | +| SATEMP | HEADR SAID {PRSLEVEL} {BTMPLEVL} | +| | | +| GOESND | HEADR SAID ACAV {PRSLEVLG} {BTMPLEVL} | +| | | +| ADPSFC | HEADR PRSLEVEL | +| ADPSFC | {PREWXSEQ} {CLOUDSEQ} {TMXMNSEQ} {SWELLSEQ} | +| ADPSFC | | +| ADPSFC | | +| | | +| SFCSHP | HEADR PRSLEVEL {CLOUDSEQ} | +| SFCSHP | {SWELLSEQ} | +| SFCSHP | | +| | | +| SFCBOG | HEADR PRSLEVEL | +| | | +| SPSSMI | HEADR CAT SAID | +| SPSSMI | {BTMPLEVL} | +| | | +| SYNDAT | HEADR {PRSLEVEL} | +| | | +| ERS1DA | HEADR CAT SAID | +| | | +| QKSWND | HEADR CAT SAID CTCN ATRN SPRR | +| | | +| MSONET | HEADR PRVSTG SPRVSTG PRSLEVEL {TOPC_SEQ} | +| MSONET | | +| | | +| GPSIPW | HEADR CAT PW__INFO | +| | | +| RASSDA | HEADR {PRSLEVEL} | +| | | +| WDSATR | HEADR CAT SAID ACAV REQV SST1 | +| WDSATR | MWD10 MWS10 MRWVC MRLWC WSST CHSQ | +| WDSATR | WSEQC1 PHER SSTE SPDE VPRE CLDE | +| | | +| ASCATW | HEADR CAT SAID CTCN WVCQ BSCD LKCS | +| | | +| HEADR | SID XOB YOB DHR ELV TYP T29 TSB ITP SQN | +| HEADR | PROCN RPT TCOR | +| | | +| PRSLEVEL | CAT | +| PRSLEVEL | | +| | | +| PRSLEVLG | CAT | +| PRSLEVLG | | +| | | +| PRSLEVLA | RCT ROLF MSTQ IALR | +| PRSLEVLA | CAT | +| PRSLEVLA | | +| PRSLEVLA | {TURB3SEQ} {PREWXSEQ} {CLOUDSEQ} {AFIC_SEQ} {NRLQMSEQ} | +| | | +| BTMPLEVL | CHNM TMBR | +| | | +| P___INFO | [P__EVENT] | +| Q___INFO | [Q__EVENT] TDO | +| T___INFO | [T__EVENT] TVO | +| Z___INFO | [Z__EVENT] | +| W___INFO | [W__EVENT] [DF_EVENT] | +| PW__INFO | PRSS | +| PWT_INFO | [PWTEVENT] | +| PWL_INFO | | +| PW1_INFO | [PW1EVENT] | +| PW2_INFO | [PW2EVENT] | +| PW3_INFO | [PW3EVENT] | +| PW4_INFO | [PW4EVENT] | +| RRT_INFO | [RRTEVENT] | +| CTP_INFO | [CTPEVENT] TOCC GCDTT | +| SST_INFO | [SSTEVENT] MSST | +| BTMPINFO | ELEV SOEL OZON TMSK CLAM | +| DRFTINFO | XDR YDR HRDR | +| SCATINFO | A1 A2 A3 B1 B2 B3 S1 S2 S3 E1 E2 E3 | +| | | +| TURB1SEQ | TRBX | +| TURB2SEQ | TRBX10 TRBX21 TRBX32 TRBX43 | +| PCCF_SEQ | RFFL QIFY QIFN EEQF | +| ACFT_SEQ | PCAT POAF | +| RSRD_SEQ | RSRD EXPRSRD | +| PMSL_SEQ | PMO PMQ | +| ALTIMSEQ | ALSE | +| WSPD_SEQ | SOB SQM | +| TOPC_SEQ | .DTHTOPC TOPC | +| PREWXSEQ | PRWE | +| CLOUDSEQ | VSSO CLAM CLTP HOCB | +| HOCT_SEQ | HOCT | +| TMXMNSEQ | .DTHMXTM MXTM .DTHMITM MITM | +| SWELLSEQ | DOSW HOSW POSW | +| DBSS_SEQ | DBSS | +| VISB1SEQ | .REHOVI HOVI | +| VISB2SEQ | HOVI | +| VTVI_SEQ | VTVI | +| PSTWXSEQ | PSW1 PSW2 | +| PKWNDSEQ | PKWDSP PKWDDR | +| GUST1SEQ | .DTMMXGS MXGS | +| GUST2SEQ | MXGS MXGD | +| TPRECSEQ | TP01 TP03 TP06 TP24 | +| TP12_SEQ | TP12 | +| SUNSHSEQ | TOSS | +| CLOU2SEQ | TOCC HBLCS | +| XWSPDSEQ | XS10 XS20 | +| SWINDSEQ | WDIR1 WSPD1 | +| SNOW_SEQ | .DTHDOFS DOFS TOSD | +| WAVE_SEQ | HOWV POWV HOWW POWW | +| SHIP_SEQ | TDMP ASMP | +| PTENDSEQ | CHPT 3HPC | +| PTE24SEQ | 24PC | +| ACID_SEQ | ACID | +| AFIC_SEQ | AFIC HBOI HTOI | +| TURB3SEQ | DGOT HBOT HTOT | +| NRLQMSEQ | NRLQM | +| | | +| P__EVENT | POB PQM PPC PRC | +| Q__EVENT | QOB QQM QPC QRC | +| T__EVENT | TOB TQM TPC TRC | +| Z__EVENT | ZOB ZQM ZPC ZRC | +| W__EVENT | UOB VOB WQM WPC WRC | +| DF_EVENT | DDO FFO DFQ DFP DFR | +| PWTEVENT | PWO PWQ PWP PWR | +| PW1EVENT | PW1O PW1Q PW1P PW1R | +| PW2EVENT | PW2O PW2Q PW2P PW2R | +| PW3EVENT | PW3O PW3Q PW3P PW3R | +| PW4EVENT | PW4O PW4Q PW4P PW4R | +| RRTEVENT | 202130 201134 REQV 201000 202000 RRTQM RRTPC RRTRC | +| CTPEVENT | CDTP CTPQM CTPPC CTPRC | +| SSTEVENT | SST1 SSTQM SSTPC SSTRC | +| | | +| P__BACKG | POE PFC | +| Q__BACKG | QOE QFC | +| T__BACKG | TOE TFC | +| Z__BACKG | ZFC | +| W__BACKG | WOE UFC VFC | +| PWTBACKG | PWE PWF | +| PW1BACKG | PW1E PW1F | +| PW2BACKG | PW2E PW2F | +| PW3BACKG | PW3E PW3F | +| PW4BACKG | PW4E PW4F | +| RRTBACKG | RRTOE RRTFC | +| CTPBACKG | CTPOE CTPFC | +| SSTBACKG | SSTOE SSTFC | +| | | +| P__POSTP | PAN POETU PVWTG PVWTA | +| Q__POSTP | QAN QOETU QVWTG QVWTA ESBAK | +| T__POSTP | TAN TOETU TVWTG TVWTA | +| Z__POSTP | ZAN | +| W__POSTP | UAN VAN WOETU WVWTG WVWTA RF10M | +| PWTPOSTP | PWA PWETU PWTVWTG PWTVWTA | +| PW1POSTP | PW1A | +| PW2POSTP | PW2A | +| PW3POSTP | PW3A | +| PW4POSTP | PW4A | +| RRTPOSTP | RRTAN | +| CTPPOSTP | CTPAN | +| SSTPOSTP | SSTAN | +| | | +| PCLIMATO | PCL PCS | +| QCLIMATO | QCL QCS | +| TCLIMATO | TCL TCS | +| ZCLIMATO | ZCL ZCS | +| WCLIMATO | UCL UCS VCL VCS | +| | | +| PFC__MSQ | PFCMOD | +| QFC__MSQ | QFCMOD | +| TFC__MSQ | TFCMOD | +| ZFC__MSQ | ZFCMOD | +| WFC__MSQ | UFCMOD VFCMOD | +| PWF__MSQ | PWFMOD | +| PW1F_MSQ | PW1FMOD | +| PW2F_MSQ | PW2FMOD | +| PW3F_MSQ | PW3FMOD | +| PW4F_MSQ | PW4FMOD | +| | | +|------------------------------------------------------------------------------| +| MNEMONIC | SCAL | REFERENCE | BIT | UNITS |-------------| +|----------|------|-------------|-----|--------------------------|-------------| +| | | | | |-------------| +| ACID | 0 | 0 | 64 | CCITT IA5 |-------------| +| SAID | 0 | 0 | 10 | CODE TABLE |-------------| +| SID | 0 | 0 | 64 | CCITT IA5 |-------------| +| | | | | |-------------| +| SIRC | 0 | 0 | 4 | CODE TABLE |-------------| +| MSST | 0 | 0 | 3 | CODE TABLE |-------------| +| ITP | 0 | 0 | 8 | CODE TABLE |-------------| +| ROLF | 0 | 0 | 3 | CODE TABLE |-------------| +| | | | | |-------------| +| RPT | 5 | 0 | 22 | HOURS |-------------| +| DHR | 5 | -2400000 | 23 | HOURS |-------------| +| TCOR | 0 | 0 | 3 | CODE TABLE |-------------| +| RCT | 2 | 0 | 12 | HOURS |-------------| +| | | | | |-------------| +| YOB | 2 | -9000 | 15 | DEG N |-------------| +| ATRN | 0 | 0 | 11 | NUMERIC |-------------| +| | | | | |-------------| +| CTCN | 0 | 0 | 7 | NUMERIC |-------------| +* IMPORTANT: XOB IS A LOCAL DESCRIPTOR HERE EVEN THOUGH IT HAS THE SAME * +* ATTRIBUTES AS CLON (0-06-002) - THIS IS BECAUSE IT IS CODED HERE * +* WITH THE RANGE 0 TO 360 DEGREES EAST UNLIKE CLON WHICH HAS THE * +* RANGE -180 TO +180 DEGREES, WHERE EAST IS + AND WEST IS - * +* (IT CAN STILL BE HELD HERE IN 16 BITS) * +| XOB | 2 | -18000 | 16 | DEG E |-------------| +| | | | | |-------------| +| VSSO | 0 | 0 | 6 | CODE TABLE |-------------| +| ACAV | 0 | 0 | 16 | NUMERIC |-------------| +| | | | | |-------------| +| IALR | 3 | -65536 | 17 | M/S |-------------| +| ELV | 0 | -1000 | 17 | METER |-------------| +| | | | | |-------------| +| SPRR | 3 | 0 | 10 | NUMERIC |-------------| +| | | | | |-------------| +| NRLQM | 0 | 0 | 8 | CCITT IA5 |-------------| +| | | | | |-------------| +| RSRD | 0 | 0 | 9 | FLAG TABLE |-------------| +| EXPRSRD | 0 | 0 | 8 | HOURS |-------------| +| | | | | |-------------| +| SQN | 0 | 0 | 19 | NUMERIC |-------------| +| | | | | |-------------| +| PROCN | 0 | 0 | 7 | NUMERIC |-------------| +| | | | | |-------------| +| TYP | 0 | 0 | 10 | CODE TABLE |-------------| +| T29 | 0 | 0 | 10 | CODE TABLE |-------------| +| TSB | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| PRVSTG | 0 | 0 | 64 | CCITT IA5 |-------------| +| SPRVSTG | 0 | 0 | 64 | CCITT IA5 |-------------| +| | | | | |-------------| +| | | | | |-------------| +| TDMP | 0 | 0 | 4 | CODE TABLE |-------------| +| ASMP | 0 | 0 | 4 | CODE TABLE |-------------| +| | | | | |-------------| +| PCAT | 2 | 0 | 7 | KELVIN |-------------| +| AFIC | 0 | 0 | 4 | CODE TABLE |-------------| +| HBOI | -1 | -40 | 16 | METER |-------------| +| HTOI | -1 | -40 | 16 | METER |-------------| +| | | | | |-------------| +| .DTH.... | 0 | 0 | 8 | HOURS |-------------| +| .DTM.... | 0 | 0 | 6 | MINUTES |-------------| +| HRDR | 5 | -2400000 | 23 | HOURS |-------------| +| | | | | |-------------| +| CHNM | 0 | 0 | 6 | NUMERIC |-------------| +| YDR | 2 | -9000 | 15 | DEG N |-------------| +| | | | | |-------------| +| XDR | 2 | -18000 | 16 | DEG E |-------------| +| | | | | |-------------| +| ELEV | 2 | -9000 | 15 | DEGREE |-------------| +| SOEL | 2 | -9000 | 15 | DEGREE |-------------| +| DBSS | 1 | 0 | 17 | METER |-------------| +| POB | 1 | 0 | 14 | MB |-------------| +| PQM | 0 | 0 | 5 | CODE TABLE |-------------| +| PPC | 0 | 0 | 5 | CODE TABLE |-------------| +| PRC | 0 | 0 | 10 | CODE TABLE |-------------| +| PFC | 1 | 0 | 14 | MB |-------------| +| POE | 2 | 0 | 14 | MB |-------------| +| PAN | 1 | 0 | 14 | MB |-------------| +| PCL | 1 | 0 | 14 | MB |-------------| +| PCS | 1 | 0 | 14 | MB |-------------| +| POETU | 2 | 0 | 14 | MB |-------------| +| | | | | |-------------| +| POAF | 0 | 0 | 3 | CODE TABLE |-------------| +| CAT | 0 | 0 | 6 | CODE TABLE |-------------| +| .RE.... | 0 | 0 | 3 | CODE TABLE |-------------| +| | | | | |-------------| +| ZOB | 0 | -1000 | 17 | METER |-------------| +| ALSE | -1 | 0 | 14 | PASCALS |-------------| +| 3HPC | -1 | -500 | 10 | PASCALS |-------------| +| 24PC | -1 | -1000 | 11 | PASCALS |-------------| +| CHPT | 0 | 0 | 4 | CODE TABLE |-------------| +| PRSS | -1 | 0 | 14 | PASCALS |-------------| +| PMO | 1 | 0 | 14 | MB |-------------| +| PMQ | 0 | 0 | 5 | CODE TABLE |-------------| +| ZQM | 0 | 0 | 5 | CODE TABLE |-------------| +| ZPC | 0 | 0 | 5 | CODE TABLE |-------------| +| ZRC | 0 | 0 | 10 | CODE TABLE |-------------| +| ZFC | 0 | -1000 | 17 | METER |-------------| +| ZOE | 0 | 0 | 10 | METER |-------------| +| ZAN | 0 | -1000 | 17 | METER |-------------| +| ZCL | 0 | -1000 | 17 | METER |-------------| +| ZCS | 0 | 0 | 10 | METER |-------------| +| | | | | |-------------| +| DDO | 0 | 0 | 9 | DEGREES TRUE |-------------| +| SOB | 1 | 0 | 12 | M/S |-------------| +| UOB | 1 | -4096 | 13 | M/S |-------------| +| VOB | 1 | -4096 | 13 | M/S |-------------| +| DGOT | 0 | 0 | 4 | CODE TABLE |-------------| +| HBOT | -1 | -40 | 16 | METERS |-------------| +| HTOT | -1 | -40 | 16 | METERS |-------------| +| MXGS | 1 | 0 | 12 | M/S |-------------| +| MXGD | 0 | 0 | 9 | DEGREES TRUE |-------------| +| MWD10 | 2 | 0 | 16 | DEGREES TRUE |-------------| +| MWS10 | 2 | 0 | 14 | M/S |-------------| +| WDIR1 | 0 | 0 | 9 | DEGREES TRUE |-------------| +| WSPD1 | 1 | 0 | 12 | M/S |-------------| +| PKWDDR | 0 | 0 | 9 | DEGREES TRUE |-------------| +| PKWDSP | 1 | 0 | 12 | M/S |-------------| +| SQM | 0 | 0 | 5 | CODE TABLE |-------------| +| DFQ | 0 | 0 | 5 | CODE TABLE |-------------| +| DFP | 0 | 0 | 5 | CODE TABLE |-------------| +| DFR | 0 | 0 | 10 | CODE TABLE |-------------| +| XS10 | 1 | 0 | 12 | M/S |-------------| +| XS20 | 1 | 0 | 12 | M/S |-------------| +| RF10M | 4 | 0 | 16 | NUMERIC |-------------| +| TRBX | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX10 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX21 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX32 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX43 | 0 | 0 | 6 | CODE TABLE |-------------| +| WQM | 0 | 0 | 5 | CODE TABLE |-------------| +| WPC | 0 | 0 | 5 | CODE TABLE |-------------| +| WRC | 0 | 0 | 10 | CODE TABLE |-------------| +| UFC | 1 | -4096 | 13 | M/S |-------------| +| VFC | 1 | -4096 | 13 | M/S |-------------| +| WOE | 1 | 0 | 10 | M/S |-------------| +| UAN | 1 | -4096 | 13 | M/S |-------------| +| VAN | 1 | -4096 | 13 | M/S |-------------| +| UCL | 1 | -4096 | 13 | M/S |-------------| +| VCL | 1 | -4096 | 13 | M/S |-------------| +| UCS | 1 | 0 | 10 | M/S |-------------| +| VCS | 1 | 0 | 10 | M/S |-------------| +| FFO | 0 | 0 | 9 | KNOTS |-------------| +| WOETU | 1 | 0 | 10 | M/S |-------------| +| | | | | |-------------| +| MXTM | 2 | 0 | 16 | KELVIN |-------------| +| MITM | 2 | 0 | 16 | KELVIN |-------------| +| TMSK | 2 | 0 | 16 | KELVIN |-------------| +| TMBR | 2 | 0 | 16 | KELVIN |-------------| +| GCDTT | 2 | 0 | 16 | KELVIN |-------------| +| TVO | 1 | -2732 | 14 | DEG C |-------------| +| TDO | 1 | -2732 | 14 | DEG C |-------------| +| TOB | 1 | -2732 | 14 | DEG C |-------------| +| TQM | 0 | 0 | 5 | CODE TABLE |-------------| +| TPC | 0 | 0 | 5 | CODE TABLE |-------------| +| TRC | 0 | 0 | 10 | CODE TABLE |-------------| +| TFC | 1 | -2732 | 14 | DEG C |-------------| +| TOE | 1 | 0 | 10 | DEG C |-------------| +| TAN | 1 | -2732 | 14 | DEG C |-------------| +| TCL | 1 | -2732 | 14 | DEG C |-------------| +| TCS | 1 | 0 | 10 | DEG C |-------------| +| TOETU | 1 | 0 | 10 | DEG C |-------------| +| | | | | |-------------| +| PWO | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW1O | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW2O | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW3O | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| TOPC | 1 | -1 | 14 | KG/M**2 |-------------| +| DOFS | 2 | -2 | 12 | METER |-------------| +| TOSD | 2 | -2 | 16 | METER |-------------| +* REQV STORED AT A HIGHER PRECISION THAN STANDARD VIA OPERATIOR DESCRIPTORS * +* FOR MESSAGE TYPE SPSSMI (SCALE=6, BIT WIDTH=18) * +| REQV | 4 | 0 | 12 | KG/((METER**2)*SECOND) |-------------| +| TP01 | 1 | -1 | 14 | KG/M**2 |-------------| +| TP03 | 1 | -1 | 14 | KG/M**2 |-------------| +| TP06 | 1 | -1 | 14 | KG/M**2 |-------------| +| TP12 | 1 | -1 | 14 | KG/M**2 |-------------| +| TP24 | 1 | -1 | 14 | KG/M**2 |-------------| +| MRWVC | 2 | 0 | 14 | KG/M**2 |-------------| +| MRLWC | 2 | 0 | 14 | KG/M**2 |-------------| +| QOB | 0 | 0 | 16 | MG/KG |-------------| +| ESBAK | 0 | 0 | 16 | MG/KG |-------------| +| QQM | 0 | 0 | 5 | CODE TABLE |-------------| +| QPC | 0 | 0 | 5 | CODE TABLE |-------------| +| QRC | 0 | 0 | 10 | CODE TABLE |-------------| +| QFC | 0 | 0 | 16 | MG/KG |-------------| +| QOE | 1 | 0 | 10 | PERCENT DIVIDED BY 10 |-------------| +| QAN | 0 | 0 | 16 | MG/KG |-------------| +| QCL | 0 | 0 | 16 | MG/KG |-------------| +| QCS | 0 | 0 | 16 | MG/KG |-------------| +| QOETU | 1 | 0 | 10 | PERCENT DIVIDED BY 10 |-------------| +| | | | | |-------------| +| TOSS | 0 | 0 | 11 | MINUTE |-------------| +| | | | | |-------------| +| OZON | 0 | 0 | 10 | DOBSON UNITS |-------------| +| | | | | |-------------| +| HOVI | -1 | 0 | 13 | METER |-------------| +| VTVI | -1 | 0 | 7 | METER |-------------| +| PRWE | 0 | 0 | 9 | CODE TABLE |-------------| +| PSW1 | 0 | 0 | 5 | CODE TABLE |-------------| +| PSW2 | 0 | 0 | 5 | CODE TABLE |-------------| +| TOCC | 0 | 0 | 7 | PERCENT |-------------| +| CLAM | 0 | 0 | 4 | CODE TABLE |-------------| +| CLTP | 0 | 0 | 6 | CODE TABLE |-------------| +| HOCB | -1 | -40 | 11 | METER |-------------| +| HOCT | -1 | -40 | 11 | METER |-------------| +| CDTP | -1 | 0 | 14 | PASCALS |-------------| +| HBLCS | 0 | 0 | 4 | CODE TABLE |-------------| +| WSST | 0 | 0 | 3 | CODE TABLE |-------------| +| CTPQM | 0 | 0 | 5 | CODE TABLE |-------------| +| CTPPC | 0 | 0 | 5 | CODE TABLE |-------------| +| CTPRC | 0 | 0 | 10 | CODE TABLE |-------------| +| CTPFC | -1 | 0 | 14 | PASCALS |-------------| +| CTPOE | -1 | 0 | 10 | PASCALS |-------------| +| CTPAN | -1 | 0 | 14 | PASCALS |-------------| +| | | | | |-------------| +| LKCS | 3 | -30000 | 15 | NUMERIC |-------------| +| WVCQ | 0 | 0 | 24 | FLAG TABLE |-------------| +| BSCD | 1 | -4096 | 13 | NUMERIC |-------------| +| A1 | 1 | 0 | 12 | DEGREE |-------------| +| A2 | 1 | 0 | 12 | DEGREE |-------------| +| A3 | 1 | 0 | 12 | DEGREE |-------------| +| B1 | 1 | 0 | 12 | DEGREE |-------------| +| B2 | 1 | 0 | 12 | DEGREE |-------------| +| B3 | 1 | 0 | 12 | DEGREE |-------------| +| S1 | 2 | -5000 | 13 | DECIBEL |-------------| +| S2 | 2 | -5000 | 13 | DECIBEL |-------------| +| S3 | 2 | -5000 | 13 | DECIBEL |-------------| +| E1 | 0 | 0 | 7 | PERCENT |-------------| +| E2 | 0 | 0 | 7 | PERCENT |-------------| +| E3 | 0 | 0 | 7 | PERCENT |-------------| +| | | | | |-------------| +| DOSW | 0 | 0 | 9 | DEGREES TRUE |-------------| +| POWV | 0 | 0 | 6 | SECONDS |-------------| +| POWW | 0 | 0 | 6 | SECONDS |-------------| +| POSW | 0 | 0 | 6 | SECONDS |-------------| +| HOWV | 1 | 0 | 10 | METER |-------------| +| HOWW | 1 | 0 | 10 | METER |-------------| +| HOSW | 1 | 0 | 10 | METER |-------------| +| SST1 | 2 | 0 | 15 | KELVIN |-------------| +| SSTQM | 0 | 0 | 5 | CODE TABLE |-------------| +| SSTPC | 0 | 0 | 5 | CODE TABLE |-------------| +| SSTRC | 0 | 0 | 10 | CODE TABLE |-------------| +| SSTFC | 2 | 0 | 15 | KELVIN |-------------| +| SSTOE | 1 | 0 | 10 | KELVIN |-------------| +| SSTAN | 2 | 0 | 15 | KELVIN |-------------| +| | | | | |-------------| +| MSTQ | 0 | 0 | 6 | CODE TABLE |-------------| +| RFFL | 0 | 0 | 8 | PERCENT |-------------| +| QIFY | 0 | 0 | 8 | PERCENT |-------------| +| QIFN | 0 | 0 | 8 | PERCENT |-------------| +| CHSQ | 2 | 0 | 17 | NUMERIC |-------------| +| WSEQC1 | 0 | 0 | 31 | FLAG TABLE |-------------| +| PHER | 1 | 0 | 12 | DEGREES TRUE |-------------| +| EEQF | 0 | 0 | 8 | PERCENT |-------------| +| PVWTG | 0 | 0 | 7 | PERCENT |-------------| +| PVWTA | 0 | 0 | 7 | PERCENT |-------------| +| TVWTG | 0 | 0 | 7 | PERCENT |-------------| +| TVWTA | 0 | 0 | 7 | PERCENT |-------------| +| QVWTG | 0 | 0 | 7 | PERCENT |-------------| +| QVWTA | 0 | 0 | 7 | PERCENT |-------------| +| WVWTG | 0 | 0 | 7 | PERCENT |-------------| +| WVWTA | 0 | 0 | 7 | PERCENT |-------------| +| PWTVWTG | 0 | 0 | 7 | PERCENT |-------------| +| PWTVWTA | 0 | 0 | 7 | PERCENT |-------------| +| SSTE | 2 | 0 | 16 | KELVIN |-------------| +| SPDE | 2 | 0 | 15 | M/S |-------------| +| VPRE | 2 | 0 | 14 | KG/M**2 |-------------| +| CLDE | 3 | 0 | 14 | KG/M**2 |-------------| +| | | | | |-------------| +| RRTQM | 0 | 0 | 5 | CODE TABLE |-------------| +| RRTPC | 0 | 0 | 5 | CODE TABLE |-------------| +| RRTRC | 0 | 0 | 10 | CODE TABLE |-------------| +| RRTFC | 6 | 0 | 18 | KG/((M**2)*S) (or MM/S) |-------------| +| RRTOE | 6 | 0 | 18 | KG/((M**2)*S) (or MM/S) |-------------| +| RRTAN | 6 | 0 | 18 | KG/((M**2)*S) (or MM/S) |-------------| +| PWQ | 0 | 0 | 5 | CODE TABLE |-------------| +| PWP | 0 | 0 | 5 | CODE TABLE |-------------| +| PWR | 0 | 0 | 10 | CODE TABLE |-------------| +| PWF | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PWE | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PWA | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PWETU | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PW1Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW1P | 0 | 0 | 5 | CODE TABLE |-------------| +| PW1R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW1F | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW1E | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PW1A | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW2Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW2P | 0 | 0 | 5 | CODE TABLE |-------------| +| PW2R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW2F | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW2E | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PW2A | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW3Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW3P | 0 | 0 | 5 | CODE TABLE |-------------| +| PW3R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW3F | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW3E | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PW3A | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW4O | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW4Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW4P | 0 | 0 | 5 | CODE TABLE |-------------| +| PW4R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW4F | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW4E | 1 | 0 | 10 | KG/M**2 (or MM) |-------------| +| PW4A | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| | | | | |-------------| +| | | | | |-------------| +| PFCMOD | 1 | 0 | 14 | MB |-------------| +| ZFCMOD | 0 | -1000 | 17 | METER |-------------| +| UFCMOD | 1 | -4096 | 13 | M/S |-------------| +| VFCMOD | 1 | -4096 | 13 | M/S |-------------| +| TFCMOD | 1 | -2732 | 14 | DEG C |-------------| +| QFCMOD | 0 | 0 | 16 | MG/KG |-------------| +| PWFMOD | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW1FMOD | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW2FMOD | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW3FMOD | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +| PW4FMOD | 1 | 0 | 11 | KG/M**2 (or MM) |-------------| +`------------------------------------------------------------------------------' diff --git a/fix/gsi/prepobs_prep_RAP.bufrtable b/fix/gsi/prepobs_prep_RAP.bufrtable new file mode 100755 index 000000000..a81e2fdf2 --- /dev/null +++ b/fix/gsi/prepobs_prep_RAP.bufrtable @@ -0,0 +1,717 @@ +.------------------------------------------------------------------------------. +| ------------ USER DEFINITIONS FOR TABLE-A TABLE-B TABLE D -------------- | +|------------------------------------------------------------------------------| +| MNEMONIC | NUMBER | DESCRIPTION | +|----------|--------|----------------------------------------------------------| +* | +* | +* THE FOLLOWING ARE TABLE A ENTRIES FOR PREPBUFR MESSAGE TYPES | +* | +| ADPUPA | A60240 | UPPER-AIR (RAOB, PIBAL, RECCO, DROPS) REPORTS | +| AIRCAR | A60241 | ACARS AIRCRAFT REPORTS | +| AIRCFT | A60242 | CONVENTIONAL (AIREP, PIREP) AND ASDAR AIRCRAFT REPORTS | +| SATWND | A60243 | SATELLITE-DERIVED WIND REPORTS | +| PROFLR | A60244 | WIND PROFILER REPORTS | +| VADWND | A60245 | VAD (NEXRAD) WIND REPORTS | +| SATEMP | A60246 | TOVS SATELLITE DATA (SOUNDINGS, RETRIEVALS, RADIANCES) | +| ADPSFC | A60247 | SURFACE LAND (SYNOPTIC, METAR) REPORTS | +| SFCSHP | A60248 | SURFACE MARINE (SHIP, BUOY, C-MAN PLATFORM) REPORTS | +| SFCBOG | A60249 | MEAN SEA-LEVEL PRESSURE BOGUS REPORTS | +| SPSSMI | A60250 | SSM/I RETRIEVAL PRODUCTS (REPROCESSED WIND SPEED, TPW) | +| SYNDAT | A60251 | SYNTHETIC TROPICAL CYCLONE BOGUS REPORTS | +| ERS1DA | A60252 | ERS SCATTEROMETER DATA (REPROCESSED WIND SPEED) | +| GOESND | A60253 | GOES SATELLITE DATA (SOUNDINGS, RETRIEVALS, RADIANCES) | +| QKSWND | A60254 | QUIKSCAT SCATTEROMETER DATA (REPROCESSED WIND SPEED) | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR SEQUENCES DEFINED IN TABLE A ENTRIES | +* | +| HEADR | 361001 | REPORT HEADER SEQUENCE | +| PLEVL | 361002 | PRESSURE LEVEL SEQUENCE (ALL TYPES EXCEPT GOESND) | +| PMSL | 361003 | MEAN SEA LEVEL PRESSURE SEQUENCE | +| BTLEVL | 361004 | BRIGHTNESS TEMPERATURE "LEVEL" SEQUENCE | +| ALTMSQ | 361005 | ALTIMETER SETTING SEQUENCE | +| TURB1SQ | 361006 | AIREP, PIREP, AMDAR AIRCRAFT DEGREE OF TURBULENCE SEQ | +| TURB2SQ | 361007 | ACARS AIRCRAFT DEGREE OF TURBULENCE SEQUENCE | +| ACFSUP | 361008 | AIRCRAFT SUPPLEMENTARY DATA SEQUENCE | +| RFFLSQ | 361009 | NESDIS RECURSIVE FILTER FLAG SEQUENCE | +| WSPDSQ | 361010 | WIND SPEED SEQUENCE | +| PLEVLG | 361011 | GOESND PRESSURE LEVEL SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR SEQUENCES IN REPORT HEADER | +* | +| RSRDSQ | 361012 | RESTRICTIONS ON REDISTRIBUTION SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "INFORMATION" SEQUENCES | +* | +| PINFO | 362001 | PRESSURE INFORMATION | +| QINFO | 362002 | SPECIFIC HUMIDITY INFORMATION | +| TINFO | 362003 | TEMPERATURE INFORMATION | +| ZINFO | 362004 | HEIGHT INFORMATION | +| WINFO | 362005 | WIND INFORMATION | +| PWINFO | 362006 | PRECIPITABLE WATER INFORMATION | +| PWTINF | 362007 | TOTAL PRECIPITABLE WATER INFORMATION | +| PWLINF | 362008 | LAYER PRECIPITABLE WATER INFORMATION | +| PW1INF | 362009 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW2INF | 362010 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW3INF | 362011 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| PW4INF | 362012 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER INFORMATION | +| BTINFO | 362014 | TOVS OR GOES BRIGHTNESS TEMPERATURE INFORMATION | +| SCINFO | 362015 | SCATTEROMETER DATA INFORMATION | +| DRINFO | 362016 | RADIOSONDE DRIFT INFORMATION | +| RRINFO | 362017 | RAIN RATE INFORMATION | +| CTINFO | 362018 | CLOUD TOP INFORMATION | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "EVENT" SEQUENCES | +* | +| PEVN | 362101 | PRESSURE EVENT SEQUENCE | +| QEVN | 362102 | SPECIFIC HUMIDITY EVENT SEQUENCE | +| TEVN | 362103 | TEMPERATURE EVENT SEQUENCE | +| ZEVN | 362104 | HEIGHT EVENT SEQUENCE | +| WEVN | 362105 | WIND EVENT SEQUENCE | +| DFEVN | 362106 | WIND (DIRECTION/SPEED) EVENT SEQUENCE | +| PWTEVN | 362107 | TOTAL PRECIPITABLE WATER EVENT SEQUENCE | +| PW1EVN | 362108 | 1.0 TO 0.9 PRECIPITABLE WATER EVENT SEQUENCE | +| PW2EVN | 362109 | 0.9 TO 0.7 PRECIPITABLE WATER EVENT SEQUENCE | +| PW3EVN | 362110 | 0.7 TO 0.3 PRECIPITABLE WATER EVENT SEQUENCE | +| PW4EVN | 362111 | 0.3 TO 0.0 PRECIPITABLE WATER EVENT SEQUENCE | +| RREVN | 362112 | RATE RATE EVENT SEQUENCE | +| CTPEVN | 362113 | CLOUD TOP PRESSURE EVENT SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "BACKGROUND" SEQUENCES | +* | +| PBACKG | 362201 | PRESSURE BACKGROUND SEQUENCE | +| QBACKG | 362202 | SPECIFIC HUMIDITY BACKGROUND SEQUENCE | +| TBACKG | 362203 | TEMPERATURE BACKGROUND SEQUENCE | +| ZBACKG | 362204 | HEIGHT BACKGROUND SEQUENCE | +| WBACKG | 362205 | WIND BACKGROUND SEQUENCE | +| PWTBAK | 362206 | TOTAL PRECIPITABLE WATER BACKGROUND SEQUENCE | +| PW1BAK | 362207 | 1.0 TO 0.9 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW2BAK | 362208 | 0.9 TO 0.7 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW3BAK | 362209 | 0.7 TO 0.3 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| PW4BAK | 362210 | 0.3 TO 0.0 SIGMA LAYER PRECIP WATER BACKGROUND SEQUENCE | +| RRBACKG | 362211 | RAIN RATE BACKGROUND SEQUENCE | +| CTPBAK | 362212 | CLOUD TOP PRESSURE BACKGROUND SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "POSTPROCESSING" SEQUENCES | +* | +| PPOSTP | 362221 | PRESSURE POSTPROCESSING SEQUENCE | +| QPOSTP | 362222 | SPECIFIC HUMIDITY POSTPROCESSING SEQUENCE | +| TPOSTP | 362223 | TEMPERATURE POSTPROCESSING SEQUENCE | +| ZPOSTP | 362224 | HEIGHT POSTPROCESSING SEQUENCE | +| WPOSTP | 362225 | WIND POSTPROCESSING SEQUENCE | +| PWTPST | 362226 | TOTAL PRECIPITABLE WATER POSTPROCESSING SEQUENCE | +| PW1PST | 362227 | 1.0 TO 0.9 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW2PST | 362228 | 0.9 TO 0.7 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW3PST | 362229 | 0.7 TO 0.3 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| PW4PST | 362230 | 0.3 TO 0.0 SIGMA LAYER PRECIP WATER POSTPROCESSING SEQ. | +| RRPOSTP | 362231 | RAIN RATE POSTPROCESSING SEQUENCE | +| CTPPST | 362232 | CLOUD TOP PRESSURE POSTPROCESSING SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR DATA "CLIMATOLOGY" SEQUENCES | +* | +| PCLIM | 362241 | PRESSURE CLIMATOLOGY SEQUENCE | +| QCLIM | 362242 | SPECIFIC HUMIDITY CLIMATOLOGY SEQUENCE | +| TCLIM | 362243 | TEMPERATURE CLIMATOLOGY SEQUENCE | +| ZCLIM | 362244 | HEIGHT CLIMATOLOGY SEQUENCE | +| WCLIM | 362245 | WIND CLIMATOLOGY SEQUENCE | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR TEMPRY CURRENT MODEL GUESS SEQUENCES | +* | +| PFC_MSQ | 363201 | MODEL PRESSURE FORECAST SEQUENCE | +| QFC_MSQ | 363202 | MODEL SPECIFIC HUMIDITY FORECAST SEQUENCE | +| TFC_MSQ | 363203 | MODEL TEMPERATURE FORECAST SEQUENCE | +| ZFC_MSQ | 363204 | MODEL HEIGHT FORECAST SEQUENCE | +| WFC_MSQ | 363205 | MODEL WIND FORECAST SEQUENCE | +| PWF_MSQ | 363206 | MODEL TOTAL PRECIPITABLE WATER FORECAST SEQUENCE | +| PW1F_MSQ | 363207 | MODEL 1.0 TO 0.9 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW2F_MSQ | 363208 | MODEL 0.9 TO 0.7 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW3F_MSQ | 363209 | MODEL 0.7 TO 0.3 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +| PW4F_MSQ | 363210 | MODEL 0.3 TO 0.0 SIGMA LAYER PRECIP WATER FORECAST SEQ. | +* | +* | +* THE FOLLOWING ARE TABLE D ENTRIES FOR EVENTS CODES FOR THE VARIOUS | +* PREPBUFR PROCESSING "STEPS" (PROGRAMS OR SUBROUTINES WITHIN PROGRAMS) | +* THE LAST THREE DIGITS OF THE DESCRIPTOR NUMBER BECOMES THE "PROGRAM CODE" | +* | +| PREPRO | 363001 | INITIAL PREPBUFR PROCESSING STEP | +* | | (PREPDATA PROGRAM, PRIOR TO PREVENTS OR VTPEVN SUBR.) | +| SYNDATA | 363002 | SYNTHETIC TROPICAL CYCLONE BOGUS PROCESSING STEP | +* | | (SYNDATA PROGRAM, PRIOR TO PREVENTS SUBROUTINE) | +| CLIMO | 363003 | CLIMO PROGRAM | +* | +| PREVENT | 363004 | PRE-EVENTS BACKGROUND/OBS. ERROR PROCESSING STEP | +* | | (PREVENTS SUBROUTINE IN PREPDATA OR SYNDATA PROGRAM; | +* | | PREVENTS PROGRAM IN CDAS NETWORK RUNS) | +| CQCHT | 363005 | RAWINSONDE HEIGHT/TEMP COMPLEX QUALITY CONTROL STEP | +* | | (CQCBUFR PROGRAM) | +| RADCOR | 363006 | RAWINSONDE HEIGHT/TEMP RADIATION CORRECTION STEP | +* | | (RADEVN SUBROUTINE IN CQCBUFR PROGRAM) | +| PREPACQC | 363007 | AIREP/PIREP/AMDAR/ASDAR AIRCRAFT QUALITY CONTROL STEP | +* | | (PREPACQC PROGRAM) | +| VIRTMP | 363008 | VIRTUAL TEMPERATURE/SPECIFIC HUMIDITY PROCESSING STEP | +* | | (VTPEVN SUBROUTINE IN PREPDATA, CQCBUFR OR PREVENTS | +* | | PROGRAM; DEPENDING UPON DATA TYPE) | +| CQCPROF | 363009 | WIND PROFILER QUALITY CONTROL STEP | +* | | (PROFCQC PROGRAM) | +| OIQC | 363010 | OI-QUALITY CONTROL STEP | +* | | (OIQCBUFR PROGRAM - GLOBAL VERSION ONLY) | +| SSI | 363011 | SSI ANALYSIS STEP | +* | | (SSIANL PROGRAM - GLOBAL VERSION ONLY) | +| CQCVAD | 363012 | VAD WIND QUALITY CONTROL STEP | +* | | (CQCVAD PROGRAM) | +| R3DVAR | 363013 | 3DVAR ANALYSIS STEP | +* | | (R3DVAR PROGRAM - ETA VERSION ONLY) | +| ACARSQC | 363014 | ACARS AIRCRAFT QUALITY CONTROL STEP | +* | | (ACARSQC PROGRAM) | +* | +* | +* THE FOLLOWING ARE TABLE B ENTRIES FOR THE REPORT HEADER | +* | +| SID | 001192 | STATION IDENTIFICATION | +| TYP | 001193 | PREPBUFR REPORT TYPE | +| ITP | 002001 | INSTRUMENT TYPE | +| SIRC | 002013 | RAWINSONDE SOLAR & INFRARED RADIATION CORR. INDICATOR | +| RPT | 004194 | REPORTED OBSERVATION TIME | +| DHR | 004192 | OBSERVATION TIME MINUS CYCLE TIME | +| TCOR | 004195 | INDICATOR WHETHER OBS. TIME IN "DHR" WAS CORRECTED | +| RCT | 004193 | RECEIPT TIME | +| YOB | 005002 | LATITUDE | +| XOB | 006002 | LONGITUDE | +| ELV | 010194 | STATION ELEVATION | +| SQN | 050001 | REPORT SEQUENCE NUMBER | +| PROCN | 050002 | PROCESS NUMBER FOR THIS MPI RUN (OBTAINED FROM SCRIPT) | +| T29 | 055006 | INPUT REPORT TYPE | +| TSB | 055192 | REPORT SUBTYPE (HAS VARIOUS MEANINGS DEPENDING ON TYPE) | +| ACAV | 008022 | TOTAL # W.R.T. ACCUMULATION OR AVGE (GOES SNDGS ONLY) | +| ATRN | 005034 | ALONG TRACK ROW NUMBER (QUIKSCAT REPORTS ONLY) | +| CTCN | 006034 | CROSS TRACK CELL NUMBER (QUIKSCAT REPORTS ONLY) | +| SPRR | 021120 | SEAWINDS PROBABILITY OF RAIN (QUIKSCAT REPORTS ONLY) | +| SAID | 001007 | SATELLITE IDENTIFIER (SATELLITE REPORTS ONLY) | +| RSRD | 035200 | RESTRICTIONS ON REDISTRIBUTION | +| EXPRSRD | 035201 | EXPIRATION OF RESTRICTIONS ON REDISTRIBUTION | +* | +* | +* THE FOLLOWING ARE TABLE B ENTRIES FOR THE REPORT LEVEL DATA | +* | +| CAT | 001194 | PREPBUFR DATA LEVEL CATEGORY | +| | | | +| PCAT | 002005 | PRECISION OF TEMPERATURE OBSERVATION | +| | | | +| POB | 007192 | PRESSURE OBSERVATION | +| PQM | 007193 | PRESSURE (QUALITY) MARKER | +| PPC | 007194 | PRESSURE PROGRAM CODE | +| PRC | 007195 | PRESSURE REASON CODE | +| PFC | 007196 | PRESSURE FORECAST VALUE | +| POE | 007197 | PRESSURE OBSERVATION ERROR | +| PAN | 007198 | PRESSURE ANALYZED VALUE | +| PCL | 007199 | PRESSURE CLIMATOLOGY | +| PCS | 007200 | PRESSURE CLIMATOLOGY STANDARD DEVIATION | +| | | | +| POAF | 008004 | PHASE OF AIRCRAFT FLIGHT | +| | | | +| ALSE | 010052 | ALTIMETER SETTING OBSERVATION | +| PMO | 010192 | MEAN SEA-LEVEL PRESSURE OBSERVATION | +| PMQ | 010193 | MEAN SEA-LVL PRESSURE (QUALITY) MARKER | +| PRSS | 010195 | SURFACE PRESSURE OBSERVATION | +| ZOB | 010196 | HEIGHT OBSERVATION | +| ZQM | 010197 | HEIGHT (QUALITY) MARKER | +| ZPC | 010198 | HEIGHT PROGRAM CODE | +| ZRC | 010199 | HEIGHT REASON CODE | +| ZFC | 010200 | HEIGHT FORECAST VALUE | +| ZAN | 010201 | HEIGHT ANALYZED VALUE | +| ZOE | 010202 | HEIGHT OBSERVATION ERROR | +| ZCL | 010203 | HEIGHT CLIMATOLOGY | +| ZCS | 010204 | HEIGHT CLIMATOLOGY STANDARD DEVIATION | +| | | | +| UOB | 011003 | U-COMPONENT WIND OBSERVATION | +| VOB | 011004 | V-COMPONENT WIND OBSERVATION | +| WQM | 011192 | WIND (QUALITY) MARKER | +| WPC | 011193 | WIND PROGRAM CODE | +| WRC | 011194 | WIND REASON CODE | +| UFC | 011195 | U-COMPONENT FORECAST VALUE | +| VFC | 011196 | V-COMPONENT FORECAST VALUE | +| UAN | 011197 | U-COMPONENT ANALYZED VALUE | +| VAN | 011198 | V-COMPONENT ANALYZED VALUE | +| WOE | 011199 | WIND OBSERVATION ERROR | +| UCL | 011200 | U-COMPONENT CLIMATOLOGY | +| VCL | 011201 | V-COMPONENT CLIMATOLOGY | +| UCS | 011202 | U-COMPONENT CLIMATOLOGY STANDARD DEVIATION | +| VCS | 011203 | V-COMPONENT CLIMATOLOGY STANDARD DEVIATION | +| | | | +| DDO | 011001 | WIND DIRECTION OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "PREPACQC" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| SOB | 011002 | WIND SPEED OBSERVATION | +* | | (STORED WHEN DIRECTION IS MISSING; E.G. METARS) | +| FFO | 011191 | WIND SPEED OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "PREPACQC" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| DFQ | 011204 | WIND (DIRECTION/SPEED) (QUALITY) MARKER | +| DFP | 011205 | WIND (DIRECTION/SPEED) PROGRAM CODE | +| DFR | 011206 | WIND (DIRECTION/SPEED) REASON CODE | +| | | | +| SQM | 011209 | WIND SPEED (QUALITY) MARKER | +* | | (STORED WHEN DIRECTION IS MISSING; E.G. METARS) | +| | | | +| DGOT | 011031 | DEGREE OF TURBULENCE | +| TRBX10 | 011236 | TURBULENCE INDEX FOR PERIOD (TOB-1 MIN) -> TOB | +| TRBX21 | 011237 | TURBULENCE INDEX FOR PERIOD (TOB-2 MIN) -> (TOB-1 MIN) | +| TRBX32 | 011238 | TURBULENCE INDEX FOR PERIOD (TOB-3 MIN) -> (TOB-2 MIN) | +| TRBX43 | 011239 | TURBULENCE INDEX FOR PERIOD (TOB-4 MIN) -> (TOB-3 MIN) | +| | | | +| TOB | 012192 | TEMPERATURE OBSERVATION | +* | | (AFTER "PREPRO" STEP - REPORTED TEMP, EITHER SENSIBLE | +* | | OR VIRTUAL DEPENDING UPON DATA TYPE; | +* | | AFTER "VIRTMP" STEP - VIRTUAL TEMPERATURE IF MOISTURE | +* | | AVAILABLE, OTHERWISE SENSIBLE) | +| TQM | 012195 | TEMPERATURE (QUALITY) MARKER | +| TPC | 012196 | TEMPERATURE PROGRAM CODE | +| TRC | 012197 | TEMPERATURE REASON CODE | +| TFC | 012198 | TEMPERATURE FORECAST VALUE | +| TAN | 012199 | TEMPERATURE ANALYZED VALUE | +| TOE | 012200 | TEMPERATURE OBSERVATION ERROR | +| TCL | 012201 | TEMPERATURE CLIMATOLOGY | +| TCS | 012202 | TEMPERATURE CLIMATOLOGY STANDARD DEVIATION | +| | | | +| TDO | 012194 | DEWPOINT TEMPERATURE OBSERVATION (NOT ASSIMILATED) | +* | | (AFTER "VIRTMP" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| TVO | 012193 | NON-Q. CONTROLLED VIRTUAL TEMP OBS (NOT ASSIMILATED) | +* | | (AFTER "PREPRO" STEP ONLY - SUBSEQUENT CODES DO NOT | +* | | PROCESS) | +| GCDTT | 012210 | GOES CLOUD TOP TEMPERATURE OBSERVATION | +| | | | +| QOB | 013192 | SPECIFIC HUMIDITY OBSERVATION | +* | | (AFTER "VIRTMP" STEP - ALWAYS RECALCULATED FROM QUALITY | +* | | CONTROLLED VIRTUAL TEMPERATURE DATA) | +| QQM | 013193 | SPECIFIC HUMIDITY (QUALITY) MARKER | +| QPC | 013194 | SPECIFIC HUMIDITY PROGRAM CODE | +| QRC | 013195 | SPECIFIC HUMIDITY REASON CODE | +| QFC | 013196 | SPECIFIC HUMIDITY FORECAST VALUE | +| QAN | 013197 | SPECIFIC HUMIDITY ANALYZED VALUE | +| QOE | 013198 | RELATIVE HUMIDITY OBSERVATION ERROR | +| QCL | 013199 | SPECIFIC HUMIDITY CLIMATOLOGY | +| QCS | 013200 | SPECIFIC HUMIDITY CLIMATOLOGY STANDARD DEVIATION | +| | | | +| REQ6 | 013206 | RAINFALL/WATER EQUIVALENT OF SNOW (AVERAGE RATE) | +| REQ6_QM | 013207 | RAINFALL (AVERAGE RATE) (QUALITY) MARKER | +| REQ6_PC | 013208 | RAINFALL (AVERAGE RATE) PROGRAM CODE | +| REQ6_RC | 013209 | RAINFALL (AVERAGE RATE) REASON CODE | +| REQ6_FC | 013210 | RAINFALL (AVERAGE RATE) FORECAST VALUE | +| REQ6_AN | 013211 | RAINFALL (AVERAGE RATE) ANALYZED VALUE | +| REQ6_OE | 013212 | RAINFALL (AVERAGE RATE) OBSERVATION ERROR | +| | | | +| PWO | 013213 | TOTAL PRECIPITABLE WATER OBSERVATION | +| PWQ | 013214 | TOTAL PRECIPITABLE WATER (QUALITY) MARKER | +| PWP | 013215 | TOTAL PRECIPITABLE WATER PROGRAM CODE | +| PWR | 013216 | TOTAL PRECIPITABLE WATER REASON CODE | +| PWF | 013217 | TOTAL PRECIPITABLE WATER FORECAST VALUE | +| PWA | 013218 | TOTAL PRECIPITABLE WATER ANALYZED VALUE | +| PWE | 013219 | TOTAL PRECIPITABLE WATER OBSERVATION ERROR | +| PW1O | 013220 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW1Q | 013221 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER MARKER | +| PW1P | 013222 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER PROGRAM CODE | +| PW1R | 013223 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER REASON CODE | +| PW1F | 013224 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER FORECAST VAL | +| PW1A | 013225 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER ANALYZED VAL | +| PW1E | 013226 | 1.0 TO 0.9 SIGMA LAYER PRECIPITABLE WATER OBS. ERROR | +| PW2O | 013227 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW2Q | 013228 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER MARKER | +| PW2P | 013229 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER PROGRAM CODE | +| PW2R | 013230 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER REASON CODE | +| PW2F | 013231 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER FORECAST VAL | +| PW2A | 013232 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER ANALYZED VAL | +| PW2E | 013233 | 0.9 TO 0.7 SIGMA LAYER PRECIPITABLE WATER OBS. ERROR | +| PW3O | 013234 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW3Q | 013235 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER MARKER | +| PW3P | 013236 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER PROGRAM CODE | +| PW3R | 013237 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER REASON CODE | +| PW3F | 013238 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER FORECAST VAL | +| PW3A | 013239 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER ANALYZED VAL | +| PW3E | 013240 | 0.7 TO 0.3 SIGMA LAYER PRECIPITABLE WATER OBS. ERROR | +| PW4O | 013241 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER OBSERVATION | +| PW4Q | 013242 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER MARKER | +| PW4P | 013243 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER PROGRAM CODE | +| PW4R | 013244 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER REASON CODE | +| PW4F | 013245 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER FORECAST VAL | +| PW4A | 013246 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER ANALYZED VAL | +| PW4E | 013247 | 0.3 TO 0.0 SIGMA LAYER PRECIPITABLE WATER OBS. ERROR | +| | | | +| TOCC | 020010 | CLOUD COVER (TOTAL) | +| CDTP | 020016 | CLOUD TOP PRESSURE OBSERVATION | +| CDTP_QM | 020207 | CLOUD TOP PRESSURE (QUALITY) MARKER | +| CDTP_PC | 020208 | CLOUD TOP PRESSURE PROGRAM CODE | +| CDTP_RC | 020209 | CLOUD TOP PRESSURE REASON CODE | +| CDTP_FC | 020210 | CLOUD TOP PRESSURE FORECAST VALUE | +| CDTP_AN | 020211 | CLOUD TOP PRESSURE ANALYZED VALUE | +| CDTP_OE | 020212 | CLOUD TOP PRESSURE OBSERVATION ERROR | +| | | | +| RFFL | 025202 | NESDIS RECURSIVE FILTER FLAG | +| | | | +| ELEV | 007021 | SATELLITE ELEVATION (ZENITH ANGLE) | +| SOEL | 007022 | SOLAR ELEVATION (ZENITH ANGLE) | +| OZON | 015001 | OZONE | +| TMSK | 012061 | SKIN TEMPERATURE | +| CLAM | 020011 | CLOUD AMOUNT | +| CHNM | 005042 | CHANNEL NUMBER | +| TMBR | 012063 | BRIGHTNESS TEMPERATURE | +| | | | +| A1 | 048001 | ERS INCIDENT ANGLE #1 | +| A2 | 048002 | ERS INCIDENT ANGLE #2 | +| A3 | 048003 | ERS INCIDENT ANGLE #3 | +| | | | +| B1 | 048004 | ERS AZIMUTH ANGLE #1 | +| B2 | 048005 | ERS AZIMUTH ANGLE #2 | +| B3 | 048006 | ERS AZIMUTH ANGLE #3 | +| | | | +| S1 | 048007 | ERS BACKSCATTER #1 | +| S2 | 048008 | ERS BACKSCATTER #2 | +| S3 | 048009 | ERS BACKSCATTER #3 | +| | | | +| E1 | 048010 | ERS ERROR ESTIMATE #1 | +| E2 | 048011 | ERS ERROR ESTIMATE #2 | +| E3 | 048012 | ERS ERROR ESTIMATE #3 | +| | | | +| HRDR | 004202 | RADIOSONDE BALLOON DRIFT TIME MINUS CYCLE TIME | +| YDR | 005202 | RADIOSONDE BALLOON DRIFT LATITUDE | +| XDR | 006202 | RADIOSONDE BALLOON DRIFT LONGITUDE | +| | | | +* The following are added temporarily until PFC, ZFC, etc. contain current | +* model guess instead of Global guess (applies for all models except Global) | +| | | | +| PFC_MOD | 007201 | MODEL PRESSURE FORECAST VALUE (GLOBAL MODEL SEE PFC) | +| ZFC_MOD | 010205 | MODEL HEIGHT FORECAST VALUE (GLOBAL MODEL SEE ZFC) | +| UFC_MOD | 011207 | MODEL U-COMPONENT FORECAST VALUE (GLOBAL MODEL SEE UFC) | +| VFC_MOD | 011208 | MODEL V-COMPONENT FORECAST VALUE (GLOBAL MODEL SEE VFC) | +| TFC_MOD | 012203 | MODEL TEMPERATURE FORECAST VALUE (GLOBAL MODEL SEE TFC) | +| QFC_MOD | 013248 | MODEL S. HUMIDITY FORECAST VALUE (GLOBAL MODEL SEE QFC) | +| PWF_MOD | 013249 | MODEL TOTAL PWATER FORECAST VALUE (GLOBAL MODEL SEE PWC) | +| PW1F_MOD | 013250 | MODEL 1.-.9 SIG. LYR PWATER FCST (GLOBAL MODEL SEE PW1F) | +| PW2F_MOD | 013251 | MODEL .9-.7 SIG. LYR PWATER FCST (GLOBAL MODEL SEE PW2F) | +| PW3F_MOD | 013252 | MODEL .7-.3 SIG. LYR PWATER FCST (GLOBAL MODEL SEE PW3F) | +| PW4F_MOD | 013253 | MODEL .3-0. SIG. LYR PWATER FCST (GLOBAL MODEL SEE PW4F) | +| HREF | 021001 | 0-21-001 Horizontal reflectivity ) | +| | | | +|------------------------------------------------------------------------------| +| MNEMONIC | SEQUENCE | +|----------|-------------------------------------------------------------------| +| | | +| ADPUPA | HEADR {PLEVL} SIRC | +| AIRCAR | HEADR PLEVL | +| AIRCFT | HEADR PLEVL RCT | +| SATWND | HEADR PLEVL SAID | +| PROFLR | HEADR {PLEVL} | +| VADWND | HEADR {PLEVL} | +| SATEMP | HEADR {PLEVL} SAID {BTLEVL} | +| GOESND | HEADR {PLEVLG} SAID {BTLEVL} ACAV | +| ADPSFC | HEADR PLEVL | +| SFCSHP | HEADR PLEVL | +| SFCBOG | HEADR PLEVL | +| SPSSMI | HEADR CAT SAID | +| SPSSMI | {BTLEVL} | +| SYNDAT | HEADR {PLEVL} | +| ERS1DA | HEADR CAT SAID | +| QKSWND | HEADR CAT SAID CTCN ATRN SPRR | +| | | +| HEADR | SID XOB YOB DHR ELV TYP T29 TSB ITP SQN | +| HEADR | PROCN RPT TCOR | +| PLEVL | CAT | +| PLEVLG | CAT | +| BTLEVL | CHNM TMBR | +| | | +| RSRDSQ | RSRD EXPRSRD | +| | | +| PINFO | [PEVN] | +| QINFO | [QEVN] TDO | +| TINFO | [TEVN] TVO | +| ZINFO | [ZEVN] | +| WINFO | [WEVN] [DFEVN] | +| PWINFO | | +| PWTINF | [PWTEVN] | +| PWLINF | PRSS | +| PW1INF | [PW1EVN] | +| PW2INF | [PW2EVN] | +| PW3INF | [PW3EVN] | +| PW4INF | [PW4EVN] | +| BTINFO | ELEV SOEL OZON TMSK CLAM | +| SCINFO | A1 A2 A3 B1 B2 B3 S1 S2 S3 E1 E2 E3 | +| PMSL | PMO PMQ | +| ALTMSQ | ALSE | +| WSPDSQ | SOB SQM | +| TURB1SQ | DGOT | +| TURB2SQ | TRBX10 TRBX21 TRBX32 TRBX43 | +| RFFLSQ | RFFL | +| ACFSUP | PCAT POAF | +| DRINFO | XDR YDR HRDR | +| RRINFO | [RREVN] | +| CTINFO | [CTPEVN] TOCC GCDTT | +| | | +| PEVN | POB PQM PPC PRC | +| QEVN | QOB QQM QPC QRC | +| TEVN | TOB TQM TPC TRC HREF | +| ZEVN | ZOB ZQM ZPC ZRC | +| WEVN | UOB WQM WPC WRC VOB | +| DFEVN | DDO FFO DFQ DFP DFR | +| PWTEVN | PWO PWQ PWP PWR | +| PW1EVN | PW1O PW1Q PW1P PW1R | +| PW2EVN | PW2O PW2Q PW2P PW2R | +| PW3EVN | PW3O PW3Q PW3P PW3R | +| PW4EVN | PW4O PW4Q PW4P PW4R | +| RREVN | REQ6 REQ6_QM REQ6_PC REQ6_RC | +| CTPEVN | CDTP CDTP_QM CDTP_PC CDTP_RC | +| | | +| PBACKG | POE PFC | +| QBACKG | QOE QFC | +| TBACKG | TOE TFC | +| ZBACKG | ZOE ZFC | +| WBACKG | WOE UFC VFC | +| PWTBAK | PWE PWF | +| PW1BAK | PW1E PW1F | +| PW2BAK | PW2E PW2F | +| PW3BAK | PW3E PW3F | +| PW4BAK | PW4E PW4F | +| RRBACKG | REQ6_OE REQ6_FC | +| CTPBAK | CDTP_OE CDTP_FC | +| | | +| PPOSTP | PAN | +| QPOSTP | QAN | +| TPOSTP | TAN | +| ZPOSTP | ZAN | +| WPOSTP | UAN VAN | +| PWTPST | PWA | +| PW1PST | PW1A | +| PW2PST | PW2A | +| PW3PST | PW3A | +| PW4PST | PW4A | +| RRPOSTP | REQ6_AN | +| CTPPST | CDTP_AN | +| | | +| PCLIM | PCL PCS | +| QCLIM | QCL QCS | +| TCLIM | TCL TCS | +| ZCLIM | ZCL ZCS | +| WCLIM | UCL UCS VCL VCS | +| | | +| PFC_MSQ | PFC_MOD | +| QFC_MSQ | QFC_MOD | +| TFC_MSQ | TFC_MOD | +| ZFC_MSQ | ZFC_MOD | +| WFC_MSQ | UFC_MOD VFC_MOD | +| PWF_MSQ | PWF_MOD | +| PW1F_MSQ | PW1F_MOD | +| PW2F_MSQ | PW2F_MOD | +| PW3F_MSQ | PW3F_MOD | +| PW4F_MSQ | PW4F_MOD | +| | | +|------------------------------------------------------------------------------| +| MNEMONIC | SCAL | REFERENCE | BIT | UNITS |-------------| +|----------|------|-------------|-----|--------------------------|-------------| +| | | | | |-------------| +| SID | 0 | 0 | 64 | CCITT IA5 |-------------| +| XOB | 2 | -18000 | 16 | DEG E |-------------| +| XDR | 2 | -18000 | 16 | DEG E |-------------| +| YOB | 2 | -9000 | 15 | DEG N |-------------| +| YDR | 2 | -9000 | 15 | DEG N |-------------| +| RPT | 3 | 0 | 16 | HOURS |-------------| +| DHR | 3 | -24000 | 16 | HOURS |-------------| +| TCOR | 0 | 0 | 2 | CODE TABLE |-------------| +| RCT | 2 | 0 | 12 | HOURS |-------------| +| HRDR | 3 | -24000 | 16 | HOURS |-------------| +| ELV | 0 | -1000 | 17 | METER |-------------| +| TYP | 0 | 0 | 9 | CODE TABLE |-------------| +| T29 | 0 | 0 | 10 | CODE TABLE |-------------| +| TSB | 0 | 0 | 2 | CODE TABLE |-------------| +| ITP | 0 | 0 | 8 | CODE TABLE |-------------| +| SIRC | 0 | 0 | 4 | CODE TABLE |-------------| +| SQN | 0 | 0 | 19 | NUMERIC |-------------| +| PROCN | 0 | 0 | 7 | NUMERIC |-------------| +| ACAV | 0 | 0 | 16 | NUMERIC |-------------| +| ATRN | 0 | 0 | 11 | NUMERIC |-------------| +| CTCN | 0 | 0 | 7 | NUMERIC |-------------| +| SPRR | 3 | 0 | 10 | NUMERIC |-------------| +| SAID | 0 | 0 | 10 | CODE TABLE |-------------| +| RSRD | 0 | 0 | 9 | FLAG TABLE |-------------| +| EXPRSRD | 0 | 0 | 8 | HOURS |-------------| +| | | | | |-------------| +| CAT | 0 | 0 | 6 | CODE TABLE |-------------| +| | | | | |-------------| +| POB | 1 | 0 | 14 | MB |-------------| +| PFC | 1 | 0 | 14 | MB |-------------| +| PAN | 1 | 0 | 14 | MB |-------------| +| PCL | 1 | 0 | 14 | MB |-------------| +| POE | 1 | 0 | 14 | MB |-------------| +| PCS | 1 | 0 | 14 | MB |-------------| +| PMO | 1 | 0 | 14 | MB |-------------| +| PQM | 0 | 0 | 5 | CODE TABLE |-------------| +| PMQ | 0 | 0 | 5 | CODE TABLE |-------------| +| PPC | 0 | 0 | 4 | CODE TABLE |-------------| +| PRC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| PRSS | -1 | 0 | 14 | PASCALS |-------------| +| | | | | |-------------| +| ALSE | -1 | 0 | 14 | PASCALS |-------------| +| | | | | |-------------| +| RFFL | 0 | 0 | 8 | NUMERIC |-------------| +| | | | | |-------------| +| PCAT | 2 | 0 | 7 | DEGREES KELVIN |-------------| +| POAF | 0 | 0 | 3 | CODE TABLE |-------------| +| DGOT | 0 | 0 | 4 | CODE TABLE |-------------| +| TRBX10 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX21 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX32 | 0 | 0 | 6 | CODE TABLE |-------------| +| TRBX43 | 0 | 0 | 6 | CODE TABLE |-------------| +| | | | | |-------------| +| QOB | 0 | 0 | 16 | MG/KG |-------------| +| QFC | 0 | 0 | 16 | MG/KG |-------------| +| QAN | 0 | 0 | 16 | MG/KG |-------------| +| QCL | 0 | 0 | 16 | MG/KG |-------------| +| QOE | 0 | 0 | 16 | PERCENT DIVIDED BY 10 |-------------| +| QCS | 0 | 0 | 16 | MG/KG |-------------| +| QQM | 0 | 0 | 5 | CODE TABLE |-------------| +| QPC | 0 | 0 | 4 | CODE TABLE |-------------| +| QRC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| TOB | 1 | -2732 | 14 | DEG C |-------------| +| TVO | 1 | -2732 | 14 | DEG C |-------------| +| TDO | 1 | -2732 | 14 | DEG C |-------------| +| TFC | 1 | -2732 | 14 | DEG C |-------------| +| TAN | 1 | -2732 | 14 | DEG C |-------------| +| TCL | 1 | -2732 | 14 | DEG C |-------------| +| TOE | 1 | 0 | 10 | DEG C |-------------| +| TCS | 1 | 0 | 10 | DEG C |-------------| +| TQM | 0 | 0 | 5 | CODE TABLE |-------------| +| TPC | 0 | 0 | 4 | CODE TABLE |-------------| +| TRC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| GCDTT | 2 | 0 | 16 | DEGREES KELVIN |-------------| +| | | | | |-------------| +| ZOB | 0 | -1000 | 17 | METER |-------------| +| ZFC | 0 | -1000 | 17 | METER |-------------| +| ZAN | 0 | -1000 | 17 | METER |-------------| +| ZCL | 0 | -1000 | 17 | METER |-------------| +| ZOE | 0 | 0 | 10 | METER |-------------| +| ZCS | 0 | 0 | 10 | METER |-------------| +| ZQM | 0 | 0 | 5 | CODE TABLE |-------------| +| ZPC | 0 | 0 | 4 | CODE TABLE |-------------| +| ZRC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| DDO | 0 | 0 | 9 | DEGREES |-------------| +| SOB | 1 | 0 | 12 | M/S |-------------| +| UOB | 1 | -4096 | 13 | M/S |-------------| +| VOB | 1 | -4096 | 13 | M/S |-------------| +| FFO | 0 | 0 | 9 | KNOTS |-------------| +| UFC | 1 | -4096 | 13 | M/S |-------------| +| VFC | 1 | -4096 | 13 | M/S |-------------| +| UAN | 1 | -4096 | 13 | M/S |-------------| +| VAN | 1 | -4096 | 13 | M/S |-------------| +| UCL | 1 | -4096 | 13 | M/S |-------------| +| VCL | 1 | -4096 | 13 | M/S |-------------| +| WOE | 1 | 0 | 10 | M/S |-------------| +| UCS | 1 | 0 | 10 | M/S |-------------| +| VCS | 1 | 0 | 10 | M/S |-------------| +| WQM | 0 | 0 | 5 | CODE TABLE |-------------| +| WPC | 0 | 0 | 4 | CODE TABLE |-------------| +| WRC | 0 | 0 | 10 | CODE TABLE |-------------| +| DFQ | 0 | 0 | 5 | CODE TABLE |-------------| +| DFP | 0 | 0 | 4 | CODE TABLE |-------------| +| DFR | 0 | 0 | 10 | CODE TABLE |-------------| +| SQM | 0 | 0 | 5 | CODE TABLE |-------------| +| | | | | |-------------| +| PWO | 1 | 0 | 10 | MM |-------------| +| PWF | 1 | 0 | 10 | MM |-------------| +| PWA | 1 | 0 | 10 | MM |-------------| +| PWE | 1 | 0 | 10 | MM |-------------| +| PWQ | 0 | 0 | 5 | CODE TABLE |-------------| +| PWP | 0 | 0 | 4 | CODE TABLE |-------------| +| PWR | 0 | 0 | 10 | CODE TABLE |-------------| +| PW1O | 1 | 0 | 10 | MM |-------------| +| PW1F | 1 | 0 | 10 | MM |-------------| +| PW1A | 1 | 0 | 10 | MM |-------------| +| PW1E | 1 | 0 | 10 | MM |-------------| +| PW1Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW1P | 0 | 0 | 4 | CODE TABLE |-------------| +| PW1R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW2O | 1 | 0 | 10 | MM |-------------| +| PW2F | 1 | 0 | 10 | MM |-------------| +| PW2A | 1 | 0 | 10 | MM |-------------| +| PW2E | 1 | 0 | 10 | MM |-------------| +| PW2Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW2P | 0 | 0 | 4 | CODE TABLE |-------------| +| PW2R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW3O | 1 | 0 | 10 | MM |-------------| +| PW3F | 1 | 0 | 10 | MM |-------------| +| PW3A | 1 | 0 | 10 | MM |-------------| +| PW3E | 1 | 0 | 10 | MM |-------------| +| PW3Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW3P | 0 | 0 | 4 | CODE TABLE |-------------| +| PW3R | 0 | 0 | 10 | CODE TABLE |-------------| +| PW4O | 1 | 0 | 10 | MM |-------------| +| PW4F | 1 | 0 | 10 | MM |-------------| +| PW4A | 1 | 0 | 10 | MM |-------------| +| PW4E | 1 | 0 | 10 | MM |-------------| +| PW4Q | 0 | 0 | 5 | CODE TABLE |-------------| +| PW4P | 0 | 0 | 4 | CODE TABLE |-------------| +| PW4R | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| REQ6 | 6 | 0 | 18 | KG / ((M ** 2)*SEC) |-------------| +| REQ6_FC | 6 | 0 | 18 | KG / ((M ** 2)*SEC) |-------------| +| REQ6_AN | 6 | 0 | 18 | KG / ((M ** 2)*SEC) |-------------| +| REQ6_OE | 6 | 0 | 18 | KG / ((M ** 2)*SEC) |-------------| +| REQ6_QM | 0 | 0 | 5 | CODE TABLE |-------------| +| REQ6_PC | 0 | 0 | 4 | CODE TABLE |-------------| +| REQ6_RC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| TOCC | 0 | 0 | 7 | PERCENT |-------------| +| CDTP | -1 | 0 | 14 | PASCALS |-------------| +| CDTP_FC | -1 | 0 | 14 | PASCALS |-------------| +| CDTP_AN | -1 | 0 | 14 | PASCALS |-------------| +| CDTP_OE | -1 | 0 | 14 | PASCALS |-------------| +| CDTP_QM | 0 | 0 | 5 | CODE TABLE |-------------| +| CDTP_PC | 0 | 0 | 4 | CODE TABLE |-------------| +| CDTP_RC | 0 | 0 | 10 | CODE TABLE |-------------| +| | | | | |-------------| +| ELEV | 2 | -9000 | 15 | DEGREE |-------------| +| SOEL | 2 | -9000 | 15 | DEGREE |-------------| +| OZON | 0 | 0 | 10 | DOBSON UNITS |-------------| +| TMSK | 1 | 0 | 12 | DEGREES KELVIN |-------------| +| CLAM | 0 | 0 | 4 | CODE TABLE |-------------| +| CHNM | 0 | 0 | 6 | NUMERIC |-------------| +| TMBR | 2 | 0 | 19 | KELVIN |-------------| +| | | | | |-------------| +| A1 | 1 | 0 | 12 | DEGREE |-------------| +| A2 | 1 | 0 | 12 | DEGREE |-------------| +| A3 | 1 | 0 | 12 | DEGREE |-------------| +| | | | | |-------------| +| B1 | 1 | 0 | 12 | DEGREE |-------------| +| B2 | 1 | 0 | 12 | DEGREE |-------------| +| B3 | 1 | 0 | 12 | DEGREE |-------------| +| | | | | |-------------| +| S1 | 2 | -5000 | 13 | BACKSCATTER |-------------| +| S2 | 2 | -5000 | 13 | BACKSCATTER |-------------| +| S3 | 2 | -5000 | 13 | BACKSCATTER |-------------| +| | | | | |-------------| +| E1 | 0 | 0 | 7 | PERCENT |-------------| +| E2 | 0 | 0 | 7 | PERCENT |-------------| +| E3 | 0 | 0 | 7 | PERCENT |-------------| +| | | | | |-------------| +| PFC_MOD | 1 | 0 | 14 | MB |-------------| +| ZFC_MOD | 0 | -1000 | 17 | METER |-------------| +| UFC_MOD | 1 | -4096 | 13 | M/S |-------------| +| VFC_MOD | 1 | -4096 | 13 | M/S |-------------| +| TFC_MOD | 1 | -2732 | 14 | DEG C |-------------| +| QFC_MOD | 0 | 0 | 16 | MG/KG |-------------| +| PWF_MOD | 1 | 0 | 10 | MM |-------------| +| PW1F_MOD | 1 | 0 | 10 | MM |-------------| +| PW2F_MOD | 1 | 0 | 10 | MM |-------------| +| PW3F_MOD | 1 | 0 | 10 | MM |-------------| +| PW4F_MOD | 1 | 0 | 10 | MM |-------------| +| HREF | 0 | -64 | 7 | dB |-------------| +`------------------------------------------------------------------------------' diff --git a/fix/gsi/process_ensemble.anl b/fix/gsi/process_ensemble.anl new file mode 100755 index 000000000..7737acde5 --- /dev/null +++ b/fix/gsi/process_ensemble.anl @@ -0,0 +1,19 @@ + + &SETUP + regional=.true. , + wrf_mass_regional=.true. , + diagnostic_reg=.true. , + switch_on_derivatives=.false. , + tendsflag=.false. , + nfldsig=1 , + grid_ratio_ens=3, + n_ens=80, + grid_ratio_wrfmass=2, + enpert4arw=.false., + wrt_pert_sub=.false., + wrt_pert_mem=.true., + wrf_mass_hybridcord=.true., + use_gfs_nemsio=.true., + jcap_ens=574, + / + diff --git a/fix/gsi/rap_berror_stats_global_RAP_tune b/fix/gsi/rap_berror_stats_global_RAP_tune new file mode 120000 index 000000000..5de163aef --- /dev/null +++ b/fix/gsi/rap_berror_stats_global_RAP_tune @@ -0,0 +1 @@ +../.agent/gsi/rap_berror_stats_global_RAP_tune \ No newline at end of file diff --git a/fix/gsi/rap_satbias_pc_starting_file.txt b/fix/gsi/rap_satbias_pc_starting_file.txt new file mode 100644 index 000000000..578c0c41c --- /dev/null +++ b/fix/gsi/rap_satbias_pc_starting_file.txt @@ -0,0 +1,8040 @@ + 1 amsua_n15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2 amsua_n15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 3 amsua_n15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 4 amsua_n15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 5 amsua_n15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 6 amsua_n15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 7 amsua_n15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 8 amsua_n15 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 9 amsua_n15 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 10 amsua_n15 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 11 amsua_n15 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 12 amsua_n15 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 13 amsua_n15 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 14 amsua_n15 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 15 amsua_n15 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 16 hirs3_n17 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 17 hirs3_n17 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 18 hirs3_n17 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 19 hirs3_n17 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 20 hirs3_n17 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 21 hirs3_n17 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 22 hirs3_n17 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 23 hirs3_n17 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 24 hirs3_n17 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 25 hirs3_n17 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 26 hirs3_n17 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 27 hirs3_n17 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 28 hirs3_n17 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 29 hirs3_n17 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 30 hirs3_n17 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 31 hirs3_n17 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 32 hirs3_n17 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 33 hirs3_n17 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 34 hirs3_n17 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 35 amsub_n17 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 36 amsub_n17 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 37 amsub_n17 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 38 amsub_n17 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 39 amsub_n17 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 40 amsua_n18 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 41 amsua_n18 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 42 amsua_n18 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 43 amsua_n18 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 44 amsua_n18 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 45 amsua_n18 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 46 amsua_n18 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 47 amsua_n18 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 48 amsua_n18 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 49 amsua_n18 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 50 amsua_n18 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 51 amsua_n18 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 52 amsua_n18 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 53 amsua_n18 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 54 amsua_n18 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 55 mhs_n18 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 56 mhs_n18 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 57 mhs_n18 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 58 mhs_n18 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 59 mhs_n18 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 60 hirs4_metop-a 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 61 hirs4_metop-a 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 62 hirs4_metop-a 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 63 hirs4_metop-a 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 64 hirs4_metop-a 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 65 hirs4_metop-a 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 66 hirs4_metop-a 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 67 hirs4_metop-a 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 68 hirs4_metop-a 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 69 hirs4_metop-a 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 70 hirs4_metop-a 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 71 hirs4_metop-a 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 72 hirs4_metop-a 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 73 hirs4_metop-a 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 74 hirs4_metop-a 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 75 hirs4_metop-a 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 76 hirs4_metop-a 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 77 hirs4_metop-a 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 78 hirs4_metop-a 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 79 amsua_metop-a 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 80 amsua_metop-a 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 81 amsua_metop-a 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 82 amsua_metop-a 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 83 amsua_metop-a 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 84 amsua_metop-a 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 85 amsua_metop-a 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 86 amsua_metop-a 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 87 amsua_metop-a 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 88 amsua_metop-a 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 89 amsua_metop-a 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 90 amsua_metop-a 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 91 amsua_metop-a 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 92 amsua_metop-a 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 93 amsua_metop-a 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 94 mhs_metop-a 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 95 mhs_metop-a 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 96 mhs_metop-a 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 97 mhs_metop-a 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 98 mhs_metop-a 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 99 iasi616_metop-a 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 100 iasi616_metop-a 29 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 101 iasi616_metop-a 32 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 102 iasi616_metop-a 35 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 103 iasi616_metop-a 38 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 104 iasi616_metop-a 41 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 105 iasi616_metop-a 44 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 106 iasi616_metop-a 47 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 107 iasi616_metop-a 49 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 108 iasi616_metop-a 50 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 109 iasi616_metop-a 51 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 110 iasi616_metop-a 53 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 111 iasi616_metop-a 55 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 112 iasi616_metop-a 56 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 113 iasi616_metop-a 57 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 114 iasi616_metop-a 59 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 115 iasi616_metop-a 61 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 116 iasi616_metop-a 62 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 117 iasi616_metop-a 63 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 118 iasi616_metop-a 66 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 119 iasi616_metop-a 68 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 120 iasi616_metop-a 70 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 121 iasi616_metop-a 72 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 122 iasi616_metop-a 74 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 123 iasi616_metop-a 76 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 124 iasi616_metop-a 78 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 125 iasi616_metop-a 79 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 126 iasi616_metop-a 81 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 127 iasi616_metop-a 82 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 128 iasi616_metop-a 83 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 129 iasi616_metop-a 84 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 130 iasi616_metop-a 85 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 131 iasi616_metop-a 86 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 132 iasi616_metop-a 87 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 133 iasi616_metop-a 89 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 134 iasi616_metop-a 92 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 135 iasi616_metop-a 93 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 136 iasi616_metop-a 95 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 137 iasi616_metop-a 97 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 138 iasi616_metop-a 99 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 139 iasi616_metop-a 101 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 140 iasi616_metop-a 103 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 141 iasi616_metop-a 104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 142 iasi616_metop-a 106 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 143 iasi616_metop-a 109 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 144 iasi616_metop-a 110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 145 iasi616_metop-a 111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 146 iasi616_metop-a 113 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 147 iasi616_metop-a 116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 148 iasi616_metop-a 119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 149 iasi616_metop-a 122 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 150 iasi616_metop-a 125 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 151 iasi616_metop-a 128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 152 iasi616_metop-a 131 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 153 iasi616_metop-a 133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 154 iasi616_metop-a 135 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 155 iasi616_metop-a 138 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 156 iasi616_metop-a 141 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 157 iasi616_metop-a 144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 158 iasi616_metop-a 146 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 159 iasi616_metop-a 148 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 160 iasi616_metop-a 150 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 161 iasi616_metop-a 151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 162 iasi616_metop-a 154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 163 iasi616_metop-a 157 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 164 iasi616_metop-a 159 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 165 iasi616_metop-a 160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 166 iasi616_metop-a 161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 167 iasi616_metop-a 163 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 168 iasi616_metop-a 167 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 169 iasi616_metop-a 170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 170 iasi616_metop-a 173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 171 iasi616_metop-a 176 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 172 iasi616_metop-a 179 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 173 iasi616_metop-a 180 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 174 iasi616_metop-a 185 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 175 iasi616_metop-a 187 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 176 iasi616_metop-a 191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 177 iasi616_metop-a 193 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 178 iasi616_metop-a 197 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 179 iasi616_metop-a 199 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 180 iasi616_metop-a 200 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 181 iasi616_metop-a 202 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 182 iasi616_metop-a 203 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 183 iasi616_metop-a 205 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 184 iasi616_metop-a 207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 185 iasi616_metop-a 210 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 186 iasi616_metop-a 212 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 187 iasi616_metop-a 213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 188 iasi616_metop-a 214 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 189 iasi616_metop-a 217 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 190 iasi616_metop-a 218 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 191 iasi616_metop-a 219 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 192 iasi616_metop-a 222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 193 iasi616_metop-a 224 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 194 iasi616_metop-a 225 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 195 iasi616_metop-a 226 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 196 iasi616_metop-a 228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 197 iasi616_metop-a 230 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 198 iasi616_metop-a 231 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 199 iasi616_metop-a 232 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 200 iasi616_metop-a 236 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 201 iasi616_metop-a 237 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 202 iasi616_metop-a 239 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 203 iasi616_metop-a 243 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 204 iasi616_metop-a 246 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 205 iasi616_metop-a 249 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 206 iasi616_metop-a 252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 207 iasi616_metop-a 254 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 208 iasi616_metop-a 259 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 209 iasi616_metop-a 260 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 210 iasi616_metop-a 262 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 211 iasi616_metop-a 265 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 212 iasi616_metop-a 267 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 213 iasi616_metop-a 269 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 214 iasi616_metop-a 275 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 215 iasi616_metop-a 279 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 216 iasi616_metop-a 282 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 217 iasi616_metop-a 285 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 218 iasi616_metop-a 294 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 219 iasi616_metop-a 296 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 220 iasi616_metop-a 299 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 221 iasi616_metop-a 300 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 222 iasi616_metop-a 303 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 223 iasi616_metop-a 306 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 224 iasi616_metop-a 309 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 225 iasi616_metop-a 313 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 226 iasi616_metop-a 320 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 227 iasi616_metop-a 323 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 228 iasi616_metop-a 326 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 229 iasi616_metop-a 327 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 230 iasi616_metop-a 329 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 231 iasi616_metop-a 332 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 232 iasi616_metop-a 335 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 233 iasi616_metop-a 345 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 234 iasi616_metop-a 347 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 235 iasi616_metop-a 350 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 236 iasi616_metop-a 354 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 237 iasi616_metop-a 356 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 238 iasi616_metop-a 360 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 239 iasi616_metop-a 363 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 240 iasi616_metop-a 366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 241 iasi616_metop-a 371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 242 iasi616_metop-a 372 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 243 iasi616_metop-a 373 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 244 iasi616_metop-a 375 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 245 iasi616_metop-a 377 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 246 iasi616_metop-a 379 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 247 iasi616_metop-a 381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 248 iasi616_metop-a 383 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 249 iasi616_metop-a 386 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 250 iasi616_metop-a 389 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 251 iasi616_metop-a 398 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 252 iasi616_metop-a 401 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 253 iasi616_metop-a 404 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 254 iasi616_metop-a 405 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 255 iasi616_metop-a 407 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 256 iasi616_metop-a 408 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 257 iasi616_metop-a 410 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 258 iasi616_metop-a 411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 259 iasi616_metop-a 414 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 260 iasi616_metop-a 416 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 261 iasi616_metop-a 418 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 262 iasi616_metop-a 423 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 263 iasi616_metop-a 426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 264 iasi616_metop-a 428 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 265 iasi616_metop-a 432 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 266 iasi616_metop-a 433 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 267 iasi616_metop-a 434 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 268 iasi616_metop-a 439 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 269 iasi616_metop-a 442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 270 iasi616_metop-a 445 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 271 iasi616_metop-a 450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 272 iasi616_metop-a 457 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 273 iasi616_metop-a 459 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 274 iasi616_metop-a 472 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 275 iasi616_metop-a 477 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 276 iasi616_metop-a 483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 277 iasi616_metop-a 509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 278 iasi616_metop-a 515 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 279 iasi616_metop-a 546 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 280 iasi616_metop-a 552 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 281 iasi616_metop-a 559 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 282 iasi616_metop-a 566 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 283 iasi616_metop-a 571 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 284 iasi616_metop-a 573 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 285 iasi616_metop-a 578 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 286 iasi616_metop-a 584 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 287 iasi616_metop-a 594 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 288 iasi616_metop-a 625 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 289 iasi616_metop-a 646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 290 iasi616_metop-a 662 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 291 iasi616_metop-a 668 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 292 iasi616_metop-a 705 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 293 iasi616_metop-a 739 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 294 iasi616_metop-a 756 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 295 iasi616_metop-a 797 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 296 iasi616_metop-a 867 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 297 iasi616_metop-a 906 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 298 iasi616_metop-a 921 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 299 iasi616_metop-a 1027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 300 iasi616_metop-a 1046 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 301 iasi616_metop-a 1090 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 302 iasi616_metop-a 1098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 303 iasi616_metop-a 1121 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 304 iasi616_metop-a 1133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 305 iasi616_metop-a 1173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 306 iasi616_metop-a 1191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 307 iasi616_metop-a 1194 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 308 iasi616_metop-a 1222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 309 iasi616_metop-a 1271 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 310 iasi616_metop-a 1283 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 311 iasi616_metop-a 1338 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 312 iasi616_metop-a 1409 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 313 iasi616_metop-a 1414 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 314 iasi616_metop-a 1420 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 315 iasi616_metop-a 1424 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 316 iasi616_metop-a 1427 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 317 iasi616_metop-a 1430 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 318 iasi616_metop-a 1434 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 319 iasi616_metop-a 1440 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 320 iasi616_metop-a 1442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 321 iasi616_metop-a 1445 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 322 iasi616_metop-a 1450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 323 iasi616_metop-a 1454 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 324 iasi616_metop-a 1460 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 325 iasi616_metop-a 1463 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 326 iasi616_metop-a 1469 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 327 iasi616_metop-a 1474 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 328 iasi616_metop-a 1479 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 329 iasi616_metop-a 1483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 330 iasi616_metop-a 1487 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 331 iasi616_metop-a 1494 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 332 iasi616_metop-a 1496 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 333 iasi616_metop-a 1502 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 334 iasi616_metop-a 1505 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 335 iasi616_metop-a 1509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 336 iasi616_metop-a 1510 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 337 iasi616_metop-a 1513 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 338 iasi616_metop-a 1518 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 339 iasi616_metop-a 1521 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 340 iasi616_metop-a 1526 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 341 iasi616_metop-a 1529 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 342 iasi616_metop-a 1532 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 343 iasi616_metop-a 1536 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 344 iasi616_metop-a 1537 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 345 iasi616_metop-a 1541 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 346 iasi616_metop-a 1545 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 347 iasi616_metop-a 1548 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 348 iasi616_metop-a 1553 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 349 iasi616_metop-a 1560 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 350 iasi616_metop-a 1568 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 351 iasi616_metop-a 1574 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 352 iasi616_metop-a 1579 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 353 iasi616_metop-a 1583 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 354 iasi616_metop-a 1585 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 355 iasi616_metop-a 1587 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 356 iasi616_metop-a 1606 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 357 iasi616_metop-a 1626 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 358 iasi616_metop-a 1639 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 359 iasi616_metop-a 1643 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 360 iasi616_metop-a 1652 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 361 iasi616_metop-a 1658 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 362 iasi616_metop-a 1659 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 363 iasi616_metop-a 1666 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 364 iasi616_metop-a 1671 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 365 iasi616_metop-a 1675 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 366 iasi616_metop-a 1681 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 367 iasi616_metop-a 1694 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 368 iasi616_metop-a 1697 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 369 iasi616_metop-a 1710 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 370 iasi616_metop-a 1786 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 371 iasi616_metop-a 1791 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 372 iasi616_metop-a 1805 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 373 iasi616_metop-a 1839 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 374 iasi616_metop-a 1884 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 375 iasi616_metop-a 1913 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 376 iasi616_metop-a 1946 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 377 iasi616_metop-a 1947 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 378 iasi616_metop-a 1991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 379 iasi616_metop-a 2019 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 380 iasi616_metop-a 2094 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 381 iasi616_metop-a 2119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 382 iasi616_metop-a 2213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 383 iasi616_metop-a 2239 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 384 iasi616_metop-a 2271 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 385 iasi616_metop-a 2289 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 386 iasi616_metop-a 2321 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 387 iasi616_metop-a 2333 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 388 iasi616_metop-a 2346 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 389 iasi616_metop-a 2349 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 390 iasi616_metop-a 2352 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 391 iasi616_metop-a 2359 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 392 iasi616_metop-a 2367 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 393 iasi616_metop-a 2374 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 394 iasi616_metop-a 2398 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 395 iasi616_metop-a 2426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 396 iasi616_metop-a 2562 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 397 iasi616_metop-a 2701 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 398 iasi616_metop-a 2741 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 399 iasi616_metop-a 2745 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 400 iasi616_metop-a 2760 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 401 iasi616_metop-a 2819 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 402 iasi616_metop-a 2889 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 403 iasi616_metop-a 2907 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 404 iasi616_metop-a 2910 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 405 iasi616_metop-a 2919 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 406 iasi616_metop-a 2921 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 407 iasi616_metop-a 2939 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 408 iasi616_metop-a 2944 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 409 iasi616_metop-a 2945 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 410 iasi616_metop-a 2948 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 411 iasi616_metop-a 2951 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 412 iasi616_metop-a 2958 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 413 iasi616_metop-a 2971 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 414 iasi616_metop-a 2977 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 415 iasi616_metop-a 2985 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 416 iasi616_metop-a 2988 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 417 iasi616_metop-a 2990 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 418 iasi616_metop-a 2991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 419 iasi616_metop-a 2993 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 420 iasi616_metop-a 3002 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 421 iasi616_metop-a 3008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 422 iasi616_metop-a 3014 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 423 iasi616_metop-a 3027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 424 iasi616_metop-a 3029 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 425 iasi616_metop-a 3030 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 426 iasi616_metop-a 3036 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 427 iasi616_metop-a 3047 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 428 iasi616_metop-a 3049 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 429 iasi616_metop-a 3052 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 430 iasi616_metop-a 3053 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 431 iasi616_metop-a 3055 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 432 iasi616_metop-a 3058 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 433 iasi616_metop-a 3064 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 434 iasi616_metop-a 3069 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 435 iasi616_metop-a 3087 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 436 iasi616_metop-a 3093 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 437 iasi616_metop-a 3098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 438 iasi616_metop-a 3105 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 439 iasi616_metop-a 3107 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 440 iasi616_metop-a 3110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 441 iasi616_metop-a 3116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 442 iasi616_metop-a 3127 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 443 iasi616_metop-a 3129 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 444 iasi616_metop-a 3136 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 445 iasi616_metop-a 3146 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 446 iasi616_metop-a 3151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 447 iasi616_metop-a 3160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 448 iasi616_metop-a 3165 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 449 iasi616_metop-a 3168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 450 iasi616_metop-a 3175 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 451 iasi616_metop-a 3178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 452 iasi616_metop-a 3189 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 453 iasi616_metop-a 3207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 454 iasi616_metop-a 3228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 455 iasi616_metop-a 3244 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 456 iasi616_metop-a 3248 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 457 iasi616_metop-a 3252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 458 iasi616_metop-a 3256 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 459 iasi616_metop-a 3263 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 460 iasi616_metop-a 3281 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 461 iasi616_metop-a 3295 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 462 iasi616_metop-a 3303 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 463 iasi616_metop-a 3309 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 464 iasi616_metop-a 3312 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 465 iasi616_metop-a 3322 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 466 iasi616_metop-a 3326 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 467 iasi616_metop-a 3354 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 468 iasi616_metop-a 3366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 469 iasi616_metop-a 3375 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 470 iasi616_metop-a 3378 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 471 iasi616_metop-a 3411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 472 iasi616_metop-a 3416 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 473 iasi616_metop-a 3432 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 474 iasi616_metop-a 3438 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 475 iasi616_metop-a 3440 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 476 iasi616_metop-a 3442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 477 iasi616_metop-a 3444 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 478 iasi616_metop-a 3446 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 479 iasi616_metop-a 3448 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 480 iasi616_metop-a 3450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 481 iasi616_metop-a 3452 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 482 iasi616_metop-a 3454 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 483 iasi616_metop-a 3458 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 484 iasi616_metop-a 3467 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 485 iasi616_metop-a 3476 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 486 iasi616_metop-a 3484 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 487 iasi616_metop-a 3491 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 488 iasi616_metop-a 3497 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 489 iasi616_metop-a 3499 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 490 iasi616_metop-a 3504 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 491 iasi616_metop-a 3506 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 492 iasi616_metop-a 3509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 493 iasi616_metop-a 3518 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 494 iasi616_metop-a 3527 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 495 iasi616_metop-a 3555 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 496 iasi616_metop-a 3575 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 497 iasi616_metop-a 3577 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 498 iasi616_metop-a 3580 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 499 iasi616_metop-a 3582 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 500 iasi616_metop-a 3586 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 501 iasi616_metop-a 3589 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 502 iasi616_metop-a 3599 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 503 iasi616_metop-a 3610 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 504 iasi616_metop-a 3626 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 505 iasi616_metop-a 3638 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 506 iasi616_metop-a 3646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 507 iasi616_metop-a 3653 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 508 iasi616_metop-a 3658 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 509 iasi616_metop-a 3661 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 510 iasi616_metop-a 3673 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 511 iasi616_metop-a 3689 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 512 iasi616_metop-a 3700 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 513 iasi616_metop-a 3710 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 514 iasi616_metop-a 3726 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 515 iasi616_metop-a 3763 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 516 iasi616_metop-a 3814 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 517 iasi616_metop-a 3841 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 518 iasi616_metop-a 3888 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 519 iasi616_metop-a 4032 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 520 iasi616_metop-a 4059 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 521 iasi616_metop-a 4068 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 522 iasi616_metop-a 4082 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 523 iasi616_metop-a 4095 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 524 iasi616_metop-a 4160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 525 iasi616_metop-a 4234 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 526 iasi616_metop-a 4257 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 527 iasi616_metop-a 4411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 528 iasi616_metop-a 4498 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 529 iasi616_metop-a 4520 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 530 iasi616_metop-a 4552 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 531 iasi616_metop-a 4567 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 532 iasi616_metop-a 4608 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 533 iasi616_metop-a 4646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 534 iasi616_metop-a 4698 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 535 iasi616_metop-a 4808 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 536 iasi616_metop-a 4849 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 537 iasi616_metop-a 4920 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 538 iasi616_metop-a 4939 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 539 iasi616_metop-a 4947 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 540 iasi616_metop-a 4967 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 541 iasi616_metop-a 4991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 542 iasi616_metop-a 4996 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 543 iasi616_metop-a 5015 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 544 iasi616_metop-a 5028 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 545 iasi616_metop-a 5056 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 546 iasi616_metop-a 5128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 547 iasi616_metop-a 5130 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 548 iasi616_metop-a 5144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 549 iasi616_metop-a 5170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 550 iasi616_metop-a 5178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 551 iasi616_metop-a 5183 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 552 iasi616_metop-a 5188 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 553 iasi616_metop-a 5191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 554 iasi616_metop-a 5368 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 555 iasi616_metop-a 5371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 556 iasi616_metop-a 5379 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 557 iasi616_metop-a 5381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 558 iasi616_metop-a 5383 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 559 iasi616_metop-a 5397 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 560 iasi616_metop-a 5399 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 561 iasi616_metop-a 5401 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 562 iasi616_metop-a 5403 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 563 iasi616_metop-a 5405 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 564 iasi616_metop-a 5446 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 565 iasi616_metop-a 5455 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 566 iasi616_metop-a 5472 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 567 iasi616_metop-a 5480 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 568 iasi616_metop-a 5483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 569 iasi616_metop-a 5485 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 570 iasi616_metop-a 5492 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 571 iasi616_metop-a 5497 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 572 iasi616_metop-a 5502 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 573 iasi616_metop-a 5507 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 574 iasi616_metop-a 5509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 575 iasi616_metop-a 5517 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 576 iasi616_metop-a 5528 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 577 iasi616_metop-a 5558 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 578 iasi616_metop-a 5697 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 579 iasi616_metop-a 5714 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 580 iasi616_metop-a 5749 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 581 iasi616_metop-a 5766 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 582 iasi616_metop-a 5785 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 583 iasi616_metop-a 5798 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 584 iasi616_metop-a 5799 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 585 iasi616_metop-a 5801 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 586 iasi616_metop-a 5817 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 587 iasi616_metop-a 5833 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 588 iasi616_metop-a 5834 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 589 iasi616_metop-a 5836 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 590 iasi616_metop-a 5849 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 591 iasi616_metop-a 5851 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 592 iasi616_metop-a 5852 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 593 iasi616_metop-a 5865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 594 iasi616_metop-a 5869 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 595 iasi616_metop-a 5881 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 596 iasi616_metop-a 5884 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 597 iasi616_metop-a 5897 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 598 iasi616_metop-a 5900 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 599 iasi616_metop-a 5916 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 600 iasi616_metop-a 5932 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 601 iasi616_metop-a 5948 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 602 iasi616_metop-a 5963 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 603 iasi616_metop-a 5968 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 604 iasi616_metop-a 5978 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 605 iasi616_metop-a 5988 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 606 iasi616_metop-a 5992 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 607 iasi616_metop-a 5994 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 608 iasi616_metop-a 5997 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 609 iasi616_metop-a 6003 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 610 iasi616_metop-a 6008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 611 iasi616_metop-a 6023 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 612 iasi616_metop-a 6026 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 613 iasi616_metop-a 6039 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 614 iasi616_metop-a 6053 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 615 iasi616_metop-a 6056 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 616 iasi616_metop-a 6067 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 617 iasi616_metop-a 6071 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 618 iasi616_metop-a 6082 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 619 iasi616_metop-a 6085 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 620 iasi616_metop-a 6098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 621 iasi616_metop-a 6112 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 622 iasi616_metop-a 6126 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 623 iasi616_metop-a 6135 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 624 iasi616_metop-a 6140 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 625 iasi616_metop-a 6149 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 626 iasi616_metop-a 6154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 627 iasi616_metop-a 6158 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 628 iasi616_metop-a 6161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 629 iasi616_metop-a 6168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 630 iasi616_metop-a 6174 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 631 iasi616_metop-a 6182 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 632 iasi616_metop-a 6187 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 633 iasi616_metop-a 6205 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 634 iasi616_metop-a 6209 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 635 iasi616_metop-a 6213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 636 iasi616_metop-a 6317 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 637 iasi616_metop-a 6339 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 638 iasi616_metop-a 6342 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 639 iasi616_metop-a 6366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 640 iasi616_metop-a 6381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 641 iasi616_metop-a 6391 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 642 iasi616_metop-a 6489 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 643 iasi616_metop-a 6962 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 644 iasi616_metop-a 6966 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 645 iasi616_metop-a 6970 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 646 iasi616_metop-a 6975 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 647 iasi616_metop-a 6977 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 648 iasi616_metop-a 6982 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 649 iasi616_metop-a 6985 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 650 iasi616_metop-a 6987 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 651 iasi616_metop-a 6989 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 652 iasi616_metop-a 6991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 653 iasi616_metop-a 6993 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 654 iasi616_metop-a 6995 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 655 iasi616_metop-a 6997 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 656 iasi616_metop-a 6999 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 657 iasi616_metop-a 7000 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 658 iasi616_metop-a 7004 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 659 iasi616_metop-a 7008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 660 iasi616_metop-a 7013 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 661 iasi616_metop-a 7016 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 662 iasi616_metop-a 7021 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 663 iasi616_metop-a 7024 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 664 iasi616_metop-a 7027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 665 iasi616_metop-a 7029 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 666 iasi616_metop-a 7032 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 667 iasi616_metop-a 7038 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 668 iasi616_metop-a 7043 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 669 iasi616_metop-a 7046 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 670 iasi616_metop-a 7049 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 671 iasi616_metop-a 7069 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 672 iasi616_metop-a 7072 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 673 iasi616_metop-a 7076 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 674 iasi616_metop-a 7081 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 675 iasi616_metop-a 7084 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 676 iasi616_metop-a 7089 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 677 iasi616_metop-a 7099 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 678 iasi616_metop-a 7209 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 679 iasi616_metop-a 7222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 680 iasi616_metop-a 7231 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 681 iasi616_metop-a 7235 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 682 iasi616_metop-a 7247 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 683 iasi616_metop-a 7267 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 684 iasi616_metop-a 7269 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 685 iasi616_metop-a 7284 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 686 iasi616_metop-a 7389 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 687 iasi616_metop-a 7419 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 688 iasi616_metop-a 7423 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 689 iasi616_metop-a 7424 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 690 iasi616_metop-a 7426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 691 iasi616_metop-a 7428 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 692 iasi616_metop-a 7431 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 693 iasi616_metop-a 7436 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 694 iasi616_metop-a 7444 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 695 iasi616_metop-a 7475 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 696 iasi616_metop-a 7549 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 697 iasi616_metop-a 7584 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 698 iasi616_metop-a 7665 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 699 iasi616_metop-a 7666 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 700 iasi616_metop-a 7831 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 701 iasi616_metop-a 7836 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 702 iasi616_metop-a 7853 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 703 iasi616_metop-a 7865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 704 iasi616_metop-a 7885 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 705 iasi616_metop-a 7888 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 706 iasi616_metop-a 7912 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 707 iasi616_metop-a 7950 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 708 iasi616_metop-a 7972 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 709 iasi616_metop-a 7980 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 710 iasi616_metop-a 7995 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 711 iasi616_metop-a 8007 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 712 iasi616_metop-a 8015 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 713 iasi616_metop-a 8055 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 714 iasi616_metop-a 8078 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 715 airs281SUBSET_aqua 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 716 airs281SUBSET_aqua 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 717 airs281SUBSET_aqua 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 718 airs281SUBSET_aqua 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 719 airs281SUBSET_aqua 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 720 airs281SUBSET_aqua 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 721 airs281SUBSET_aqua 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 722 airs281SUBSET_aqua 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 723 airs281SUBSET_aqua 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 724 airs281SUBSET_aqua 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 725 airs281SUBSET_aqua 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 726 airs281SUBSET_aqua 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 727 airs281SUBSET_aqua 27 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 728 airs281SUBSET_aqua 28 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 729 airs281SUBSET_aqua 30 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 730 airs281SUBSET_aqua 36 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 731 airs281SUBSET_aqua 39 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 732 airs281SUBSET_aqua 40 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 733 airs281SUBSET_aqua 42 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 734 airs281SUBSET_aqua 51 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 735 airs281SUBSET_aqua 52 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 736 airs281SUBSET_aqua 54 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 737 airs281SUBSET_aqua 55 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 738 airs281SUBSET_aqua 56 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 739 airs281SUBSET_aqua 59 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 740 airs281SUBSET_aqua 62 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 741 airs281SUBSET_aqua 63 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 742 airs281SUBSET_aqua 68 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 743 airs281SUBSET_aqua 69 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 744 airs281SUBSET_aqua 71 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 745 airs281SUBSET_aqua 72 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 746 airs281SUBSET_aqua 73 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 747 airs281SUBSET_aqua 74 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 748 airs281SUBSET_aqua 75 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 749 airs281SUBSET_aqua 76 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 750 airs281SUBSET_aqua 77 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 751 airs281SUBSET_aqua 78 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 752 airs281SUBSET_aqua 79 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 753 airs281SUBSET_aqua 80 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 754 airs281SUBSET_aqua 82 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 755 airs281SUBSET_aqua 83 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 756 airs281SUBSET_aqua 84 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 757 airs281SUBSET_aqua 86 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 758 airs281SUBSET_aqua 92 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 759 airs281SUBSET_aqua 93 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 760 airs281SUBSET_aqua 98 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 761 airs281SUBSET_aqua 99 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 762 airs281SUBSET_aqua 101 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 763 airs281SUBSET_aqua 104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 764 airs281SUBSET_aqua 105 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 765 airs281SUBSET_aqua 108 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 766 airs281SUBSET_aqua 110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 767 airs281SUBSET_aqua 111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 768 airs281SUBSET_aqua 113 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 769 airs281SUBSET_aqua 116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 770 airs281SUBSET_aqua 117 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 771 airs281SUBSET_aqua 123 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 772 airs281SUBSET_aqua 124 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 773 airs281SUBSET_aqua 128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 774 airs281SUBSET_aqua 129 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 775 airs281SUBSET_aqua 138 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 776 airs281SUBSET_aqua 139 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 777 airs281SUBSET_aqua 144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 778 airs281SUBSET_aqua 145 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 779 airs281SUBSET_aqua 150 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 780 airs281SUBSET_aqua 151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 781 airs281SUBSET_aqua 156 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 782 airs281SUBSET_aqua 157 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 783 airs281SUBSET_aqua 159 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 784 airs281SUBSET_aqua 162 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 785 airs281SUBSET_aqua 165 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 786 airs281SUBSET_aqua 168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 787 airs281SUBSET_aqua 169 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 788 airs281SUBSET_aqua 170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 789 airs281SUBSET_aqua 172 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 790 airs281SUBSET_aqua 173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 791 airs281SUBSET_aqua 174 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 792 airs281SUBSET_aqua 175 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 793 airs281SUBSET_aqua 177 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 794 airs281SUBSET_aqua 179 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 795 airs281SUBSET_aqua 180 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 796 airs281SUBSET_aqua 182 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 797 airs281SUBSET_aqua 185 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 798 airs281SUBSET_aqua 186 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 799 airs281SUBSET_aqua 190 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 800 airs281SUBSET_aqua 192 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 801 airs281SUBSET_aqua 198 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 802 airs281SUBSET_aqua 201 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 803 airs281SUBSET_aqua 204 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 804 airs281SUBSET_aqua 207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 805 airs281SUBSET_aqua 210 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 806 airs281SUBSET_aqua 215 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 807 airs281SUBSET_aqua 216 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 808 airs281SUBSET_aqua 221 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 809 airs281SUBSET_aqua 226 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 810 airs281SUBSET_aqua 227 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 811 airs281SUBSET_aqua 232 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 812 airs281SUBSET_aqua 252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 813 airs281SUBSET_aqua 253 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 814 airs281SUBSET_aqua 256 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 815 airs281SUBSET_aqua 257 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 816 airs281SUBSET_aqua 261 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 817 airs281SUBSET_aqua 262 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 818 airs281SUBSET_aqua 267 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 819 airs281SUBSET_aqua 272 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 820 airs281SUBSET_aqua 295 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 821 airs281SUBSET_aqua 299 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 822 airs281SUBSET_aqua 300 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 823 airs281SUBSET_aqua 305 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 824 airs281SUBSET_aqua 310 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 825 airs281SUBSET_aqua 321 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 826 airs281SUBSET_aqua 325 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 827 airs281SUBSET_aqua 333 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 828 airs281SUBSET_aqua 338 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 829 airs281SUBSET_aqua 355 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 830 airs281SUBSET_aqua 362 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 831 airs281SUBSET_aqua 375 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 832 airs281SUBSET_aqua 453 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 833 airs281SUBSET_aqua 475 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 834 airs281SUBSET_aqua 484 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 835 airs281SUBSET_aqua 497 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 836 airs281SUBSET_aqua 528 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 837 airs281SUBSET_aqua 587 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 838 airs281SUBSET_aqua 672 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 839 airs281SUBSET_aqua 787 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 840 airs281SUBSET_aqua 791 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 841 airs281SUBSET_aqua 843 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 842 airs281SUBSET_aqua 870 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 843 airs281SUBSET_aqua 914 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 844 airs281SUBSET_aqua 950 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 845 airs281SUBSET_aqua 1003 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 846 airs281SUBSET_aqua 1012 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 847 airs281SUBSET_aqua 1019 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 848 airs281SUBSET_aqua 1024 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 849 airs281SUBSET_aqua 1030 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 850 airs281SUBSET_aqua 1038 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 851 airs281SUBSET_aqua 1048 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 852 airs281SUBSET_aqua 1069 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 853 airs281SUBSET_aqua 1079 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 854 airs281SUBSET_aqua 1082 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 855 airs281SUBSET_aqua 1083 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 856 airs281SUBSET_aqua 1088 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 857 airs281SUBSET_aqua 1090 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 858 airs281SUBSET_aqua 1092 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 859 airs281SUBSET_aqua 1095 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 860 airs281SUBSET_aqua 1104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 861 airs281SUBSET_aqua 1111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 862 airs281SUBSET_aqua 1115 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 863 airs281SUBSET_aqua 1116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 864 airs281SUBSET_aqua 1119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 865 airs281SUBSET_aqua 1120 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 866 airs281SUBSET_aqua 1123 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 867 airs281SUBSET_aqua 1130 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 868 airs281SUBSET_aqua 1138 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 869 airs281SUBSET_aqua 1142 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 870 airs281SUBSET_aqua 1178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 871 airs281SUBSET_aqua 1199 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 872 airs281SUBSET_aqua 1206 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 873 airs281SUBSET_aqua 1221 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 874 airs281SUBSET_aqua 1237 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 875 airs281SUBSET_aqua 1252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 876 airs281SUBSET_aqua 1260 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 877 airs281SUBSET_aqua 1263 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 878 airs281SUBSET_aqua 1266 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 879 airs281SUBSET_aqua 1285 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 880 airs281SUBSET_aqua 1301 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 881 airs281SUBSET_aqua 1304 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 882 airs281SUBSET_aqua 1329 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 883 airs281SUBSET_aqua 1371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 884 airs281SUBSET_aqua 1382 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 885 airs281SUBSET_aqua 1415 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 886 airs281SUBSET_aqua 1424 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 887 airs281SUBSET_aqua 1449 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 888 airs281SUBSET_aqua 1455 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 889 airs281SUBSET_aqua 1466 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 890 airs281SUBSET_aqua 1477 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 891 airs281SUBSET_aqua 1500 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 892 airs281SUBSET_aqua 1519 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 893 airs281SUBSET_aqua 1538 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 894 airs281SUBSET_aqua 1545 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 895 airs281SUBSET_aqua 1565 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 896 airs281SUBSET_aqua 1574 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 897 airs281SUBSET_aqua 1583 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 898 airs281SUBSET_aqua 1593 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 899 airs281SUBSET_aqua 1614 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 900 airs281SUBSET_aqua 1627 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 901 airs281SUBSET_aqua 1636 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 902 airs281SUBSET_aqua 1644 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 903 airs281SUBSET_aqua 1652 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 904 airs281SUBSET_aqua 1669 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 905 airs281SUBSET_aqua 1674 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 906 airs281SUBSET_aqua 1681 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 907 airs281SUBSET_aqua 1694 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 908 airs281SUBSET_aqua 1708 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 909 airs281SUBSET_aqua 1717 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 910 airs281SUBSET_aqua 1723 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 911 airs281SUBSET_aqua 1740 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 912 airs281SUBSET_aqua 1748 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 913 airs281SUBSET_aqua 1751 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 914 airs281SUBSET_aqua 1756 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 915 airs281SUBSET_aqua 1763 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 916 airs281SUBSET_aqua 1766 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 917 airs281SUBSET_aqua 1771 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 918 airs281SUBSET_aqua 1777 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 919 airs281SUBSET_aqua 1780 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 920 airs281SUBSET_aqua 1783 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 921 airs281SUBSET_aqua 1794 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 922 airs281SUBSET_aqua 1800 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 923 airs281SUBSET_aqua 1803 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 924 airs281SUBSET_aqua 1806 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 925 airs281SUBSET_aqua 1812 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 926 airs281SUBSET_aqua 1826 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 927 airs281SUBSET_aqua 1843 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 928 airs281SUBSET_aqua 1852 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 929 airs281SUBSET_aqua 1865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 930 airs281SUBSET_aqua 1866 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 931 airs281SUBSET_aqua 1868 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 932 airs281SUBSET_aqua 1869 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 933 airs281SUBSET_aqua 1872 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 934 airs281SUBSET_aqua 1873 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 935 airs281SUBSET_aqua 1876 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 936 airs281SUBSET_aqua 1881 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 937 airs281SUBSET_aqua 1882 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 938 airs281SUBSET_aqua 1883 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 939 airs281SUBSET_aqua 1911 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 940 airs281SUBSET_aqua 1917 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 941 airs281SUBSET_aqua 1918 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 942 airs281SUBSET_aqua 1924 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 943 airs281SUBSET_aqua 1928 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 944 airs281SUBSET_aqua 1937 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 945 airs281SUBSET_aqua 1941 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 946 airs281SUBSET_aqua 2099 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 947 airs281SUBSET_aqua 2100 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 948 airs281SUBSET_aqua 2101 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 949 airs281SUBSET_aqua 2103 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 950 airs281SUBSET_aqua 2104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 951 airs281SUBSET_aqua 2106 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 952 airs281SUBSET_aqua 2107 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 953 airs281SUBSET_aqua 2108 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 954 airs281SUBSET_aqua 2109 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 955 airs281SUBSET_aqua 2110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 956 airs281SUBSET_aqua 2111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 957 airs281SUBSET_aqua 2112 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 958 airs281SUBSET_aqua 2113 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 959 airs281SUBSET_aqua 2114 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 960 airs281SUBSET_aqua 2115 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 961 airs281SUBSET_aqua 2116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 962 airs281SUBSET_aqua 2117 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 963 airs281SUBSET_aqua 2118 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 964 airs281SUBSET_aqua 2119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 965 airs281SUBSET_aqua 2120 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 966 airs281SUBSET_aqua 2121 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 967 airs281SUBSET_aqua 2122 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 968 airs281SUBSET_aqua 2123 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 969 airs281SUBSET_aqua 2128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 970 airs281SUBSET_aqua 2134 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 971 airs281SUBSET_aqua 2141 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 972 airs281SUBSET_aqua 2145 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 973 airs281SUBSET_aqua 2149 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 974 airs281SUBSET_aqua 2153 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 975 airs281SUBSET_aqua 2164 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 976 airs281SUBSET_aqua 2189 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 977 airs281SUBSET_aqua 2197 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 978 airs281SUBSET_aqua 2209 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 979 airs281SUBSET_aqua 2226 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 980 airs281SUBSET_aqua 2234 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 981 airs281SUBSET_aqua 2280 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 982 airs281SUBSET_aqua 2318 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 983 airs281SUBSET_aqua 2321 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 984 airs281SUBSET_aqua 2325 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 985 airs281SUBSET_aqua 2328 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 986 airs281SUBSET_aqua 2333 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 987 airs281SUBSET_aqua 2339 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 988 airs281SUBSET_aqua 2348 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 989 airs281SUBSET_aqua 2353 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 990 airs281SUBSET_aqua 2355 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 991 airs281SUBSET_aqua 2357 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 992 airs281SUBSET_aqua 2363 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 993 airs281SUBSET_aqua 2370 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 994 airs281SUBSET_aqua 2371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 995 airs281SUBSET_aqua 2377 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 996 amsua_aqua 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 997 amsua_aqua 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 998 amsua_aqua 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 999 amsua_aqua 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1000 amsua_aqua 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1001 amsua_aqua 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1002 amsua_aqua 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1003 amsua_aqua 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1004 amsua_aqua 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1005 amsua_aqua 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1006 amsua_aqua 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1007 amsua_aqua 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1008 amsua_aqua 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1009 amsua_aqua 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1010 amsua_aqua 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1011 avhrr3_n18 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1012 avhrr3_n18 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1013 avhrr3_n18 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1014 avhrr3_metop-a 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1015 avhrr3_metop-a 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1016 avhrr3_metop-a 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1017 avhrr3_n19 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1018 avhrr3_n19 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1019 avhrr3_n19 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1020 ssmi_f15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1021 ssmi_f15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1022 ssmi_f15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1023 ssmi_f15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1024 ssmi_f15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1025 ssmi_f15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1026 ssmi_f15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1027 ssmis_f16 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1028 ssmis_f16 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1029 ssmis_f16 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1030 ssmis_f16 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1031 ssmis_f16 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1032 ssmis_f16 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1033 ssmis_f16 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1034 ssmis_f16 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1035 ssmis_f16 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1036 ssmis_f16 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1037 ssmis_f16 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1038 ssmis_f16 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1039 ssmis_f16 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1040 ssmis_f16 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1041 ssmis_f16 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1042 ssmis_f16 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1043 ssmis_f16 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1044 ssmis_f16 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1045 ssmis_f16 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1046 ssmis_f16 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1047 ssmis_f16 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1048 ssmis_f16 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1049 ssmis_f16 23 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1050 ssmis_f16 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1051 amsre_aqua 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1052 amsre_aqua 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1053 amsre_aqua 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1054 amsre_aqua 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1055 amsre_aqua 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1056 amsre_aqua 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1057 amsre_aqua 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1058 amsre_aqua 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1059 amsre_aqua 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1060 amsre_aqua 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1061 amsre_aqua 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1062 amsre_aqua 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1063 imgr_g11 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1064 imgr_g11 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1065 imgr_g11 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1066 imgr_g11 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1067 imgr_g12 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1068 imgr_g12 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1069 imgr_g12 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1070 imgr_g12 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1071 imgr_g13 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1072 imgr_g13 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1073 imgr_g13 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1074 imgr_g13 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1075 sndrD1_g11 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1076 sndrD1_g11 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1077 sndrD1_g11 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1078 sndrD1_g11 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1079 sndrD1_g11 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1080 sndrD1_g11 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1081 sndrD1_g11 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1082 sndrD1_g11 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1083 sndrD1_g11 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1084 sndrD1_g11 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1085 sndrD1_g11 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1086 sndrD1_g11 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1087 sndrD1_g11 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1088 sndrD1_g11 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1089 sndrD1_g11 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1090 sndrD1_g11 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1091 sndrD1_g11 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1092 sndrD1_g11 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1093 sndrD2_g11 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1094 sndrD2_g11 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1095 sndrD2_g11 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1096 sndrD2_g11 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1097 sndrD2_g11 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1098 sndrD2_g11 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1099 sndrD2_g11 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1100 sndrD2_g11 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1101 sndrD2_g11 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1102 sndrD2_g11 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1103 sndrD2_g11 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1104 sndrD2_g11 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1105 sndrD2_g11 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1106 sndrD2_g11 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1107 sndrD2_g11 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1108 sndrD2_g11 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1109 sndrD2_g11 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1110 sndrD2_g11 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1111 sndrD3_g11 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1112 sndrD3_g11 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1113 sndrD3_g11 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1114 sndrD3_g11 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1115 sndrD3_g11 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1116 sndrD3_g11 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1117 sndrD3_g11 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1118 sndrD3_g11 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1119 sndrD3_g11 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1120 sndrD3_g11 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1121 sndrD3_g11 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1122 sndrD3_g11 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1123 sndrD3_g11 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1124 sndrD3_g11 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1125 sndrD3_g11 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1126 sndrD3_g11 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1127 sndrD3_g11 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1128 sndrD3_g11 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1129 sndrD4_g11 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1130 sndrD4_g11 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1131 sndrD4_g11 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1132 sndrD4_g11 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1133 sndrD4_g11 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1134 sndrD4_g11 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1135 sndrD4_g11 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1136 sndrD4_g11 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1137 sndrD4_g11 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1138 sndrD4_g11 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1139 sndrD4_g11 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1140 sndrD4_g11 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1141 sndrD4_g11 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1142 sndrD4_g11 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1143 sndrD4_g11 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1144 sndrD4_g11 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1145 sndrD4_g11 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1146 sndrD4_g11 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1147 sndrD1_g12 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1148 sndrD1_g12 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1149 sndrD1_g12 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1150 sndrD1_g12 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1151 sndrD1_g12 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1152 sndrD1_g12 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1153 sndrD1_g12 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1154 sndrD1_g12 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1155 sndrD1_g12 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1156 sndrD1_g12 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1157 sndrD1_g12 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1158 sndrD1_g12 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1159 sndrD1_g12 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1160 sndrD1_g12 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1161 sndrD1_g12 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1162 sndrD1_g12 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1163 sndrD1_g12 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1164 sndrD1_g12 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1165 sndrD2_g12 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1166 sndrD2_g12 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1167 sndrD2_g12 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1168 sndrD2_g12 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1169 sndrD2_g12 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1170 sndrD2_g12 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1171 sndrD2_g12 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1172 sndrD2_g12 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1173 sndrD2_g12 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1174 sndrD2_g12 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1175 sndrD2_g12 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1176 sndrD2_g12 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1177 sndrD2_g12 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1178 sndrD2_g12 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1179 sndrD2_g12 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1180 sndrD2_g12 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1181 sndrD2_g12 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1182 sndrD2_g12 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1183 sndrD3_g12 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1184 sndrD3_g12 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1185 sndrD3_g12 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1186 sndrD3_g12 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1187 sndrD3_g12 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1188 sndrD3_g12 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1189 sndrD3_g12 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1190 sndrD3_g12 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1191 sndrD3_g12 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1192 sndrD3_g12 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1193 sndrD3_g12 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1194 sndrD3_g12 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1195 sndrD3_g12 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1196 sndrD3_g12 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1197 sndrD3_g12 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1198 sndrD3_g12 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1199 sndrD3_g12 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1200 sndrD3_g12 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1201 sndrD4_g12 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1202 sndrD4_g12 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1203 sndrD4_g12 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1204 sndrD4_g12 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1205 sndrD4_g12 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1206 sndrD4_g12 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1207 sndrD4_g12 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1208 sndrD4_g12 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1209 sndrD4_g12 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1210 sndrD4_g12 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1211 sndrD4_g12 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1212 sndrD4_g12 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1213 sndrD4_g12 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1214 sndrD4_g12 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1215 sndrD4_g12 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1216 sndrD4_g12 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1217 sndrD4_g12 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1218 sndrD4_g12 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1219 sndrD1_g13 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1220 sndrD1_g13 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1221 sndrD1_g13 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1222 sndrD1_g13 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1223 sndrD1_g13 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1224 sndrD1_g13 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1225 sndrD1_g13 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1226 sndrD1_g13 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1227 sndrD1_g13 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1228 sndrD1_g13 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1229 sndrD1_g13 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1230 sndrD1_g13 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1231 sndrD1_g13 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1232 sndrD1_g13 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1233 sndrD1_g13 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1234 sndrD1_g13 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1235 sndrD1_g13 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1236 sndrD1_g13 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1237 sndrD2_g13 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1238 sndrD2_g13 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1239 sndrD2_g13 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1240 sndrD2_g13 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1241 sndrD2_g13 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1242 sndrD2_g13 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1243 sndrD2_g13 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1244 sndrD2_g13 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1245 sndrD2_g13 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1246 sndrD2_g13 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1247 sndrD2_g13 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1248 sndrD2_g13 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1249 sndrD2_g13 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1250 sndrD2_g13 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1251 sndrD2_g13 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1252 sndrD2_g13 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1253 sndrD2_g13 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1254 sndrD2_g13 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1255 sndrD3_g13 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1256 sndrD3_g13 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1257 sndrD3_g13 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1258 sndrD3_g13 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1259 sndrD3_g13 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1260 sndrD3_g13 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1261 sndrD3_g13 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1262 sndrD3_g13 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1263 sndrD3_g13 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1264 sndrD3_g13 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1265 sndrD3_g13 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1266 sndrD3_g13 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1267 sndrD3_g13 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1268 sndrD3_g13 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1269 sndrD3_g13 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1270 sndrD3_g13 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1271 sndrD3_g13 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1272 sndrD3_g13 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1273 sndrD4_g13 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1274 sndrD4_g13 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1275 sndrD4_g13 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1276 sndrD4_g13 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1277 sndrD4_g13 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1278 sndrD4_g13 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1279 sndrD4_g13 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1280 sndrD4_g13 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1281 sndrD4_g13 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1282 sndrD4_g13 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1283 sndrD4_g13 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1284 sndrD4_g13 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1285 sndrD4_g13 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1286 sndrD4_g13 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1287 sndrD4_g13 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1288 sndrD4_g13 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1289 sndrD4_g13 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1290 sndrD4_g13 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1291 hirs4_n19 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1292 hirs4_n19 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1293 hirs4_n19 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1294 hirs4_n19 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1295 hirs4_n19 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1296 hirs4_n19 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1297 hirs4_n19 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1298 hirs4_n19 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1299 hirs4_n19 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1300 hirs4_n19 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1301 hirs4_n19 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1302 hirs4_n19 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1303 hirs4_n19 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1304 hirs4_n19 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1305 hirs4_n19 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1306 hirs4_n19 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1307 hirs4_n19 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1308 hirs4_n19 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1309 hirs4_n19 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1310 amsua_n19 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1311 amsua_n19 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1312 amsua_n19 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1313 amsua_n19 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1314 amsua_n19 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1315 amsua_n19 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1316 amsua_n19 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1317 amsua_n19 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1318 amsua_n19 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1319 amsua_n19 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1320 amsua_n19 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1321 amsua_n19 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1322 amsua_n19 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1323 amsua_n19 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1324 amsua_n19 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1325 mhs_n19 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1326 mhs_n19 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1327 mhs_n19 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1328 mhs_n19 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1329 mhs_n19 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1330 ssmis_f17 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1331 ssmis_f17 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1332 ssmis_f17 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1333 ssmis_f17 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1334 ssmis_f17 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1335 ssmis_f17 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1336 ssmis_f17 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1337 ssmis_f17 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1338 ssmis_f17 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1339 ssmis_f17 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1340 ssmis_f17 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1341 ssmis_f17 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1342 ssmis_f17 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1343 ssmis_f17 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1344 ssmis_f17 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1345 ssmis_f17 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1346 ssmis_f17 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1347 ssmis_f17 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1348 ssmis_f17 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1349 ssmis_f17 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1350 ssmis_f17 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1351 ssmis_f17 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1352 ssmis_f17 23 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1353 ssmis_f17 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1354 ssmis_f18 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1355 ssmis_f18 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1356 ssmis_f18 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1357 ssmis_f18 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1358 ssmis_f18 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1359 ssmis_f18 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1360 ssmis_f18 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1361 ssmis_f18 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1362 ssmis_f18 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1363 ssmis_f18 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1364 ssmis_f18 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1365 ssmis_f18 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1366 ssmis_f18 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1367 ssmis_f18 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1368 ssmis_f18 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1369 ssmis_f18 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1370 ssmis_f18 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1371 ssmis_f18 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1372 ssmis_f18 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1373 ssmis_f18 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1374 ssmis_f18 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1375 ssmis_f18 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1376 ssmis_f18 23 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1377 ssmis_f18 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1378 ssmis_f19 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1379 ssmis_f19 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1380 ssmis_f19 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1381 ssmis_f19 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1382 ssmis_f19 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1383 ssmis_f19 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1384 ssmis_f19 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1385 ssmis_f19 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1386 ssmis_f19 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1387 ssmis_f19 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1388 ssmis_f19 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1389 ssmis_f19 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1390 ssmis_f19 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1391 ssmis_f19 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1392 ssmis_f19 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1393 ssmis_f19 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1394 ssmis_f19 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1395 ssmis_f19 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1396 ssmis_f19 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1397 ssmis_f19 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1398 ssmis_f19 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1399 ssmis_f19 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1400 ssmis_f19 23 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1401 ssmis_f19 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1402 ssmis_f20 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1403 ssmis_f20 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1404 ssmis_f20 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1405 ssmis_f20 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1406 ssmis_f20 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1407 ssmis_f20 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1408 ssmis_f20 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1409 ssmis_f20 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1410 ssmis_f20 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1411 ssmis_f20 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1412 ssmis_f20 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1413 ssmis_f20 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1414 ssmis_f20 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1415 ssmis_f20 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1416 ssmis_f20 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1417 ssmis_f20 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1418 ssmis_f20 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1419 ssmis_f20 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1420 ssmis_f20 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1421 ssmis_f20 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1422 ssmis_f20 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1423 ssmis_f20 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1424 ssmis_f20 23 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1425 ssmis_f20 24 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1426 imgr_g14 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1427 imgr_g14 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1428 imgr_g14 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1429 imgr_g14 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1430 imgr_g15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1431 imgr_g15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1432 imgr_g15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1433 imgr_g15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1434 sndrD1_g14 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1435 sndrD1_g14 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1436 sndrD1_g14 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1437 sndrD1_g14 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1438 sndrD1_g14 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1439 sndrD1_g14 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1440 sndrD1_g14 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1441 sndrD1_g14 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1442 sndrD1_g14 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1443 sndrD1_g14 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1444 sndrD1_g14 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1445 sndrD1_g14 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1446 sndrD1_g14 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1447 sndrD1_g14 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1448 sndrD1_g14 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1449 sndrD1_g14 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1450 sndrD1_g14 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1451 sndrD1_g14 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1452 sndrD2_g14 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1453 sndrD2_g14 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1454 sndrD2_g14 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1455 sndrD2_g14 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1456 sndrD2_g14 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1457 sndrD2_g14 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1458 sndrD2_g14 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1459 sndrD2_g14 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1460 sndrD2_g14 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1461 sndrD2_g14 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1462 sndrD2_g14 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1463 sndrD2_g14 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1464 sndrD2_g14 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1465 sndrD2_g14 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1466 sndrD2_g14 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1467 sndrD2_g14 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1468 sndrD2_g14 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1469 sndrD2_g14 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1470 sndrD3_g14 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1471 sndrD3_g14 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1472 sndrD3_g14 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1473 sndrD3_g14 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1474 sndrD3_g14 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1475 sndrD3_g14 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1476 sndrD3_g14 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1477 sndrD3_g14 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1478 sndrD3_g14 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1479 sndrD3_g14 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1480 sndrD3_g14 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1481 sndrD3_g14 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1482 sndrD3_g14 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1483 sndrD3_g14 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1484 sndrD3_g14 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1485 sndrD3_g14 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1486 sndrD3_g14 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1487 sndrD3_g14 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1488 sndrD4_g14 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1489 sndrD4_g14 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1490 sndrD4_g14 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1491 sndrD4_g14 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1492 sndrD4_g14 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1493 sndrD4_g14 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1494 sndrD4_g14 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1495 sndrD4_g14 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1496 sndrD4_g14 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1497 sndrD4_g14 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1498 sndrD4_g14 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1499 sndrD4_g14 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1500 sndrD4_g14 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1501 sndrD4_g14 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1502 sndrD4_g14 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1503 sndrD4_g14 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1504 sndrD4_g14 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1505 sndrD4_g14 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1506 sndrD1_g15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1507 sndrD1_g15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1508 sndrD1_g15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1509 sndrD1_g15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1510 sndrD1_g15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1511 sndrD1_g15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1512 sndrD1_g15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1513 sndrD1_g15 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1514 sndrD1_g15 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1515 sndrD1_g15 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1516 sndrD1_g15 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1517 sndrD1_g15 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1518 sndrD1_g15 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1519 sndrD1_g15 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1520 sndrD1_g15 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1521 sndrD1_g15 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1522 sndrD1_g15 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1523 sndrD1_g15 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1524 sndrD2_g15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1525 sndrD2_g15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1526 sndrD2_g15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1527 sndrD2_g15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1528 sndrD2_g15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1529 sndrD2_g15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1530 sndrD2_g15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1531 sndrD2_g15 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1532 sndrD2_g15 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1533 sndrD2_g15 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1534 sndrD2_g15 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1535 sndrD2_g15 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1536 sndrD2_g15 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1537 sndrD2_g15 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1538 sndrD2_g15 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1539 sndrD2_g15 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1540 sndrD2_g15 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1541 sndrD2_g15 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1542 sndrD3_g15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1543 sndrD3_g15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1544 sndrD3_g15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1545 sndrD3_g15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1546 sndrD3_g15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1547 sndrD3_g15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1548 sndrD3_g15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1549 sndrD3_g15 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1550 sndrD3_g15 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1551 sndrD3_g15 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1552 sndrD3_g15 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1553 sndrD3_g15 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1554 sndrD3_g15 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1555 sndrD3_g15 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1556 sndrD3_g15 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1557 sndrD3_g15 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1558 sndrD3_g15 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1559 sndrD3_g15 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1560 sndrD4_g15 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1561 sndrD4_g15 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1562 sndrD4_g15 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1563 sndrD4_g15 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1564 sndrD4_g15 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1565 sndrD4_g15 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1566 sndrD4_g15 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1567 sndrD4_g15 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1568 sndrD4_g15 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1569 sndrD4_g15 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1570 sndrD4_g15 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1571 sndrD4_g15 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1572 sndrD4_g15 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1573 sndrD4_g15 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1574 sndrD4_g15 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1575 sndrD4_g15 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1576 sndrD4_g15 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1577 sndrD4_g15 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1578 seviri_m08 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1579 seviri_m08 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1580 seviri_m08 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1581 seviri_m08 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1582 seviri_m08 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1583 seviri_m08 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1584 seviri_m08 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1585 seviri_m08 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1586 seviri_m09 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1587 seviri_m09 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1588 seviri_m09 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1589 seviri_m09 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1590 seviri_m09 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1591 seviri_m09 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1592 seviri_m09 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1593 seviri_m09 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1594 seviri_m10 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1595 seviri_m10 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1596 seviri_m10 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1597 seviri_m10 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1598 seviri_m10 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1599 seviri_m10 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1600 seviri_m10 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1601 seviri_m10 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1602 atms_npp 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1603 atms_npp 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1604 atms_npp 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1605 atms_npp 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1606 atms_npp 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1607 atms_npp 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1608 atms_npp 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1609 atms_npp 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1610 atms_npp 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1611 atms_npp 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1612 atms_npp 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1613 atms_npp 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1614 atms_npp 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1615 atms_npp 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1616 atms_npp 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1617 atms_npp 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1618 atms_npp 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1619 atms_npp 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1620 atms_npp 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1621 atms_npp 20 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1622 atms_npp 21 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1623 atms_npp 22 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1624 cris_npp 27 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1625 cris_npp 28 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1626 cris_npp 31 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1627 cris_npp 32 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1628 cris_npp 33 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1629 cris_npp 37 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1630 cris_npp 49 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1631 cris_npp 51 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1632 cris_npp 53 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1633 cris_npp 59 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1634 cris_npp 61 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1635 cris_npp 63 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1636 cris_npp 64 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1637 cris_npp 65 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1638 cris_npp 67 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1639 cris_npp 69 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1640 cris_npp 71 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1641 cris_npp 73 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1642 cris_npp 75 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1643 cris_npp 79 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1644 cris_npp 80 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1645 cris_npp 81 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1646 cris_npp 83 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1647 cris_npp 85 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1648 cris_npp 87 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1649 cris_npp 88 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1650 cris_npp 89 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1651 cris_npp 93 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1652 cris_npp 95 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1653 cris_npp 96 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1654 cris_npp 99 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1655 cris_npp 101 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1656 cris_npp 102 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1657 cris_npp 104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1658 cris_npp 106 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1659 cris_npp 107 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1660 cris_npp 111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1661 cris_npp 113 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1662 cris_npp 116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1663 cris_npp 120 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1664 cris_npp 123 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1665 cris_npp 124 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1666 cris_npp 125 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1667 cris_npp 126 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1668 cris_npp 130 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1669 cris_npp 132 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1670 cris_npp 133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1671 cris_npp 136 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1672 cris_npp 137 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1673 cris_npp 138 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1674 cris_npp 142 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1675 cris_npp 143 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1676 cris_npp 144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1677 cris_npp 145 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1678 cris_npp 147 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1679 cris_npp 148 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1680 cris_npp 150 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1681 cris_npp 151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1682 cris_npp 153 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1683 cris_npp 154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1684 cris_npp 155 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1685 cris_npp 157 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1686 cris_npp 158 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1687 cris_npp 159 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1688 cris_npp 160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1689 cris_npp 161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1690 cris_npp 162 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1691 cris_npp 163 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1692 cris_npp 164 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1693 cris_npp 165 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1694 cris_npp 166 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1695 cris_npp 168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1696 cris_npp 170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1697 cris_npp 171 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1698 cris_npp 173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1699 cris_npp 175 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1700 cris_npp 181 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1701 cris_npp 183 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1702 cris_npp 198 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1703 cris_npp 208 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1704 cris_npp 211 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1705 cris_npp 216 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1706 cris_npp 224 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1707 cris_npp 228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1708 cris_npp 236 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1709 cris_npp 238 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1710 cris_npp 242 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1711 cris_npp 248 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1712 cris_npp 266 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1713 cris_npp 268 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1714 cris_npp 279 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1715 cris_npp 283 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1716 cris_npp 311 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1717 cris_npp 317 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1718 cris_npp 330 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1719 cris_npp 333 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1720 cris_npp 334 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1721 cris_npp 338 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1722 cris_npp 340 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1723 cris_npp 341 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1724 cris_npp 342 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1725 cris_npp 349 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1726 cris_npp 352 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1727 cris_npp 358 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1728 cris_npp 361 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1729 cris_npp 364 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1730 cris_npp 366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1731 cris_npp 367 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1732 cris_npp 368 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1733 cris_npp 378 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1734 cris_npp 390 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1735 cris_npp 391 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1736 cris_npp 392 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1737 cris_npp 394 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1738 cris_npp 395 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1739 cris_npp 396 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1740 cris_npp 397 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1741 cris_npp 398 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1742 cris_npp 399 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1743 cris_npp 404 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1744 cris_npp 427 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1745 cris_npp 447 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1746 cris_npp 464 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1747 cris_npp 473 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1748 cris_npp 482 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1749 cris_npp 484 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1750 cris_npp 501 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1751 cris_npp 529 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1752 cris_npp 556 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1753 cris_npp 557 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1754 cris_npp 558 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1755 cris_npp 560 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1756 cris_npp 561 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1757 cris_npp 562 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1758 cris_npp 564 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1759 cris_npp 565 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1760 cris_npp 566 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1761 cris_npp 569 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1762 cris_npp 573 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1763 cris_npp 574 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1764 cris_npp 577 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1765 cris_npp 580 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1766 cris_npp 581 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1767 cris_npp 584 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1768 cris_npp 585 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1769 cris_npp 587 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1770 cris_npp 590 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1771 cris_npp 591 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1772 cris_npp 594 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1773 cris_npp 597 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1774 cris_npp 598 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1775 cris_npp 601 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1776 cris_npp 604 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1777 cris_npp 607 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1778 cris_npp 611 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1779 cris_npp 614 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1780 cris_npp 616 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1781 cris_npp 617 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1782 cris_npp 619 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1783 cris_npp 622 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1784 cris_npp 626 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1785 cris_npp 628 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1786 cris_npp 634 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1787 cris_npp 637 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1788 cris_npp 638 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1789 cris_npp 640 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1790 cris_npp 641 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1791 cris_npp 642 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1792 cris_npp 644 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1793 cris_npp 646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1794 cris_npp 647 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1795 cris_npp 650 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1796 cris_npp 651 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1797 cris_npp 652 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1798 cris_npp 654 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1799 cris_npp 655 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1800 cris_npp 657 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1801 cris_npp 659 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1802 cris_npp 663 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1803 cris_npp 667 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1804 cris_npp 670 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1805 cris_npp 707 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1806 cris_npp 710 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1807 cris_npp 713 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1808 cris_npp 716 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1809 cris_npp 730 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1810 cris_npp 735 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1811 cris_npp 736 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1812 cris_npp 739 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1813 cris_npp 743 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1814 cris_npp 744 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1815 cris_npp 746 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1816 cris_npp 748 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1817 cris_npp 751 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1818 cris_npp 754 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1819 cris_npp 755 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1820 cris_npp 756 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1821 cris_npp 757 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1822 cris_npp 758 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1823 cris_npp 760 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1824 cris_npp 761 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1825 cris_npp 762 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1826 cris_npp 763 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1827 cris_npp 766 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1828 cris_npp 767 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1829 cris_npp 768 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1830 cris_npp 771 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1831 cris_npp 772 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1832 cris_npp 773 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1833 cris_npp 776 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1834 cris_npp 777 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1835 cris_npp 778 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1836 cris_npp 779 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1837 cris_npp 780 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1838 cris_npp 782 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1839 cris_npp 783 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1840 cris_npp 784 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1841 cris_npp 785 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1842 cris_npp 786 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1843 cris_npp 787 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1844 cris_npp 788 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1845 cris_npp 789 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1846 cris_npp 790 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1847 cris_npp 791 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1848 cris_npp 792 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1849 cris_npp 794 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1850 cris_npp 796 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1851 cris_npp 798 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1852 cris_npp 800 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1853 cris_npp 802 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1854 cris_npp 803 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1855 cris_npp 804 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1856 cris_npp 806 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1857 cris_npp 807 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1858 cris_npp 808 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1859 cris_npp 809 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1860 cris_npp 811 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1861 cris_npp 812 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1862 cris_npp 814 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1863 cris_npp 816 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1864 cris_npp 819 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1865 cris_npp 820 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1866 cris_npp 821 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1867 cris_npp 822 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1868 cris_npp 823 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1869 cris_npp 824 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1870 cris_npp 825 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1871 cris_npp 826 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1872 cris_npp 827 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1873 cris_npp 828 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1874 cris_npp 829 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1875 cris_npp 830 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1876 cris_npp 831 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1877 cris_npp 832 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1878 cris_npp 833 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1879 cris_npp 834 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1880 cris_npp 835 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1881 cris_npp 836 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1882 cris_npp 838 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1883 cris_npp 839 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1884 cris_npp 840 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1885 cris_npp 842 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1886 cris_npp 843 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1887 cris_npp 844 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1888 cris_npp 845 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1889 cris_npp 846 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1890 cris_npp 847 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1891 cris_npp 848 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1892 cris_npp 849 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1893 cris_npp 850 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1894 cris_npp 851 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1895 cris_npp 852 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1896 cris_npp 853 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1897 cris_npp 854 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1898 cris_npp 856 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1899 cris_npp 861 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1900 cris_npp 862 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1901 cris_npp 864 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1902 cris_npp 865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1903 cris_npp 866 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1904 cris_npp 867 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1905 cris_npp 869 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1906 cris_npp 871 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1907 cris_npp 872 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1908 cris_npp 874 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1909 cris_npp 876 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1910 cris_npp 878 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1911 cris_npp 879 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1912 cris_npp 880 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1913 cris_npp 884 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1914 cris_npp 886 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1915 cris_npp 887 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1916 cris_npp 888 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1917 cris_npp 889 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1918 cris_npp 890 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1919 cris_npp 900 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1920 cris_npp 921 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1921 cris_npp 924 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1922 cris_npp 927 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1923 cris_npp 945 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1924 cris_npp 991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1925 cris_npp 994 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1926 cris_npp 1007 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1927 cris_npp 1015 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1928 cris_npp 1030 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1929 cris_npp 1094 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1930 cris_npp 1106 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1931 cris_npp 1130 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1932 cris_npp 1132 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1933 cris_npp 1133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1934 cris_npp 1135 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1935 cris_npp 1142 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1936 cris_npp 1147 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1937 cris_npp 1148 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1938 cris_npp 1149 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1939 cris_npp 1150 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1940 cris_npp 1151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1941 cris_npp 1152 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1942 cris_npp 1153 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1943 cris_npp 1154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1944 cris_npp 1155 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1945 cris_npp 1156 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1946 cris_npp 1157 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1947 cris_npp 1158 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1948 cris_npp 1159 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1949 cris_npp 1160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1950 cris_npp 1161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1951 cris_npp 1162 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1952 cris_npp 1163 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1953 cris_npp 1164 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1954 cris_npp 1165 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1955 cris_npp 1166 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1956 cris_npp 1167 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1957 cris_npp 1168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1958 cris_npp 1169 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1959 cris_npp 1170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1960 cris_npp 1171 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1961 cris_npp 1172 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1962 cris_npp 1173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1963 cris_npp 1174 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1964 cris_npp 1175 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1965 cris_npp 1177 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1966 cris_npp 1178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1967 cris_npp 1179 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1968 cris_npp 1180 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1969 cris_npp 1181 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1970 cris_npp 1187 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1971 cris_npp 1189 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1972 cris_npp 1190 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1973 cris_npp 1192 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1974 cris_npp 1193 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1975 cris_npp 1194 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1976 cris_npp 1196 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1977 cris_npp 1197 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1978 cris_npp 1198 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1979 cris_npp 1199 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1980 cris_npp 1200 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1981 cris_npp 1202 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1982 cris_npp 1203 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1983 cris_npp 1204 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1984 cris_npp 1206 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1985 cris_npp 1207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1986 cris_npp 1208 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1987 cris_npp 1210 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1988 cris_npp 1212 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1989 cris_npp 1214 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1990 cris_npp 1215 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1991 cris_npp 1217 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1992 cris_npp 1218 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1993 cris_npp 1220 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1994 cris_npp 1222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1995 cris_npp 1224 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1996 cris_npp 1226 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1997 cris_npp 1228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1998 cris_npp 1229 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 1999 cris_npp 1231 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2000 cris_npp 1232 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2001 cris_npp 1234 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2002 cris_npp 1235 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2003 cris_npp 1236 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2004 cris_npp 1237 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2005 cris_npp 1238 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2006 cris_npp 1239 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2007 cris_npp 1241 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2008 cris_npp 1242 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2009 cris_npp 1243 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2010 cris_npp 1244 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2011 cris_npp 1245 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2012 cris_npp 1247 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2013 cris_npp 1250 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2014 cris_npp 1270 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2015 cris_npp 1271 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2016 cris_npp 1282 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2017 cris_npp 1285 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2018 cris_npp 1288 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2019 cris_npp 1290 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2020 cris_npp 1293 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2021 cris_npp 1298 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2022 cris_npp 1301 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2023 hirs4_metop-b 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2024 hirs4_metop-b 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2025 hirs4_metop-b 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2026 hirs4_metop-b 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2027 hirs4_metop-b 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2028 hirs4_metop-b 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2029 hirs4_metop-b 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2030 hirs4_metop-b 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2031 hirs4_metop-b 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2032 hirs4_metop-b 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2033 hirs4_metop-b 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2034 hirs4_metop-b 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2035 hirs4_metop-b 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2036 hirs4_metop-b 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2037 hirs4_metop-b 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2038 hirs4_metop-b 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2039 hirs4_metop-b 17 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2040 hirs4_metop-b 18 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2041 hirs4_metop-b 19 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2042 amsua_metop-b 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2043 amsua_metop-b 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2044 amsua_metop-b 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2045 amsua_metop-b 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2046 amsua_metop-b 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2047 amsua_metop-b 6 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2048 amsua_metop-b 7 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2049 amsua_metop-b 8 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2050 amsua_metop-b 9 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2051 amsua_metop-b 10 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2052 amsua_metop-b 11 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2053 amsua_metop-b 12 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2054 amsua_metop-b 13 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2055 amsua_metop-b 14 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2056 amsua_metop-b 15 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2057 mhs_metop-b 1 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2058 mhs_metop-b 2 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2059 mhs_metop-b 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2060 mhs_metop-b 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2061 mhs_metop-b 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2062 iasi616_metop-b 16 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2063 iasi616_metop-b 29 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2064 iasi616_metop-b 32 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2065 iasi616_metop-b 35 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2066 iasi616_metop-b 38 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2067 iasi616_metop-b 41 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2068 iasi616_metop-b 44 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2069 iasi616_metop-b 47 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2070 iasi616_metop-b 49 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2071 iasi616_metop-b 50 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2072 iasi616_metop-b 51 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2073 iasi616_metop-b 53 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2074 iasi616_metop-b 55 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2075 iasi616_metop-b 56 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2076 iasi616_metop-b 57 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2077 iasi616_metop-b 59 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2078 iasi616_metop-b 61 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2079 iasi616_metop-b 62 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2080 iasi616_metop-b 63 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2081 iasi616_metop-b 66 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2082 iasi616_metop-b 68 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2083 iasi616_metop-b 70 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2084 iasi616_metop-b 72 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2085 iasi616_metop-b 74 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2086 iasi616_metop-b 76 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2087 iasi616_metop-b 78 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2088 iasi616_metop-b 79 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2089 iasi616_metop-b 81 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2090 iasi616_metop-b 82 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2091 iasi616_metop-b 83 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2092 iasi616_metop-b 84 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2093 iasi616_metop-b 85 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2094 iasi616_metop-b 86 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2095 iasi616_metop-b 87 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2096 iasi616_metop-b 89 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2097 iasi616_metop-b 92 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2098 iasi616_metop-b 93 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2099 iasi616_metop-b 95 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2100 iasi616_metop-b 97 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2101 iasi616_metop-b 99 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2102 iasi616_metop-b 101 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2103 iasi616_metop-b 103 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2104 iasi616_metop-b 104 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2105 iasi616_metop-b 106 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2106 iasi616_metop-b 109 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2107 iasi616_metop-b 110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2108 iasi616_metop-b 111 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2109 iasi616_metop-b 113 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2110 iasi616_metop-b 116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2111 iasi616_metop-b 119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2112 iasi616_metop-b 122 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2113 iasi616_metop-b 125 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2114 iasi616_metop-b 128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2115 iasi616_metop-b 131 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2116 iasi616_metop-b 133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2117 iasi616_metop-b 135 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2118 iasi616_metop-b 138 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2119 iasi616_metop-b 141 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2120 iasi616_metop-b 144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2121 iasi616_metop-b 146 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2122 iasi616_metop-b 148 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2123 iasi616_metop-b 150 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2124 iasi616_metop-b 151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2125 iasi616_metop-b 154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2126 iasi616_metop-b 157 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2127 iasi616_metop-b 159 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2128 iasi616_metop-b 160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2129 iasi616_metop-b 161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2130 iasi616_metop-b 163 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2131 iasi616_metop-b 167 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2132 iasi616_metop-b 170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2133 iasi616_metop-b 173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2134 iasi616_metop-b 176 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2135 iasi616_metop-b 179 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2136 iasi616_metop-b 180 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2137 iasi616_metop-b 185 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2138 iasi616_metop-b 187 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2139 iasi616_metop-b 191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2140 iasi616_metop-b 193 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2141 iasi616_metop-b 197 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2142 iasi616_metop-b 199 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2143 iasi616_metop-b 200 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2144 iasi616_metop-b 202 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2145 iasi616_metop-b 203 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2146 iasi616_metop-b 205 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2147 iasi616_metop-b 207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2148 iasi616_metop-b 210 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2149 iasi616_metop-b 212 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2150 iasi616_metop-b 213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2151 iasi616_metop-b 214 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2152 iasi616_metop-b 217 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2153 iasi616_metop-b 218 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2154 iasi616_metop-b 219 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2155 iasi616_metop-b 222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2156 iasi616_metop-b 224 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2157 iasi616_metop-b 225 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2158 iasi616_metop-b 226 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2159 iasi616_metop-b 228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2160 iasi616_metop-b 230 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2161 iasi616_metop-b 231 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2162 iasi616_metop-b 232 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2163 iasi616_metop-b 236 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2164 iasi616_metop-b 237 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2165 iasi616_metop-b 239 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2166 iasi616_metop-b 243 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2167 iasi616_metop-b 246 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2168 iasi616_metop-b 249 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2169 iasi616_metop-b 252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2170 iasi616_metop-b 254 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2171 iasi616_metop-b 259 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2172 iasi616_metop-b 260 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2173 iasi616_metop-b 262 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2174 iasi616_metop-b 265 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2175 iasi616_metop-b 267 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2176 iasi616_metop-b 269 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2177 iasi616_metop-b 275 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2178 iasi616_metop-b 279 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2179 iasi616_metop-b 282 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2180 iasi616_metop-b 285 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2181 iasi616_metop-b 294 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2182 iasi616_metop-b 296 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2183 iasi616_metop-b 299 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2184 iasi616_metop-b 300 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2185 iasi616_metop-b 303 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2186 iasi616_metop-b 306 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2187 iasi616_metop-b 309 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2188 iasi616_metop-b 313 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2189 iasi616_metop-b 320 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2190 iasi616_metop-b 323 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2191 iasi616_metop-b 326 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2192 iasi616_metop-b 327 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2193 iasi616_metop-b 329 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2194 iasi616_metop-b 332 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2195 iasi616_metop-b 335 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2196 iasi616_metop-b 345 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2197 iasi616_metop-b 347 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2198 iasi616_metop-b 350 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2199 iasi616_metop-b 354 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2200 iasi616_metop-b 356 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2201 iasi616_metop-b 360 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2202 iasi616_metop-b 363 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2203 iasi616_metop-b 366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2204 iasi616_metop-b 371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2205 iasi616_metop-b 372 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2206 iasi616_metop-b 373 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2207 iasi616_metop-b 375 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2208 iasi616_metop-b 377 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2209 iasi616_metop-b 379 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2210 iasi616_metop-b 381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2211 iasi616_metop-b 383 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2212 iasi616_metop-b 386 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2213 iasi616_metop-b 389 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2214 iasi616_metop-b 398 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2215 iasi616_metop-b 401 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2216 iasi616_metop-b 404 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2217 iasi616_metop-b 405 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2218 iasi616_metop-b 407 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2219 iasi616_metop-b 408 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2220 iasi616_metop-b 410 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2221 iasi616_metop-b 411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2222 iasi616_metop-b 414 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2223 iasi616_metop-b 416 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2224 iasi616_metop-b 418 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2225 iasi616_metop-b 423 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2226 iasi616_metop-b 426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2227 iasi616_metop-b 428 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2228 iasi616_metop-b 432 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2229 iasi616_metop-b 433 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2230 iasi616_metop-b 434 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2231 iasi616_metop-b 439 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2232 iasi616_metop-b 442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2233 iasi616_metop-b 445 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2234 iasi616_metop-b 450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2235 iasi616_metop-b 457 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2236 iasi616_metop-b 459 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2237 iasi616_metop-b 472 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2238 iasi616_metop-b 477 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2239 iasi616_metop-b 483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2240 iasi616_metop-b 509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2241 iasi616_metop-b 515 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2242 iasi616_metop-b 546 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2243 iasi616_metop-b 552 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2244 iasi616_metop-b 559 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2245 iasi616_metop-b 566 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2246 iasi616_metop-b 571 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2247 iasi616_metop-b 573 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2248 iasi616_metop-b 578 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2249 iasi616_metop-b 584 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2250 iasi616_metop-b 594 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2251 iasi616_metop-b 625 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2252 iasi616_metop-b 646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2253 iasi616_metop-b 662 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2254 iasi616_metop-b 668 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2255 iasi616_metop-b 705 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2256 iasi616_metop-b 739 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2257 iasi616_metop-b 756 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2258 iasi616_metop-b 797 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2259 iasi616_metop-b 867 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2260 iasi616_metop-b 906 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2261 iasi616_metop-b 921 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2262 iasi616_metop-b 1027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2263 iasi616_metop-b 1046 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2264 iasi616_metop-b 1090 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2265 iasi616_metop-b 1098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2266 iasi616_metop-b 1121 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2267 iasi616_metop-b 1133 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2268 iasi616_metop-b 1173 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2269 iasi616_metop-b 1191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2270 iasi616_metop-b 1194 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2271 iasi616_metop-b 1222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2272 iasi616_metop-b 1271 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2273 iasi616_metop-b 1283 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2274 iasi616_metop-b 1338 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2275 iasi616_metop-b 1409 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2276 iasi616_metop-b 1414 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2277 iasi616_metop-b 1420 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2278 iasi616_metop-b 1424 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2279 iasi616_metop-b 1427 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2280 iasi616_metop-b 1430 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2281 iasi616_metop-b 1434 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2282 iasi616_metop-b 1440 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2283 iasi616_metop-b 1442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2284 iasi616_metop-b 1445 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2285 iasi616_metop-b 1450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2286 iasi616_metop-b 1454 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2287 iasi616_metop-b 1460 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2288 iasi616_metop-b 1463 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2289 iasi616_metop-b 1469 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2290 iasi616_metop-b 1474 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2291 iasi616_metop-b 1479 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2292 iasi616_metop-b 1483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2293 iasi616_metop-b 1487 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2294 iasi616_metop-b 1494 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2295 iasi616_metop-b 1496 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2296 iasi616_metop-b 1502 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2297 iasi616_metop-b 1505 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2298 iasi616_metop-b 1509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2299 iasi616_metop-b 1510 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2300 iasi616_metop-b 1513 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2301 iasi616_metop-b 1518 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2302 iasi616_metop-b 1521 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2303 iasi616_metop-b 1526 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2304 iasi616_metop-b 1529 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2305 iasi616_metop-b 1532 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2306 iasi616_metop-b 1536 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2307 iasi616_metop-b 1537 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2308 iasi616_metop-b 1541 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2309 iasi616_metop-b 1545 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2310 iasi616_metop-b 1548 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2311 iasi616_metop-b 1553 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2312 iasi616_metop-b 1560 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2313 iasi616_metop-b 1568 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2314 iasi616_metop-b 1574 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2315 iasi616_metop-b 1579 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2316 iasi616_metop-b 1583 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2317 iasi616_metop-b 1585 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2318 iasi616_metop-b 1587 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2319 iasi616_metop-b 1606 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2320 iasi616_metop-b 1626 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2321 iasi616_metop-b 1639 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2322 iasi616_metop-b 1643 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2323 iasi616_metop-b 1652 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2324 iasi616_metop-b 1658 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2325 iasi616_metop-b 1659 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2326 iasi616_metop-b 1666 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2327 iasi616_metop-b 1671 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2328 iasi616_metop-b 1675 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2329 iasi616_metop-b 1681 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2330 iasi616_metop-b 1694 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2331 iasi616_metop-b 1697 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2332 iasi616_metop-b 1710 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2333 iasi616_metop-b 1786 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2334 iasi616_metop-b 1791 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2335 iasi616_metop-b 1805 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2336 iasi616_metop-b 1839 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2337 iasi616_metop-b 1884 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2338 iasi616_metop-b 1913 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2339 iasi616_metop-b 1946 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2340 iasi616_metop-b 1947 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2341 iasi616_metop-b 1991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2342 iasi616_metop-b 2019 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2343 iasi616_metop-b 2094 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2344 iasi616_metop-b 2119 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2345 iasi616_metop-b 2213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2346 iasi616_metop-b 2239 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2347 iasi616_metop-b 2271 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2348 iasi616_metop-b 2289 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2349 iasi616_metop-b 2321 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2350 iasi616_metop-b 2333 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2351 iasi616_metop-b 2346 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2352 iasi616_metop-b 2349 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2353 iasi616_metop-b 2352 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2354 iasi616_metop-b 2359 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2355 iasi616_metop-b 2367 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2356 iasi616_metop-b 2374 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2357 iasi616_metop-b 2398 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2358 iasi616_metop-b 2426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2359 iasi616_metop-b 2562 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2360 iasi616_metop-b 2701 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2361 iasi616_metop-b 2741 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2362 iasi616_metop-b 2745 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2363 iasi616_metop-b 2760 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2364 iasi616_metop-b 2819 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2365 iasi616_metop-b 2889 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2366 iasi616_metop-b 2907 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2367 iasi616_metop-b 2910 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2368 iasi616_metop-b 2919 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2369 iasi616_metop-b 2921 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2370 iasi616_metop-b 2939 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2371 iasi616_metop-b 2944 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2372 iasi616_metop-b 2945 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2373 iasi616_metop-b 2948 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2374 iasi616_metop-b 2951 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2375 iasi616_metop-b 2958 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2376 iasi616_metop-b 2971 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2377 iasi616_metop-b 2977 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2378 iasi616_metop-b 2985 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2379 iasi616_metop-b 2988 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2380 iasi616_metop-b 2990 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2381 iasi616_metop-b 2991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2382 iasi616_metop-b 2993 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2383 iasi616_metop-b 3002 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2384 iasi616_metop-b 3008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2385 iasi616_metop-b 3014 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2386 iasi616_metop-b 3027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2387 iasi616_metop-b 3029 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2388 iasi616_metop-b 3030 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2389 iasi616_metop-b 3036 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2390 iasi616_metop-b 3047 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2391 iasi616_metop-b 3049 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2392 iasi616_metop-b 3052 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2393 iasi616_metop-b 3053 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2394 iasi616_metop-b 3055 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2395 iasi616_metop-b 3058 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2396 iasi616_metop-b 3064 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2397 iasi616_metop-b 3069 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2398 iasi616_metop-b 3087 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2399 iasi616_metop-b 3093 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2400 iasi616_metop-b 3098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2401 iasi616_metop-b 3105 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2402 iasi616_metop-b 3107 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2403 iasi616_metop-b 3110 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2404 iasi616_metop-b 3116 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2405 iasi616_metop-b 3127 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2406 iasi616_metop-b 3129 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2407 iasi616_metop-b 3136 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2408 iasi616_metop-b 3146 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2409 iasi616_metop-b 3151 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2410 iasi616_metop-b 3160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2411 iasi616_metop-b 3165 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2412 iasi616_metop-b 3168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2413 iasi616_metop-b 3175 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2414 iasi616_metop-b 3178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2415 iasi616_metop-b 3189 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2416 iasi616_metop-b 3207 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2417 iasi616_metop-b 3228 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2418 iasi616_metop-b 3244 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2419 iasi616_metop-b 3248 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2420 iasi616_metop-b 3252 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2421 iasi616_metop-b 3256 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2422 iasi616_metop-b 3263 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2423 iasi616_metop-b 3281 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2424 iasi616_metop-b 3295 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2425 iasi616_metop-b 3303 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2426 iasi616_metop-b 3309 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2427 iasi616_metop-b 3312 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2428 iasi616_metop-b 3322 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2429 iasi616_metop-b 3326 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2430 iasi616_metop-b 3354 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2431 iasi616_metop-b 3366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2432 iasi616_metop-b 3375 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2433 iasi616_metop-b 3378 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2434 iasi616_metop-b 3411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2435 iasi616_metop-b 3416 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2436 iasi616_metop-b 3432 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2437 iasi616_metop-b 3438 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2438 iasi616_metop-b 3440 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2439 iasi616_metop-b 3442 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2440 iasi616_metop-b 3444 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2441 iasi616_metop-b 3446 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2442 iasi616_metop-b 3448 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2443 iasi616_metop-b 3450 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2444 iasi616_metop-b 3452 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2445 iasi616_metop-b 3454 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2446 iasi616_metop-b 3458 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2447 iasi616_metop-b 3467 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2448 iasi616_metop-b 3476 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2449 iasi616_metop-b 3484 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2450 iasi616_metop-b 3491 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2451 iasi616_metop-b 3497 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2452 iasi616_metop-b 3499 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2453 iasi616_metop-b 3504 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2454 iasi616_metop-b 3506 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2455 iasi616_metop-b 3509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2456 iasi616_metop-b 3518 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2457 iasi616_metop-b 3527 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2458 iasi616_metop-b 3555 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2459 iasi616_metop-b 3575 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2460 iasi616_metop-b 3577 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2461 iasi616_metop-b 3580 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2462 iasi616_metop-b 3582 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2463 iasi616_metop-b 3586 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2464 iasi616_metop-b 3589 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2465 iasi616_metop-b 3599 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2466 iasi616_metop-b 3610 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2467 iasi616_metop-b 3626 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2468 iasi616_metop-b 3638 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2469 iasi616_metop-b 3646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2470 iasi616_metop-b 3653 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2471 iasi616_metop-b 3658 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2472 iasi616_metop-b 3661 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2473 iasi616_metop-b 3673 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2474 iasi616_metop-b 3689 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2475 iasi616_metop-b 3700 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2476 iasi616_metop-b 3710 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2477 iasi616_metop-b 3726 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2478 iasi616_metop-b 3763 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2479 iasi616_metop-b 3814 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2480 iasi616_metop-b 3841 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2481 iasi616_metop-b 3888 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2482 iasi616_metop-b 4032 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2483 iasi616_metop-b 4059 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2484 iasi616_metop-b 4068 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2485 iasi616_metop-b 4082 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2486 iasi616_metop-b 4095 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2487 iasi616_metop-b 4160 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2488 iasi616_metop-b 4234 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2489 iasi616_metop-b 4257 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2490 iasi616_metop-b 4411 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2491 iasi616_metop-b 4498 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2492 iasi616_metop-b 4520 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2493 iasi616_metop-b 4552 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2494 iasi616_metop-b 4567 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2495 iasi616_metop-b 4608 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2496 iasi616_metop-b 4646 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2497 iasi616_metop-b 4698 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2498 iasi616_metop-b 4808 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2499 iasi616_metop-b 4849 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2500 iasi616_metop-b 4920 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2501 iasi616_metop-b 4939 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2502 iasi616_metop-b 4947 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2503 iasi616_metop-b 4967 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2504 iasi616_metop-b 4991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2505 iasi616_metop-b 4996 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2506 iasi616_metop-b 5015 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2507 iasi616_metop-b 5028 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2508 iasi616_metop-b 5056 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2509 iasi616_metop-b 5128 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2510 iasi616_metop-b 5130 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2511 iasi616_metop-b 5144 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2512 iasi616_metop-b 5170 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2513 iasi616_metop-b 5178 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2514 iasi616_metop-b 5183 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2515 iasi616_metop-b 5188 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2516 iasi616_metop-b 5191 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2517 iasi616_metop-b 5368 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2518 iasi616_metop-b 5371 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2519 iasi616_metop-b 5379 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2520 iasi616_metop-b 5381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2521 iasi616_metop-b 5383 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2522 iasi616_metop-b 5397 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2523 iasi616_metop-b 5399 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2524 iasi616_metop-b 5401 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2525 iasi616_metop-b 5403 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2526 iasi616_metop-b 5405 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2527 iasi616_metop-b 5446 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2528 iasi616_metop-b 5455 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2529 iasi616_metop-b 5472 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2530 iasi616_metop-b 5480 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2531 iasi616_metop-b 5483 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2532 iasi616_metop-b 5485 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2533 iasi616_metop-b 5492 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2534 iasi616_metop-b 5497 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2535 iasi616_metop-b 5502 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2536 iasi616_metop-b 5507 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2537 iasi616_metop-b 5509 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2538 iasi616_metop-b 5517 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2539 iasi616_metop-b 5528 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2540 iasi616_metop-b 5558 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2541 iasi616_metop-b 5697 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2542 iasi616_metop-b 5714 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2543 iasi616_metop-b 5749 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2544 iasi616_metop-b 5766 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2545 iasi616_metop-b 5785 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2546 iasi616_metop-b 5798 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2547 iasi616_metop-b 5799 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2548 iasi616_metop-b 5801 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2549 iasi616_metop-b 5817 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2550 iasi616_metop-b 5833 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2551 iasi616_metop-b 5834 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2552 iasi616_metop-b 5836 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2553 iasi616_metop-b 5849 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2554 iasi616_metop-b 5851 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2555 iasi616_metop-b 5852 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2556 iasi616_metop-b 5865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2557 iasi616_metop-b 5869 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2558 iasi616_metop-b 5881 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2559 iasi616_metop-b 5884 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2560 iasi616_metop-b 5897 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2561 iasi616_metop-b 5900 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2562 iasi616_metop-b 5916 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2563 iasi616_metop-b 5932 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2564 iasi616_metop-b 5948 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2565 iasi616_metop-b 5963 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2566 iasi616_metop-b 5968 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2567 iasi616_metop-b 5978 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2568 iasi616_metop-b 5988 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2569 iasi616_metop-b 5992 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2570 iasi616_metop-b 5994 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2571 iasi616_metop-b 5997 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2572 iasi616_metop-b 6003 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2573 iasi616_metop-b 6008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2574 iasi616_metop-b 6023 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2575 iasi616_metop-b 6026 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2576 iasi616_metop-b 6039 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2577 iasi616_metop-b 6053 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2578 iasi616_metop-b 6056 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2579 iasi616_metop-b 6067 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2580 iasi616_metop-b 6071 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2581 iasi616_metop-b 6082 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2582 iasi616_metop-b 6085 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2583 iasi616_metop-b 6098 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2584 iasi616_metop-b 6112 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2585 iasi616_metop-b 6126 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2586 iasi616_metop-b 6135 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2587 iasi616_metop-b 6140 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2588 iasi616_metop-b 6149 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2589 iasi616_metop-b 6154 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2590 iasi616_metop-b 6158 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2591 iasi616_metop-b 6161 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2592 iasi616_metop-b 6168 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2593 iasi616_metop-b 6174 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2594 iasi616_metop-b 6182 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2595 iasi616_metop-b 6187 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2596 iasi616_metop-b 6205 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2597 iasi616_metop-b 6209 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2598 iasi616_metop-b 6213 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2599 iasi616_metop-b 6317 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2600 iasi616_metop-b 6339 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2601 iasi616_metop-b 6342 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2602 iasi616_metop-b 6366 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2603 iasi616_metop-b 6381 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2604 iasi616_metop-b 6391 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2605 iasi616_metop-b 6489 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2606 iasi616_metop-b 6962 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2607 iasi616_metop-b 6966 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2608 iasi616_metop-b 6970 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2609 iasi616_metop-b 6975 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2610 iasi616_metop-b 6977 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2611 iasi616_metop-b 6982 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2612 iasi616_metop-b 6985 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2613 iasi616_metop-b 6987 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2614 iasi616_metop-b 6989 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2615 iasi616_metop-b 6991 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2616 iasi616_metop-b 6993 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2617 iasi616_metop-b 6995 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2618 iasi616_metop-b 6997 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2619 iasi616_metop-b 6999 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2620 iasi616_metop-b 7000 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2621 iasi616_metop-b 7004 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2622 iasi616_metop-b 7008 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2623 iasi616_metop-b 7013 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2624 iasi616_metop-b 7016 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2625 iasi616_metop-b 7021 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2626 iasi616_metop-b 7024 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2627 iasi616_metop-b 7027 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2628 iasi616_metop-b 7029 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2629 iasi616_metop-b 7032 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2630 iasi616_metop-b 7038 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2631 iasi616_metop-b 7043 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2632 iasi616_metop-b 7046 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2633 iasi616_metop-b 7049 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2634 iasi616_metop-b 7069 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2635 iasi616_metop-b 7072 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2636 iasi616_metop-b 7076 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2637 iasi616_metop-b 7081 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2638 iasi616_metop-b 7084 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2639 iasi616_metop-b 7089 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2640 iasi616_metop-b 7099 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2641 iasi616_metop-b 7209 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2642 iasi616_metop-b 7222 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2643 iasi616_metop-b 7231 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2644 iasi616_metop-b 7235 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2645 iasi616_metop-b 7247 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2646 iasi616_metop-b 7267 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2647 iasi616_metop-b 7269 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2648 iasi616_metop-b 7284 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2649 iasi616_metop-b 7389 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2650 iasi616_metop-b 7419 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2651 iasi616_metop-b 7423 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2652 iasi616_metop-b 7424 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2653 iasi616_metop-b 7426 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2654 iasi616_metop-b 7428 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2655 iasi616_metop-b 7431 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2656 iasi616_metop-b 7436 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2657 iasi616_metop-b 7444 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2658 iasi616_metop-b 7475 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2659 iasi616_metop-b 7549 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2660 iasi616_metop-b 7584 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2661 iasi616_metop-b 7665 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2662 iasi616_metop-b 7666 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2663 iasi616_metop-b 7831 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2664 iasi616_metop-b 7836 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2665 iasi616_metop-b 7853 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2666 iasi616_metop-b 7865 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2667 iasi616_metop-b 7885 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2668 iasi616_metop-b 7888 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2669 iasi616_metop-b 7912 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2670 iasi616_metop-b 7950 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2671 iasi616_metop-b 7972 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2672 iasi616_metop-b 7980 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2673 iasi616_metop-b 7995 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2674 iasi616_metop-b 8007 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2675 iasi616_metop-b 8015 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2676 iasi616_metop-b 8055 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2677 iasi616_metop-b 8078 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2678 avhrr3_metop-b 3 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2679 avhrr3_metop-b 4 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 + 2680 avhrr3_metop-b 5 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 0.0000000E+00 + 0.0000000E+00 0.0000000E+00 diff --git a/fix/gsi/rap_satbias_starting_file.txt b/fix/gsi/rap_satbias_starting_file.txt new file mode 100755 index 000000000..a398d2c90 --- /dev/null +++ b/fix/gsi/rap_satbias_starting_file.txt @@ -0,0 +1,8040 @@ + 1 amsua_n15 1 0.527383E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2 amsua_n15 2 0.286960E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 3 amsua_n15 3 0.173912E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 4 amsua_n15 4 0.389330E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 5 amsua_n15 5 0.491933E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 6 amsua_n15 6 0.508074E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 7 amsua_n15 7 0.402290E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 8 amsua_n15 8 0.244097E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 9 amsua_n15 9 -0.140342E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 10 amsua_n15 10 -0.286254E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 11 amsua_n15 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 12 amsua_n15 12 -0.531877E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 13 amsua_n15 13 -0.634174E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 14 amsua_n15 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 15 amsua_n15 15 0.890694E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 16 hirs3_n17 1 -0.359453E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 17 hirs3_n17 2 -0.290676E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 18 hirs3_n17 3 -0.881531E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 19 hirs3_n17 4 0.264398E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 20 hirs3_n17 5 0.428292E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 21 hirs3_n17 6 0.479017E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 22 hirs3_n17 7 0.416186E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 23 hirs3_n17 8 0.100197E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 24 hirs3_n17 9 -0.937361E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 25 hirs3_n17 10 0.213699E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 26 hirs3_n17 11 0.633906E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 27 hirs3_n17 12 0.722832E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 28 hirs3_n17 13 0.341630E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 29 hirs3_n17 14 0.453386E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 30 hirs3_n17 15 0.436470E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 31 hirs3_n17 16 0.417113E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 32 hirs3_n17 17 0.254029E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 33 hirs3_n17 18 0.572089E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 34 hirs3_n17 19 0.531887E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 35 amsub_n17 1 0.844199E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 36 amsub_n17 2 0.159712E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 37 amsub_n17 3 0.776377E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 38 amsub_n17 4 0.578324E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 39 amsub_n17 5 0.369827E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 40 amsua_n18 1 0.537009E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 41 amsua_n18 2 0.290273E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 42 amsua_n18 3 0.175301E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 43 amsua_n18 4 0.392055E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 44 amsua_n18 5 0.494434E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 45 amsua_n18 6 0.507418E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 46 amsua_n18 7 0.399941E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 47 amsua_n18 8 0.242274E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 48 amsua_n18 9 -0.146752E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 49 amsua_n18 10 -0.293858E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 50 amsua_n18 11 -0.392182E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 51 amsua_n18 12 -0.548824E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 52 amsua_n18 13 -0.640085E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 53 amsua_n18 14 -0.294783E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 54 amsua_n18 15 0.899411E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 55 mhs_n18 1 0.938139E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 56 mhs_n18 2 0.194513E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 57 mhs_n18 3 0.808894E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 58 mhs_n18 4 0.597409E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 59 mhs_n18 5 0.404847E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 60 hirs4_metop-a 1 -0.363293E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 61 hirs4_metop-a 2 -0.331565E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 62 hirs4_metop-a 3 -0.141042E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 63 hirs4_metop-a 4 0.266240E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 64 hirs4_metop-a 5 0.351546E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 65 hirs4_metop-a 6 0.452292E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 66 hirs4_metop-a 7 0.405194E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 67 hirs4_metop-a 8 0.116534E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 68 hirs4_metop-a 9 -0.919221E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 69 hirs4_metop-a 10 0.234485E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 70 hirs4_metop-a 11 0.607579E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 71 hirs4_metop-a 12 0.782379E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 72 hirs4_metop-a 13 0.386500E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 73 hirs4_metop-a 14 0.452633E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 74 hirs4_metop-a 15 0.417087E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 75 hirs4_metop-a 16 0.395908E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 76 hirs4_metop-a 17 0.243839E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 77 hirs4_metop-a 18 0.560669E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 78 hirs4_metop-a 19 0.635901E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 79 amsua_metop-a 1 0.500963E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 80 amsua_metop-a 2 0.247792E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 81 amsua_metop-a 3 0.144873E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 82 amsua_metop-a 4 0.344140E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 83 amsua_metop-a 5 0.468512E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 84 amsua_metop-a 6 0.480031E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 85 amsua_metop-a 7 0.138080E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 86 amsua_metop-a 8 0.225851E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 87 amsua_metop-a 9 -0.107070E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 88 amsua_metop-a 10 -0.293213E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 89 amsua_metop-a 11 -0.399121E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 90 amsua_metop-a 12 -0.534973E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 91 amsua_metop-a 13 -0.606717E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 92 amsua_metop-a 14 -0.282555E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 93 amsua_metop-a 15 0.800398E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 94 mhs_metop-a 1 0.975770E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 95 mhs_metop-a 2 0.202975E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 96 mhs_metop-a 3 0.806707E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 97 mhs_metop-a 4 0.608214E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 98 mhs_metop-a 5 0.413922E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 99 iasi616_metop-a 16 -0.500422E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 100 iasi616_metop-a 29 -0.438003E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 101 iasi616_metop-a 32 -0.173864E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 102 iasi616_metop-a 35 -0.446177E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 103 iasi616_metop-a 38 -0.214636E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 104 iasi616_metop-a 41 -0.450784E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 105 iasi616_metop-a 44 -0.246964E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 106 iasi616_metop-a 47 -0.450973E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 107 iasi616_metop-a 49 -0.347309E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 108 iasi616_metop-a 50 -0.261093E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 109 iasi616_metop-a 51 -0.236601E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 110 iasi616_metop-a 53 -0.449411E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 111 iasi616_metop-a 55 -0.340967E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 112 iasi616_metop-a 56 -0.251305E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 113 iasi616_metop-a 57 -0.219615E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 114 iasi616_metop-a 59 -0.438890E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 115 iasi616_metop-a 61 -0.357213E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 116 iasi616_metop-a 62 -0.274660E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 117 iasi616_metop-a 63 -0.218157E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 118 iasi616_metop-a 66 -0.428886E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 119 iasi616_metop-a 68 -0.268126E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 120 iasi616_metop-a 70 -0.318266E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 121 iasi616_metop-a 72 -0.501544E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 122 iasi616_metop-a 74 -0.389759E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 123 iasi616_metop-a 76 -0.301293E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 124 iasi616_metop-a 78 -0.417207E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 125 iasi616_metop-a 79 -0.393528E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 126 iasi616_metop-a 81 -0.386647E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 127 iasi616_metop-a 82 -0.351006E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 128 iasi616_metop-a 83 -0.345812E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 129 iasi616_metop-a 84 -0.381289E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 130 iasi616_metop-a 85 -0.361150E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 131 iasi616_metop-a 86 -0.308101E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 132 iasi616_metop-a 87 -0.339761E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 133 iasi616_metop-a 89 -0.430311E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 134 iasi616_metop-a 92 -0.274664E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 135 iasi616_metop-a 93 -0.177891E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 136 iasi616_metop-a 95 -0.428300E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 137 iasi616_metop-a 97 -0.452885E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 138 iasi616_metop-a 99 -0.471207E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 139 iasi616_metop-a 101 -0.391089E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 140 iasi616_metop-a 103 -0.304740E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 141 iasi616_metop-a 104 -0.321863E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 142 iasi616_metop-a 106 -0.450571E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 143 iasi616_metop-a 109 -0.239495E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 144 iasi616_metop-a 110 -0.255374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 145 iasi616_metop-a 111 -0.361293E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 146 iasi616_metop-a 113 -0.463149E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 147 iasi616_metop-a 116 -0.249179E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 148 iasi616_metop-a 119 -0.472538E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 149 iasi616_metop-a 122 -0.240515E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 150 iasi616_metop-a 125 -0.482278E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 151 iasi616_metop-a 128 -0.239463E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 152 iasi616_metop-a 131 -0.454633E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 153 iasi616_metop-a 133 -0.353043E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 154 iasi616_metop-a 135 -0.239054E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 155 iasi616_metop-a 138 -0.482012E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 156 iasi616_metop-a 141 -0.214037E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 157 iasi616_metop-a 144 -0.469818E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 158 iasi616_metop-a 146 -0.301926E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 159 iasi616_metop-a 148 -0.229549E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 160 iasi616_metop-a 150 -0.452760E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 161 iasi616_metop-a 151 -0.430965E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 162 iasi616_metop-a 154 -0.181852E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 163 iasi616_metop-a 157 -0.454299E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 164 iasi616_metop-a 159 -0.228027E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 165 iasi616_metop-a 160 -0.143869E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 166 iasi616_metop-a 161 -0.177818E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 167 iasi616_metop-a 163 -0.431011E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 168 iasi616_metop-a 167 -0.959041E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 169 iasi616_metop-a 170 -0.413451E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 170 iasi616_metop-a 173 -0.239383E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 171 iasi616_metop-a 176 -0.387710E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 172 iasi616_metop-a 179 -0.147205E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 173 iasi616_metop-a 180 0.461873E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 174 iasi616_metop-a 185 0.305124E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 175 iasi616_metop-a 187 0.183190E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 176 iasi616_metop-a 191 -0.293176E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 177 iasi616_metop-a 193 0.150670E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 178 iasi616_metop-a 197 -0.774721E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 179 iasi616_metop-a 199 0.268837E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 180 iasi616_metop-a 200 0.123615E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 181 iasi616_metop-a 202 -0.274044E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 182 iasi616_metop-a 203 -0.124087E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 183 iasi616_metop-a 205 0.321786E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 184 iasi616_metop-a 207 0.736247E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 185 iasi616_metop-a 210 0.113903E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 186 iasi616_metop-a 212 0.355816E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 187 iasi616_metop-a 213 0.263304E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 188 iasi616_metop-a 214 0.191176E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 189 iasi616_metop-a 217 0.295816E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 190 iasi616_metop-a 218 0.403675E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 191 iasi616_metop-a 219 0.362445E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 192 iasi616_metop-a 222 0.664652E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 193 iasi616_metop-a 224 0.385012E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 194 iasi616_metop-a 225 0.399539E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 195 iasi616_metop-a 226 0.382477E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 196 iasi616_metop-a 228 0.668715E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 197 iasi616_metop-a 230 0.409139E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 198 iasi616_metop-a 231 0.384095E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 199 iasi616_metop-a 232 0.402011E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 200 iasi616_metop-a 236 0.451038E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 201 iasi616_metop-a 237 0.444542E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 202 iasi616_metop-a 239 0.467431E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 203 iasi616_metop-a 243 0.505578E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 204 iasi616_metop-a 246 0.483696E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 205 iasi616_metop-a 249 0.515906E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 206 iasi616_metop-a 252 0.527887E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 207 iasi616_metop-a 254 0.346316E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 208 iasi616_metop-a 259 0.518161E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 209 iasi616_metop-a 260 0.412344E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 210 iasi616_metop-a 262 0.508054E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 211 iasi616_metop-a 265 0.540686E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 212 iasi616_metop-a 267 0.426202E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 213 iasi616_metop-a 269 0.422237E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 214 iasi616_metop-a 275 0.507622E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 215 iasi616_metop-a 279 0.506066E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 216 iasi616_metop-a 282 0.408809E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 217 iasi616_metop-a 285 0.474150E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 218 iasi616_metop-a 294 0.456847E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 219 iasi616_metop-a 296 0.412916E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 220 iasi616_metop-a 299 0.156678E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 221 iasi616_metop-a 300 -0.283684E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 222 iasi616_metop-a 303 -0.300546E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 223 iasi616_metop-a 306 0.420299E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 224 iasi616_metop-a 309 0.497881E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 225 iasi616_metop-a 313 0.381142E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 226 iasi616_metop-a 320 0.444936E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 227 iasi616_metop-a 323 0.407200E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 228 iasi616_metop-a 326 0.439901E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 229 iasi616_metop-a 327 0.478401E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 230 iasi616_metop-a 329 0.415971E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 231 iasi616_metop-a 332 0.438610E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 232 iasi616_metop-a 335 0.394554E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 233 iasi616_metop-a 345 0.572378E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 234 iasi616_metop-a 347 0.432020E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 235 iasi616_metop-a 350 0.486376E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 236 iasi616_metop-a 354 0.416615E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 237 iasi616_metop-a 356 0.487958E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 238 iasi616_metop-a 360 0.397856E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 239 iasi616_metop-a 363 0.444858E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 240 iasi616_metop-a 366 0.401563E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 241 iasi616_metop-a 371 0.479039E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 242 iasi616_metop-a 372 0.441083E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 243 iasi616_metop-a 373 0.479355E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 244 iasi616_metop-a 375 0.458885E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 245 iasi616_metop-a 377 0.482571E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 246 iasi616_metop-a 379 0.474095E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 247 iasi616_metop-a 381 0.482962E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 248 iasi616_metop-a 383 0.555051E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 249 iasi616_metop-a 386 0.512085E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 250 iasi616_metop-a 389 0.476467E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 251 iasi616_metop-a 398 0.479549E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 252 iasi616_metop-a 401 0.513780E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 253 iasi616_metop-a 404 0.383820E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 254 iasi616_metop-a 405 0.310566E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 255 iasi616_metop-a 407 0.406181E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 256 iasi616_metop-a 408 0.478074E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 257 iasi616_metop-a 410 0.374649E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 258 iasi616_metop-a 411 0.304372E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 259 iasi616_metop-a 414 0.482796E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 260 iasi616_metop-a 416 0.379829E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 261 iasi616_metop-a 418 0.291381E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 262 iasi616_metop-a 423 0.238561E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 263 iasi616_metop-a 426 0.460034E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 264 iasi616_metop-a 428 0.342538E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 265 iasi616_metop-a 432 0.459939E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 266 iasi616_metop-a 433 0.428413E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 267 iasi616_metop-a 434 0.327610E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 268 iasi616_metop-a 439 0.523289E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 269 iasi616_metop-a 442 0.256481E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 270 iasi616_metop-a 445 0.422207E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 271 iasi616_metop-a 450 0.389366E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 272 iasi616_metop-a 457 0.335613E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 273 iasi616_metop-a 459 0.182361E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 274 iasi616_metop-a 472 0.166513E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 275 iasi616_metop-a 477 0.150156E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 276 iasi616_metop-a 483 0.149422E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 277 iasi616_metop-a 509 0.154469E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 278 iasi616_metop-a 515 0.145469E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 279 iasi616_metop-a 546 0.136795E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 280 iasi616_metop-a 552 0.143507E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 281 iasi616_metop-a 559 0.450440E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 282 iasi616_metop-a 566 0.140571E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 283 iasi616_metop-a 571 0.137027E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 284 iasi616_metop-a 573 0.136856E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 285 iasi616_metop-a 578 0.130083E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 286 iasi616_metop-a 584 0.135320E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 287 iasi616_metop-a 594 0.177861E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 288 iasi616_metop-a 625 0.135497E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 289 iasi616_metop-a 646 0.176597E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 290 iasi616_metop-a 662 0.122472E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 291 iasi616_metop-a 668 0.121089E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 292 iasi616_metop-a 705 0.115466E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 293 iasi616_metop-a 739 0.115071E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 294 iasi616_metop-a 756 0.109067E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 295 iasi616_metop-a 797 0.105617E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 296 iasi616_metop-a 867 0.996116E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 297 iasi616_metop-a 906 0.256123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 298 iasi616_metop-a 921 0.949357E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 299 iasi616_metop-a 1027 0.869385E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 300 iasi616_metop-a 1046 0.145171E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 301 iasi616_metop-a 1090 0.848727E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 302 iasi616_metop-a 1098 0.843565E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 303 iasi616_metop-a 1121 0.201468E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 304 iasi616_metop-a 1133 0.799353E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 305 iasi616_metop-a 1173 0.805372E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 306 iasi616_metop-a 1191 0.110981E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 307 iasi616_metop-a 1194 0.767616E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 308 iasi616_metop-a 1222 0.761188E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 309 iasi616_metop-a 1271 0.696758E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 310 iasi616_metop-a 1283 0.757786E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 311 iasi616_metop-a 1338 0.684066E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 312 iasi616_metop-a 1409 0.108199E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 313 iasi616_metop-a 1414 0.836158E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 314 iasi616_metop-a 1420 0.338631E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 315 iasi616_metop-a 1424 0.656464E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 316 iasi616_metop-a 1427 0.229579E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 317 iasi616_metop-a 1430 -0.121224E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 318 iasi616_metop-a 1434 -0.512069E-02 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 319 iasi616_metop-a 1440 -0.146047E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 320 iasi616_metop-a 1442 -0.507529E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 321 iasi616_metop-a 1445 -0.207183E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 322 iasi616_metop-a 1450 -0.373454E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 323 iasi616_metop-a 1454 -0.222086E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 324 iasi616_metop-a 1460 -0.523334E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 325 iasi616_metop-a 1463 0.314314E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 326 iasi616_metop-a 1469 -0.639141E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 327 iasi616_metop-a 1474 -0.500187E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 328 iasi616_metop-a 1479 0.880154E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 329 iasi616_metop-a 1483 -0.604441E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 330 iasi616_metop-a 1487 -0.716932E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 331 iasi616_metop-a 1494 -0.568385E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 332 iasi616_metop-a 1496 -0.878889E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 333 iasi616_metop-a 1502 -0.867696E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 334 iasi616_metop-a 1505 -0.865249E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 335 iasi616_metop-a 1509 -0.677437E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 336 iasi616_metop-a 1510 -0.825845E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 337 iasi616_metop-a 1513 -0.914590E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 338 iasi616_metop-a 1518 -0.988658E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 339 iasi616_metop-a 1521 -0.900807E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 340 iasi616_metop-a 1526 -0.877715E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 341 iasi616_metop-a 1529 -0.104733E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 342 iasi616_metop-a 1532 -0.682354E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 343 iasi616_metop-a 1536 -0.547469E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 344 iasi616_metop-a 1537 -0.970302E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 345 iasi616_metop-a 1541 -0.665930E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 346 iasi616_metop-a 1545 -0.124925E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 347 iasi616_metop-a 1548 -0.826041E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 348 iasi616_metop-a 1553 -0.145030E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 349 iasi616_metop-a 1560 -0.203026E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 350 iasi616_metop-a 1568 -0.181053E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 351 iasi616_metop-a 1574 -0.178269E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 352 iasi616_metop-a 1579 -0.198293E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 353 iasi616_metop-a 1583 -0.208950E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 354 iasi616_metop-a 1585 -0.189388E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 355 iasi616_metop-a 1587 -0.187366E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 356 iasi616_metop-a 1606 -0.918278E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 357 iasi616_metop-a 1626 -0.830492E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 358 iasi616_metop-a 1639 -0.116922E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 359 iasi616_metop-a 1643 -0.222870E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 360 iasi616_metop-a 1652 -0.109452E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 361 iasi616_metop-a 1658 -0.105231E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 362 iasi616_metop-a 1659 -0.114092E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 363 iasi616_metop-a 1666 -0.110218E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 364 iasi616_metop-a 1671 -0.101943E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 365 iasi616_metop-a 1675 -0.997051E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 366 iasi616_metop-a 1681 -0.240717E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 367 iasi616_metop-a 1694 0.142039E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 368 iasi616_metop-a 1697 0.587481E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 369 iasi616_metop-a 1710 0.862749E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 370 iasi616_metop-a 1786 0.234283E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 371 iasi616_metop-a 1791 0.441391E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 372 iasi616_metop-a 1805 0.405059E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 373 iasi616_metop-a 1839 0.456111E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 374 iasi616_metop-a 1884 0.417144E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 375 iasi616_metop-a 1913 0.480885E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 376 iasi616_metop-a 1946 0.325327E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 377 iasi616_metop-a 1947 0.387825E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 378 iasi616_metop-a 1991 0.515769E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 379 iasi616_metop-a 2019 0.331678E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 380 iasi616_metop-a 2094 0.544714E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 381 iasi616_metop-a 2119 0.593213E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 382 iasi616_metop-a 2213 0.453396E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 383 iasi616_metop-a 2239 0.639359E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 384 iasi616_metop-a 2271 0.472725E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 385 iasi616_metop-a 2289 0.109796E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 386 iasi616_metop-a 2321 0.611212E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 387 iasi616_metop-a 2333 0.964199E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 388 iasi616_metop-a 2346 0.752175E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 389 iasi616_metop-a 2349 0.782928E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 390 iasi616_metop-a 2352 0.116554E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 391 iasi616_metop-a 2359 0.791292E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 392 iasi616_metop-a 2367 0.265917E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 393 iasi616_metop-a 2374 0.169603E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 394 iasi616_metop-a 2398 0.629070E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 395 iasi616_metop-a 2426 0.309060E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 396 iasi616_metop-a 2562 0.292565E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 397 iasi616_metop-a 2701 0.780528E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 398 iasi616_metop-a 2741 0.600865E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 399 iasi616_metop-a 2745 0.308374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 400 iasi616_metop-a 2760 0.391759E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 401 iasi616_metop-a 2819 0.771717E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 402 iasi616_metop-a 2889 0.484829E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 403 iasi616_metop-a 2907 0.573535E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 404 iasi616_metop-a 2910 0.737591E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 405 iasi616_metop-a 2919 0.846188E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 406 iasi616_metop-a 2921 0.757047E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 407 iasi616_metop-a 2939 0.744701E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 408 iasi616_metop-a 2944 0.500208E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 409 iasi616_metop-a 2945 0.472831E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 410 iasi616_metop-a 2948 0.534081E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 411 iasi616_metop-a 2951 0.504148E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 412 iasi616_metop-a 2958 0.521610E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 413 iasi616_metop-a 2971 0.711372E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 414 iasi616_metop-a 2977 0.674506E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 415 iasi616_metop-a 2985 0.724570E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 416 iasi616_metop-a 2988 0.613574E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 417 iasi616_metop-a 2990 0.653438E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 418 iasi616_metop-a 2991 0.652197E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 419 iasi616_metop-a 2993 0.703736E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 420 iasi616_metop-a 3002 0.872164E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 421 iasi616_metop-a 3008 0.754289E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 422 iasi616_metop-a 3014 0.829232E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 423 iasi616_metop-a 3027 0.634589E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 424 iasi616_metop-a 3029 0.618587E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 425 iasi616_metop-a 3030 0.615127E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 426 iasi616_metop-a 3036 0.714546E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 427 iasi616_metop-a 3047 0.644450E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 428 iasi616_metop-a 3049 0.607202E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 429 iasi616_metop-a 3052 0.561319E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 430 iasi616_metop-a 3053 0.559337E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 431 iasi616_metop-a 3055 0.614778E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 432 iasi616_metop-a 3058 0.563483E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 433 iasi616_metop-a 3064 0.581453E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 434 iasi616_metop-a 3069 0.812206E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 435 iasi616_metop-a 3087 0.776672E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 436 iasi616_metop-a 3093 0.859092E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 437 iasi616_metop-a 3098 0.514216E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 438 iasi616_metop-a 3105 0.807295E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 439 iasi616_metop-a 3107 0.774014E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 440 iasi616_metop-a 3110 0.735950E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 441 iasi616_metop-a 3116 0.724897E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 442 iasi616_metop-a 3127 0.664331E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 443 iasi616_metop-a 3129 0.652617E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 444 iasi616_metop-a 3136 0.770817E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 445 iasi616_metop-a 3146 0.760875E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 446 iasi616_metop-a 3151 0.728215E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 447 iasi616_metop-a 3160 0.788929E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 448 iasi616_metop-a 3165 0.872948E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 449 iasi616_metop-a 3168 0.436325E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 450 iasi616_metop-a 3175 0.797544E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 451 iasi616_metop-a 3178 0.729991E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 452 iasi616_metop-a 3189 0.636523E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 453 iasi616_metop-a 3207 0.823163E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 454 iasi616_metop-a 3228 0.811756E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 455 iasi616_metop-a 3244 0.876684E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 456 iasi616_metop-a 3248 0.375270E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 457 iasi616_metop-a 3252 0.828490E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 458 iasi616_metop-a 3256 0.828094E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 459 iasi616_metop-a 3263 0.821165E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 460 iasi616_metop-a 3281 0.514680E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 461 iasi616_metop-a 3295 0.763512E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 462 iasi616_metop-a 3303 0.849461E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 463 iasi616_metop-a 3309 0.494575E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 464 iasi616_metop-a 3312 0.860717E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 465 iasi616_metop-a 3322 0.856864E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 466 iasi616_metop-a 3326 0.625169E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 467 iasi616_metop-a 3354 0.727995E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 468 iasi616_metop-a 3366 0.858415E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 469 iasi616_metop-a 3375 0.866072E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 470 iasi616_metop-a 3378 0.799758E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 471 iasi616_metop-a 3411 0.881173E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 472 iasi616_metop-a 3416 0.496090E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 473 iasi616_metop-a 3432 0.845914E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 474 iasi616_metop-a 3438 0.879895E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 475 iasi616_metop-a 3440 0.853094E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 476 iasi616_metop-a 3442 0.607985E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 477 iasi616_metop-a 3444 0.404594E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 478 iasi616_metop-a 3446 0.699535E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 479 iasi616_metop-a 3448 0.458504E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 480 iasi616_metop-a 3450 0.440524E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 481 iasi616_metop-a 3452 0.754620E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 482 iasi616_metop-a 3454 0.745838E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 483 iasi616_metop-a 3458 0.861750E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 484 iasi616_metop-a 3467 0.868097E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 485 iasi616_metop-a 3476 0.835050E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 486 iasi616_metop-a 3484 0.879258E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 487 iasi616_metop-a 3491 0.509475E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 488 iasi616_metop-a 3497 0.874877E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 489 iasi616_metop-a 3499 0.876727E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 490 iasi616_metop-a 3504 0.754001E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 491 iasi616_metop-a 3506 0.352257E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 492 iasi616_metop-a 3509 0.810249E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 493 iasi616_metop-a 3518 0.877304E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 494 iasi616_metop-a 3527 0.879069E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 495 iasi616_metop-a 3555 0.631283E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 496 iasi616_metop-a 3575 0.602241E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 497 iasi616_metop-a 3577 0.297331E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 498 iasi616_metop-a 3580 0.648937E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 499 iasi616_metop-a 3582 0.361048E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 500 iasi616_metop-a 3586 0.800735E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 501 iasi616_metop-a 3589 0.330484E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 502 iasi616_metop-a 3599 0.856406E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 503 iasi616_metop-a 3610 0.826368E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 504 iasi616_metop-a 3626 0.831259E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 505 iasi616_metop-a 3638 0.515220E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 506 iasi616_metop-a 3646 0.862686E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 507 iasi616_metop-a 3653 0.545434E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 508 iasi616_metop-a 3658 0.676193E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 509 iasi616_metop-a 3661 0.401305E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 510 iasi616_metop-a 3673 0.852208E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 511 iasi616_metop-a 3689 0.830817E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 512 iasi616_metop-a 3700 0.413478E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 513 iasi616_metop-a 3710 0.833239E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 514 iasi616_metop-a 3726 0.275591E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 515 iasi616_metop-a 3763 0.714381E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 516 iasi616_metop-a 3814 0.696745E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 517 iasi616_metop-a 3841 0.717986E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 518 iasi616_metop-a 3888 0.275743E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 519 iasi616_metop-a 4032 0.436058E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 520 iasi616_metop-a 4059 0.817468E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 521 iasi616_metop-a 4068 0.874274E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 522 iasi616_metop-a 4082 0.827512E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 523 iasi616_metop-a 4095 0.778418E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 524 iasi616_metop-a 4160 0.308375E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 525 iasi616_metop-a 4234 0.876278E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 526 iasi616_metop-a 4257 0.797908E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 527 iasi616_metop-a 4411 0.828539E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 528 iasi616_metop-a 4498 0.811952E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 529 iasi616_metop-a 4520 0.834270E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 530 iasi616_metop-a 4552 0.675163E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 531 iasi616_metop-a 4567 0.634219E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 532 iasi616_metop-a 4608 0.809005E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 533 iasi616_metop-a 4646 0.579637E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 534 iasi616_metop-a 4698 0.496370E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 535 iasi616_metop-a 4808 0.715780E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 536 iasi616_metop-a 4849 0.439350E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 537 iasi616_metop-a 4920 0.422142E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 538 iasi616_metop-a 4939 0.563268E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 539 iasi616_metop-a 4947 0.363287E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 540 iasi616_metop-a 4967 0.457573E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 541 iasi616_metop-a 4991 0.522252E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 542 iasi616_metop-a 4996 0.590510E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 543 iasi616_metop-a 5015 0.363610E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 544 iasi616_metop-a 5028 0.519153E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 545 iasi616_metop-a 5056 0.605237E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 546 iasi616_metop-a 5128 0.390388E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 547 iasi616_metop-a 5130 0.335938E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 548 iasi616_metop-a 5144 0.287907E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 549 iasi616_metop-a 5170 0.389313E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 550 iasi616_metop-a 5178 0.403247E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 551 iasi616_metop-a 5183 0.465767E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 552 iasi616_metop-a 5188 0.786786E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 553 iasi616_metop-a 5191 0.762122E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 554 iasi616_metop-a 5368 0.319473E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 555 iasi616_metop-a 5371 0.467274E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 556 iasi616_metop-a 5379 0.406215E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 557 iasi616_metop-a 5381 0.391411E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 558 iasi616_metop-a 5383 0.422489E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 559 iasi616_metop-a 5397 0.391735E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 560 iasi616_metop-a 5399 0.325766E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 561 iasi616_metop-a 5401 0.289852E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 562 iasi616_metop-a 5403 0.268471E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 563 iasi616_metop-a 5405 0.248361E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 564 iasi616_metop-a 5446 0.177847E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 565 iasi616_metop-a 5455 0.285903E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 566 iasi616_metop-a 5472 0.189143E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 567 iasi616_metop-a 5480 0.271027E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 568 iasi616_metop-a 5483 0.335868E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 569 iasi616_metop-a 5485 0.435753E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 570 iasi616_metop-a 5492 0.485741E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 571 iasi616_metop-a 5497 0.667647E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 572 iasi616_metop-a 5502 0.283819E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 573 iasi616_metop-a 5507 0.214790E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 574 iasi616_metop-a 5509 0.227272E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 575 iasi616_metop-a 5517 0.210425E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 576 iasi616_metop-a 5528 0.612159E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 577 iasi616_metop-a 5558 0.285866E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 578 iasi616_metop-a 5697 0.295753E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 579 iasi616_metop-a 5714 0.257280E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 580 iasi616_metop-a 5749 0.372414E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 581 iasi616_metop-a 5766 0.202937E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 582 iasi616_metop-a 5785 0.172615E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 583 iasi616_metop-a 5798 0.111934E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 584 iasi616_metop-a 5799 0.122288E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 585 iasi616_metop-a 5801 0.177328E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 586 iasi616_metop-a 5817 0.179646E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 587 iasi616_metop-a 5833 0.139295E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 588 iasi616_metop-a 5834 0.208548E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 589 iasi616_metop-a 5836 0.535455E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 590 iasi616_metop-a 5849 0.930111E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 591 iasi616_metop-a 5851 0.249482E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 592 iasi616_metop-a 5852 0.156692E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 593 iasi616_metop-a 5865 0.821531E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 594 iasi616_metop-a 5869 0.135554E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 595 iasi616_metop-a 5881 0.410608E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 596 iasi616_metop-a 5884 0.283811E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 597 iasi616_metop-a 5897 -0.151514E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 598 iasi616_metop-a 5900 0.202334E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 599 iasi616_metop-a 5916 0.188705E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 600 iasi616_metop-a 5932 0.174117E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 601 iasi616_metop-a 5948 0.221989E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 602 iasi616_metop-a 5963 0.318969E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 603 iasi616_metop-a 5968 0.304098E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 604 iasi616_metop-a 5978 0.412518E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 605 iasi616_metop-a 5988 0.716402E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 606 iasi616_metop-a 5992 0.556673E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 607 iasi616_metop-a 5994 0.511296E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 608 iasi616_metop-a 5997 0.674590E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 609 iasi616_metop-a 6003 0.381495E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 610 iasi616_metop-a 6008 0.144547E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 611 iasi616_metop-a 6023 0.137339E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 612 iasi616_metop-a 6026 0.202818E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 613 iasi616_metop-a 6039 0.301681E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 614 iasi616_metop-a 6053 0.214462E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 615 iasi616_metop-a 6056 0.134102E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 616 iasi616_metop-a 6067 0.327920E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 617 iasi616_metop-a 6071 0.193375E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 618 iasi616_metop-a 6082 0.233192E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 619 iasi616_metop-a 6085 0.189021E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 620 iasi616_metop-a 6098 0.348406E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 621 iasi616_metop-a 6112 0.376839E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 622 iasi616_metop-a 6126 0.381395E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 623 iasi616_metop-a 6135 0.187174E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 624 iasi616_metop-a 6140 0.364279E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 625 iasi616_metop-a 6149 0.196068E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 626 iasi616_metop-a 6154 0.416811E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 627 iasi616_metop-a 6158 0.258476E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 628 iasi616_metop-a 6161 0.382306E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 629 iasi616_metop-a 6168 0.495337E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 630 iasi616_metop-a 6174 0.409856E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 631 iasi616_metop-a 6182 0.464724E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 632 iasi616_metop-a 6187 0.378328E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 633 iasi616_metop-a 6205 0.400374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 634 iasi616_metop-a 6209 0.435209E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 635 iasi616_metop-a 6213 0.446772E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 636 iasi616_metop-a 6317 0.429681E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 637 iasi616_metop-a 6339 0.298090E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 638 iasi616_metop-a 6342 0.401257E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 639 iasi616_metop-a 6366 0.399481E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 640 iasi616_metop-a 6381 0.463070E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 641 iasi616_metop-a 6391 0.441504E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 642 iasi616_metop-a 6489 -0.623367E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 643 iasi616_metop-a 6962 0.549298E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 644 iasi616_metop-a 6966 0.640574E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 645 iasi616_metop-a 6970 0.617973E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 646 iasi616_metop-a 6975 0.637017E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 647 iasi616_metop-a 6977 0.620085E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 648 iasi616_metop-a 6982 0.560190E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 649 iasi616_metop-a 6985 0.526403E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 650 iasi616_metop-a 6987 0.475681E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 651 iasi616_metop-a 6989 0.470413E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 652 iasi616_metop-a 6991 0.448785E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 653 iasi616_metop-a 6993 0.430273E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 654 iasi616_metop-a 6995 0.417493E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 655 iasi616_metop-a 6997 0.404873E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 656 iasi616_metop-a 6999 0.395346E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 657 iasi616_metop-a 7000 0.391713E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 658 iasi616_metop-a 7004 0.377988E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 659 iasi616_metop-a 7008 0.367076E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 660 iasi616_metop-a 7013 0.353690E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 661 iasi616_metop-a 7016 0.346872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 662 iasi616_metop-a 7021 0.336316E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 663 iasi616_metop-a 7024 0.314462E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 664 iasi616_metop-a 7027 0.308104E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 665 iasi616_metop-a 7029 0.304485E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 666 iasi616_metop-a 7032 0.300015E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 667 iasi616_metop-a 7038 0.290997E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 668 iasi616_metop-a 7043 0.284355E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 669 iasi616_metop-a 7046 0.279119E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 670 iasi616_metop-a 7049 0.280469E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 671 iasi616_metop-a 7069 0.252105E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 672 iasi616_metop-a 7072 0.249985E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 673 iasi616_metop-a 7076 0.245904E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 674 iasi616_metop-a 7081 0.241004E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 675 iasi616_metop-a 7084 0.240424E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 676 iasi616_metop-a 7089 0.234759E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 677 iasi616_metop-a 7099 0.229875E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 678 iasi616_metop-a 7209 0.168566E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 679 iasi616_metop-a 7222 0.171999E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 680 iasi616_metop-a 7231 0.166362E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 681 iasi616_metop-a 7235 0.163347E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 682 iasi616_metop-a 7247 0.140515E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 683 iasi616_metop-a 7267 0.124176E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 684 iasi616_metop-a 7269 0.121109E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 685 iasi616_metop-a 7284 0.122974E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 686 iasi616_metop-a 7389 0.707486E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 687 iasi616_metop-a 7419 0.583199E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 688 iasi616_metop-a 7423 0.550343E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 689 iasi616_metop-a 7424 0.549047E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 690 iasi616_metop-a 7426 0.550021E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 691 iasi616_metop-a 7428 0.540712E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 692 iasi616_metop-a 7431 0.578428E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 693 iasi616_metop-a 7436 0.537525E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 694 iasi616_metop-a 7444 0.516553E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 695 iasi616_metop-a 7475 0.452095E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 696 iasi616_metop-a 7549 0.603000E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 697 iasi616_metop-a 7584 0.495582E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 698 iasi616_metop-a 7665 0.645853E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 699 iasi616_metop-a 7666 0.460107E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 700 iasi616_metop-a 7831 0.212738E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 701 iasi616_metop-a 7836 0.274123E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 702 iasi616_metop-a 7853 0.149710E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 703 iasi616_metop-a 7865 0.124033E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 704 iasi616_metop-a 7885 0.684250E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 705 iasi616_metop-a 7888 0.692730E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 706 iasi616_metop-a 7912 0.170644E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 707 iasi616_metop-a 7950 0.120902E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 708 iasi616_metop-a 7972 0.985582E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 709 iasi616_metop-a 7980 0.296438E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 710 iasi616_metop-a 7995 0.246685E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 711 iasi616_metop-a 8007 0.122138E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 712 iasi616_metop-a 8015 0.252782E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 713 iasi616_metop-a 8055 0.211941E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 714 iasi616_metop-a 8078 0.255765E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 715 airs281SUBSET_aqua 1 -0.262858E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 716 airs281SUBSET_aqua 6 -0.254790E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 717 airs281SUBSET_aqua 7 -0.132533E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 718 airs281SUBSET_aqua 10 -0.345719E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 719 airs281SUBSET_aqua 11 -0.400410E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 720 airs281SUBSET_aqua 15 -0.183135E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 721 airs281SUBSET_aqua 16 -0.304945E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 722 airs281SUBSET_aqua 17 -0.403252E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 723 airs281SUBSET_aqua 20 -0.192391E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 724 airs281SUBSET_aqua 21 -0.174838E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 725 airs281SUBSET_aqua 22 -0.270785E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 726 airs281SUBSET_aqua 24 -0.387131E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 727 airs281SUBSET_aqua 27 -0.179039E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 728 airs281SUBSET_aqua 28 -0.233667E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 729 airs281SUBSET_aqua 30 -0.406206E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 730 airs281SUBSET_aqua 36 -0.416318E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 731 airs281SUBSET_aqua 39 -0.196722E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 732 airs281SUBSET_aqua 40 -0.179766E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 733 airs281SUBSET_aqua 42 -0.406989E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 734 airs281SUBSET_aqua 51 -0.222411E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 735 airs281SUBSET_aqua 52 -0.193460E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 736 airs281SUBSET_aqua 54 -0.426375E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 737 airs281SUBSET_aqua 55 -0.444019E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 738 airs281SUBSET_aqua 56 -0.382023E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 739 airs281SUBSET_aqua 59 -0.247878E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 740 airs281SUBSET_aqua 62 -0.324679E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 741 airs281SUBSET_aqua 63 -0.324563E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 742 airs281SUBSET_aqua 68 -0.303859E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 743 airs281SUBSET_aqua 69 -0.248102E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 744 airs281SUBSET_aqua 71 -0.337971E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 745 airs281SUBSET_aqua 72 -0.380979E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 746 airs281SUBSET_aqua 73 -0.287562E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 747 airs281SUBSET_aqua 74 -0.232406E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 748 airs281SUBSET_aqua 75 -0.289562E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 749 airs281SUBSET_aqua 76 -0.301277E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 750 airs281SUBSET_aqua 77 -0.345323E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 751 airs281SUBSET_aqua 78 -0.389570E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 752 airs281SUBSET_aqua 79 -0.393361E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 753 airs281SUBSET_aqua 80 -0.393619E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 754 airs281SUBSET_aqua 82 -0.412687E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 755 airs281SUBSET_aqua 83 -0.420071E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 756 airs281SUBSET_aqua 84 -0.334287E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 757 airs281SUBSET_aqua 86 -0.250719E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 758 airs281SUBSET_aqua 92 -0.187446E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 759 airs281SUBSET_aqua 93 -0.242073E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 760 airs281SUBSET_aqua 98 -0.198505E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 761 airs281SUBSET_aqua 99 -0.232250E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 762 airs281SUBSET_aqua 101 -0.421836E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 763 airs281SUBSET_aqua 104 -0.194786E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 764 airs281SUBSET_aqua 105 -0.226164E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 765 airs281SUBSET_aqua 108 -0.389889E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 766 airs281SUBSET_aqua 110 -0.191453E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 767 airs281SUBSET_aqua 111 -0.217878E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 768 airs281SUBSET_aqua 113 -0.419837E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 769 airs281SUBSET_aqua 116 -0.189812E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 770 airs281SUBSET_aqua 117 -0.213643E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 771 airs281SUBSET_aqua 123 -0.199201E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 772 airs281SUBSET_aqua 124 -0.299787E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 773 airs281SUBSET_aqua 128 -0.173241E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 774 airs281SUBSET_aqua 129 -0.183564E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 775 airs281SUBSET_aqua 138 -0.374000E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 776 airs281SUBSET_aqua 139 -0.174731E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 777 airs281SUBSET_aqua 144 0.611164E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 778 airs281SUBSET_aqua 145 0.541716E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 779 airs281SUBSET_aqua 150 0.111371E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 780 airs281SUBSET_aqua 151 0.946474E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 781 airs281SUBSET_aqua 156 0.227249E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 782 airs281SUBSET_aqua 157 0.128293E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 783 airs281SUBSET_aqua 159 -0.264601E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 784 airs281SUBSET_aqua 162 0.266516E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 785 airs281SUBSET_aqua 165 -0.205670E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 786 airs281SUBSET_aqua 168 0.308518E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 787 airs281SUBSET_aqua 169 0.218266E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 788 airs281SUBSET_aqua 170 -0.366239E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 789 airs281SUBSET_aqua 172 0.107199E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 790 airs281SUBSET_aqua 173 0.331218E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 791 airs281SUBSET_aqua 174 0.360162E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 792 airs281SUBSET_aqua 175 0.268484E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 793 airs281SUBSET_aqua 177 -0.109806E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 794 airs281SUBSET_aqua 179 0.353131E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 795 airs281SUBSET_aqua 180 0.379660E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 796 airs281SUBSET_aqua 182 0.248936E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 797 airs281SUBSET_aqua 185 0.347005E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 798 airs281SUBSET_aqua 186 0.376189E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 799 airs281SUBSET_aqua 190 0.488036E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 800 airs281SUBSET_aqua 192 0.472421E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 801 airs281SUBSET_aqua 198 0.576783E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 802 airs281SUBSET_aqua 201 0.560979E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 803 airs281SUBSET_aqua 204 0.597013E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 804 airs281SUBSET_aqua 207 0.496706E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 805 airs281SUBSET_aqua 210 0.541649E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 806 airs281SUBSET_aqua 215 0.607374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 807 airs281SUBSET_aqua 216 0.499485E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 808 airs281SUBSET_aqua 221 0.548509E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 809 airs281SUBSET_aqua 226 0.501082E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 810 airs281SUBSET_aqua 227 0.526468E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 811 airs281SUBSET_aqua 232 0.472402E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 812 airs281SUBSET_aqua 252 0.503297E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 813 airs281SUBSET_aqua 253 0.497008E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 814 airs281SUBSET_aqua 256 0.375695E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 815 airs281SUBSET_aqua 257 0.367619E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 816 airs281SUBSET_aqua 261 0.408679E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 817 airs281SUBSET_aqua 262 0.437858E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 818 airs281SUBSET_aqua 267 0.434820E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 819 airs281SUBSET_aqua 272 0.426766E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 820 airs281SUBSET_aqua 295 0.459121E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 821 airs281SUBSET_aqua 299 0.455767E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 822 airs281SUBSET_aqua 300 0.451903E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 823 airs281SUBSET_aqua 305 0.452389E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 824 airs281SUBSET_aqua 310 0.475503E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 825 airs281SUBSET_aqua 321 0.492067E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 826 airs281SUBSET_aqua 325 0.400375E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 827 airs281SUBSET_aqua 333 0.303241E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 828 airs281SUBSET_aqua 338 0.293370E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 829 airs281SUBSET_aqua 355 0.406997E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 830 airs281SUBSET_aqua 362 0.259662E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 831 airs281SUBSET_aqua 375 0.166720E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 832 airs281SUBSET_aqua 453 0.166985E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 833 airs281SUBSET_aqua 475 0.131922E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 834 airs281SUBSET_aqua 484 0.146891E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 835 airs281SUBSET_aqua 497 0.138656E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 836 airs281SUBSET_aqua 528 0.106916E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 837 airs281SUBSET_aqua 587 0.993873E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 838 airs281SUBSET_aqua 672 0.235227E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 839 airs281SUBSET_aqua 787 0.793635E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 840 airs281SUBSET_aqua 791 0.103922E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 841 airs281SUBSET_aqua 843 0.747722E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 842 airs281SUBSET_aqua 870 0.213058E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 843 airs281SUBSET_aqua 914 0.718267E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 844 airs281SUBSET_aqua 950 0.657626E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 845 airs281SUBSET_aqua 1003 0.222893E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 846 airs281SUBSET_aqua 1012 -0.880837E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 847 airs281SUBSET_aqua 1019 -0.214052E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 848 airs281SUBSET_aqua 1024 0.114334E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 849 airs281SUBSET_aqua 1030 -0.366198E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 850 airs281SUBSET_aqua 1038 -0.660075E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 851 airs281SUBSET_aqua 1048 -0.845886E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 852 airs281SUBSET_aqua 1069 -0.658260E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 853 airs281SUBSET_aqua 1079 -0.146557E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 854 airs281SUBSET_aqua 1082 -0.153759E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 855 airs281SUBSET_aqua 1083 -0.157266E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 856 airs281SUBSET_aqua 1088 -0.173626E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 857 airs281SUBSET_aqua 1090 -0.181801E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 858 airs281SUBSET_aqua 1092 -0.173010E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 859 airs281SUBSET_aqua 1095 0.297453E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 860 airs281SUBSET_aqua 1104 -0.142888E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 861 airs281SUBSET_aqua 1111 -0.978487E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 862 airs281SUBSET_aqua 1115 -0.104500E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 863 airs281SUBSET_aqua 1116 -0.880378E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 864 airs281SUBSET_aqua 1119 -0.690953E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 865 airs281SUBSET_aqua 1120 -0.671374E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 866 airs281SUBSET_aqua 1123 -0.958915E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 867 airs281SUBSET_aqua 1130 0.254250E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 868 airs281SUBSET_aqua 1138 0.922485E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 869 airs281SUBSET_aqua 1142 0.193320E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 870 airs281SUBSET_aqua 1178 0.469287E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 871 airs281SUBSET_aqua 1199 0.449081E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 872 airs281SUBSET_aqua 1206 0.223680E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 873 airs281SUBSET_aqua 1221 0.402762E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 874 airs281SUBSET_aqua 1237 0.428310E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 875 airs281SUBSET_aqua 1252 0.337391E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 876 airs281SUBSET_aqua 1260 0.340370E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 877 airs281SUBSET_aqua 1263 0.116683E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 878 airs281SUBSET_aqua 1266 0.404485E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 879 airs281SUBSET_aqua 1285 0.113242E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 880 airs281SUBSET_aqua 1301 0.278866E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 881 airs281SUBSET_aqua 1304 0.182790E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 882 airs281SUBSET_aqua 1329 0.275347E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 883 airs281SUBSET_aqua 1371 0.328732E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 884 airs281SUBSET_aqua 1382 0.367697E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 885 airs281SUBSET_aqua 1415 0.414868E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 886 airs281SUBSET_aqua 1424 0.535469E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 887 airs281SUBSET_aqua 1449 0.314086E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 888 airs281SUBSET_aqua 1455 0.421734E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 889 airs281SUBSET_aqua 1466 0.835496E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 890 airs281SUBSET_aqua 1477 0.423550E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 891 airs281SUBSET_aqua 1500 0.490771E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 892 airs281SUBSET_aqua 1519 0.535173E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 893 airs281SUBSET_aqua 1538 0.617754E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 894 airs281SUBSET_aqua 1545 0.500360E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 895 airs281SUBSET_aqua 1565 0.648133E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 896 airs281SUBSET_aqua 1574 0.768983E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 897 airs281SUBSET_aqua 1583 0.624309E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 898 airs281SUBSET_aqua 1593 0.582546E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 899 airs281SUBSET_aqua 1614 0.697277E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 900 airs281SUBSET_aqua 1627 0.667485E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 901 airs281SUBSET_aqua 1636 0.759956E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 902 airs281SUBSET_aqua 1644 0.692839E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 903 airs281SUBSET_aqua 1652 0.656215E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 904 airs281SUBSET_aqua 1669 0.771315E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 905 airs281SUBSET_aqua 1674 0.645343E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 906 airs281SUBSET_aqua 1681 0.731043E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 907 airs281SUBSET_aqua 1694 0.765490E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 908 airs281SUBSET_aqua 1708 0.809210E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 909 airs281SUBSET_aqua 1717 0.659833E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 910 airs281SUBSET_aqua 1723 0.834896E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 911 airs281SUBSET_aqua 1740 0.833806E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 912 airs281SUBSET_aqua 1748 0.852545E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 913 airs281SUBSET_aqua 1751 0.549260E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 914 airs281SUBSET_aqua 1756 0.823355E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 915 airs281SUBSET_aqua 1763 0.552438E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 916 airs281SUBSET_aqua 1766 0.773607E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 917 airs281SUBSET_aqua 1771 0.815582E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 918 airs281SUBSET_aqua 1777 0.828872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 919 airs281SUBSET_aqua 1780 0.668208E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 920 airs281SUBSET_aqua 1783 0.834379E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 921 airs281SUBSET_aqua 1794 0.833729E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 922 airs281SUBSET_aqua 1800 0.832028E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 923 airs281SUBSET_aqua 1803 0.606326E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 924 airs281SUBSET_aqua 1806 0.831797E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 925 airs281SUBSET_aqua 1812 0.504593E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 926 airs281SUBSET_aqua 1826 0.711976E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 927 airs281SUBSET_aqua 1843 0.699644E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 928 airs281SUBSET_aqua 1852 0.722686E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 929 airs281SUBSET_aqua 1865 0.280699E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 930 airs281SUBSET_aqua 1866 0.310435E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 931 airs281SUBSET_aqua 1868 0.337612E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 932 airs281SUBSET_aqua 1869 0.346184E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 933 airs281SUBSET_aqua 1872 0.380223E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 934 airs281SUBSET_aqua 1873 0.366906E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 935 airs281SUBSET_aqua 1876 0.329295E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 936 airs281SUBSET_aqua 1881 0.431218E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 937 airs281SUBSET_aqua 1882 0.435908E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 938 airs281SUBSET_aqua 1883 0.437534E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 939 airs281SUBSET_aqua 1911 0.423525E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 940 airs281SUBSET_aqua 1917 0.457236E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 941 airs281SUBSET_aqua 1918 0.452064E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 942 airs281SUBSET_aqua 1924 0.451151E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 943 airs281SUBSET_aqua 1928 0.433607E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 944 airs281SUBSET_aqua 1937 0.422414E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 945 airs281SUBSET_aqua 1941 0.389164E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 946 airs281SUBSET_aqua 2099 -0.266525E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 947 airs281SUBSET_aqua 2100 -0.181871E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 948 airs281SUBSET_aqua 2101 -0.903176E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 949 airs281SUBSET_aqua 2103 0.147271E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 950 airs281SUBSET_aqua 2104 0.275141E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 951 airs281SUBSET_aqua 2106 0.519852E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 952 airs281SUBSET_aqua 2107 0.594450E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 953 airs281SUBSET_aqua 2108 0.637520E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 954 airs281SUBSET_aqua 2109 0.642239E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 955 airs281SUBSET_aqua 2110 0.617835E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 956 airs281SUBSET_aqua 2111 0.572464E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 957 airs281SUBSET_aqua 2112 0.519479E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 958 airs281SUBSET_aqua 2113 0.467516E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 959 airs281SUBSET_aqua 2114 0.427364E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 960 airs281SUBSET_aqua 2115 0.398577E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 961 airs281SUBSET_aqua 2116 0.379767E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 962 airs281SUBSET_aqua 2117 0.366043E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 963 airs281SUBSET_aqua 2118 0.354748E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 964 airs281SUBSET_aqua 2119 0.344309E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 965 airs281SUBSET_aqua 2120 0.335269E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 966 airs281SUBSET_aqua 2121 0.327088E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 967 airs281SUBSET_aqua 2122 0.317814E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 968 airs281SUBSET_aqua 2123 0.310580E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 969 airs281SUBSET_aqua 2128 0.281519E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 970 airs281SUBSET_aqua 2134 0.252224E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 971 airs281SUBSET_aqua 2141 0.228504E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 972 airs281SUBSET_aqua 2145 0.178987E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 973 airs281SUBSET_aqua 2149 0.171569E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 974 airs281SUBSET_aqua 2153 0.155862E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 975 airs281SUBSET_aqua 2164 0.127241E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 976 airs281SUBSET_aqua 2189 0.733712E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 977 airs281SUBSET_aqua 2197 0.569939E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 978 airs281SUBSET_aqua 2209 0.497619E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 979 airs281SUBSET_aqua 2226 0.523783E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 980 airs281SUBSET_aqua 2234 0.724057E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 981 airs281SUBSET_aqua 2280 0.623336E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 982 airs281SUBSET_aqua 2318 0.580124E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 983 airs281SUBSET_aqua 2321 0.259878E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 984 airs281SUBSET_aqua 2325 0.114982E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 985 airs281SUBSET_aqua 2328 0.174425E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 986 airs281SUBSET_aqua 2333 0.851504E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 987 airs281SUBSET_aqua 2339 0.124982E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 988 airs281SUBSET_aqua 2348 0.218972E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 989 airs281SUBSET_aqua 2353 0.133264E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 990 airs281SUBSET_aqua 2355 0.399670E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 991 airs281SUBSET_aqua 2357 0.877125E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 992 airs281SUBSET_aqua 2363 0.722499E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 993 airs281SUBSET_aqua 2370 0.846303E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 994 airs281SUBSET_aqua 2371 0.666276E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 995 airs281SUBSET_aqua 2377 0.681549E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 996 amsua_aqua 1 0.524520E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 997 amsua_aqua 2 0.284179E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 998 amsua_aqua 3 0.172384E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 999 amsua_aqua 4 0.387672E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1000 amsua_aqua 5 0.486819E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1001 amsua_aqua 6 0.502410E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1002 amsua_aqua 7 0.391404E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1003 amsua_aqua 8 0.241128E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1004 amsua_aqua 9 -0.144746E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1005 amsua_aqua 10 -0.290554E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1006 amsua_aqua 11 -0.391334E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1007 amsua_aqua 12 -0.543665E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1008 amsua_aqua 13 -0.642386E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1009 amsua_aqua 14 -0.304102E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1010 amsua_aqua 15 0.878322E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1011 avhrr3_n18 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1012 avhrr3_n18 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1013 avhrr3_n18 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1014 avhrr3_metop-a 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1015 avhrr3_metop-a 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1016 avhrr3_metop-a 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1017 avhrr3_n19 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1018 avhrr3_n19 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1019 avhrr3_n19 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1020 ssmi_f15 1 0.324009E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1021 ssmi_f15 2 0.314370E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1022 ssmi_f15 3 0.916232E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1023 ssmi_f15 4 0.498700E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1024 ssmi_f15 5 0.502591E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1025 ssmi_f15 6 0.128339E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1026 ssmi_f15 7 0.135433E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1027 ssmis_f16 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1028 ssmis_f16 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1029 ssmis_f16 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1030 ssmis_f16 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1031 ssmis_f16 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1032 ssmis_f16 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1033 ssmis_f16 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1034 ssmis_f16 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1035 ssmis_f16 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1036 ssmis_f16 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1037 ssmis_f16 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1038 ssmis_f16 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1039 ssmis_f16 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1040 ssmis_f16 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1041 ssmis_f16 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1042 ssmis_f16 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1043 ssmis_f16 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1044 ssmis_f16 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1045 ssmis_f16 19 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1046 ssmis_f16 20 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1047 ssmis_f16 21 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1048 ssmis_f16 22 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1049 ssmis_f16 23 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1050 ssmis_f16 24 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1051 amsre_aqua 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1052 amsre_aqua 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1053 amsre_aqua 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1054 amsre_aqua 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1055 amsre_aqua 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1056 amsre_aqua 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1057 amsre_aqua 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1058 amsre_aqua 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1059 amsre_aqua 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1060 amsre_aqua 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1061 amsre_aqua 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1062 amsre_aqua 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1063 imgr_g11 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1064 imgr_g11 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1065 imgr_g11 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1066 imgr_g11 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1067 imgr_g12 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1068 imgr_g12 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1069 imgr_g12 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1070 imgr_g12 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1071 imgr_g13 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1072 imgr_g13 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1073 imgr_g13 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1074 imgr_g13 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1075 sndrD1_g11 1 -0.265079E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1076 sndrD1_g11 2 0.791924E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1077 sndrD1_g11 3 0.449876E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1078 sndrD1_g11 4 0.474887E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1079 sndrD1_g11 5 0.406305E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1080 sndrD1_g11 6 0.184705E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1081 sndrD1_g11 7 0.110956E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1082 sndrD1_g11 8 0.814472E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1083 sndrD1_g11 9 -0.990199E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1084 sndrD1_g11 10 0.524812E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1085 sndrD1_g11 11 0.736200E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1086 sndrD1_g11 12 0.752577E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1087 sndrD1_g11 13 0.389100E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1088 sndrD1_g11 14 0.453368E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1089 sndrD1_g11 15 0.316337E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1090 sndrD1_g11 16 0.229025E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1091 sndrD1_g11 17 0.566619E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1092 sndrD1_g11 18 0.529321E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1093 sndrD2_g11 1 -0.266912E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1094 sndrD2_g11 2 0.775615E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1095 sndrD2_g11 3 0.452724E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1096 sndrD2_g11 4 0.476637E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1097 sndrD2_g11 5 0.405429E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1098 sndrD2_g11 6 0.185283E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1099 sndrD2_g11 7 0.111459E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1100 sndrD2_g11 8 0.821840E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1101 sndrD2_g11 9 -0.989516E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1102 sndrD2_g11 10 0.525309E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1103 sndrD2_g11 11 0.737190E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1104 sndrD2_g11 12 0.755790E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1105 sndrD2_g11 13 0.394725E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1106 sndrD2_g11 14 0.461616E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1107 sndrD2_g11 15 0.346644E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1108 sndrD2_g11 16 0.228933E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1109 sndrD2_g11 17 0.566331E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1110 sndrD2_g11 18 0.529025E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1111 sndrD3_g11 1 -0.266929E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1112 sndrD3_g11 2 0.828422E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1113 sndrD3_g11 3 0.455001E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1114 sndrD3_g11 4 0.477330E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1115 sndrD3_g11 5 0.406087E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1116 sndrD3_g11 6 0.185779E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1117 sndrD3_g11 7 0.111995E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1118 sndrD3_g11 8 0.824902E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1119 sndrD3_g11 9 -0.990581E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1120 sndrD3_g11 10 0.526039E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1121 sndrD3_g11 11 0.738481E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1122 sndrD3_g11 12 0.757424E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1123 sndrD3_g11 13 0.393762E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1124 sndrD3_g11 14 0.458594E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1125 sndrD3_g11 15 0.296254E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1126 sndrD3_g11 16 0.228579E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1127 sndrD3_g11 17 0.565202E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1128 sndrD3_g11 18 0.530802E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1129 sndrD4_g11 1 -0.270387E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1130 sndrD4_g11 2 0.781312E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1131 sndrD4_g11 3 0.456984E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1132 sndrD4_g11 4 0.478625E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1133 sndrD4_g11 5 0.406707E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1134 sndrD4_g11 6 0.186448E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1135 sndrD4_g11 7 0.112578E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1136 sndrD4_g11 8 0.836810E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1137 sndrD4_g11 9 -0.995293E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1138 sndrD4_g11 10 0.527646E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1139 sndrD4_g11 11 0.740008E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1140 sndrD4_g11 12 0.760876E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1141 sndrD4_g11 13 0.397836E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1142 sndrD4_g11 14 0.463294E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1143 sndrD4_g11 15 0.298136E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1144 sndrD4_g11 16 0.228076E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1145 sndrD4_g11 17 0.563765E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1146 sndrD4_g11 18 0.538548E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1147 sndrD1_g12 1 -0.310619E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1148 sndrD1_g12 2 0.117496E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1149 sndrD1_g12 3 0.498384E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1150 sndrD1_g12 4 0.498242E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1151 sndrD1_g12 5 0.399052E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1152 sndrD1_g12 6 0.194544E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1153 sndrD1_g12 7 0.121993E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1154 sndrD1_g12 8 0.874217E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1155 sndrD1_g12 9 -0.105919E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1156 sndrD1_g12 10 0.519673E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1157 sndrD1_g12 11 0.697980E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1158 sndrD1_g12 12 0.781190E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1159 sndrD1_g12 13 0.384496E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1160 sndrD1_g12 14 0.486812E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1161 sndrD1_g12 15 0.411431E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1162 sndrD1_g12 16 0.227878E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1163 sndrD1_g12 17 0.554376E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1164 sndrD1_g12 18 0.530533E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1165 sndrD2_g12 1 -0.310737E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1166 sndrD2_g12 2 0.127468E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1167 sndrD2_g12 3 0.498152E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1168 sndrD2_g12 4 0.498548E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1169 sndrD2_g12 5 0.398993E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1170 sndrD2_g12 6 0.195037E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1171 sndrD2_g12 7 0.122105E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1172 sndrD2_g12 8 0.876503E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1173 sndrD2_g12 9 -0.105733E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1174 sndrD2_g12 10 0.520394E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1175 sndrD2_g12 11 0.698700E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1176 sndrD2_g12 12 0.781909E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1177 sndrD2_g12 13 0.384685E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1178 sndrD2_g12 14 0.488416E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1179 sndrD2_g12 15 0.413695E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1180 sndrD2_g12 16 0.227837E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1181 sndrD2_g12 17 0.554051E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1182 sndrD2_g12 18 0.531326E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1183 sndrD3_g12 1 -0.306078E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1184 sndrD3_g12 2 0.127062E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1185 sndrD3_g12 3 0.500544E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1186 sndrD3_g12 4 0.499611E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1187 sndrD3_g12 5 0.400391E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1188 sndrD3_g12 6 0.195868E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1189 sndrD3_g12 7 0.122307E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1190 sndrD3_g12 8 0.877006E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1191 sndrD3_g12 9 -0.105968E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1192 sndrD3_g12 10 0.520971E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1193 sndrD3_g12 11 0.698827E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1194 sndrD3_g12 12 0.784056E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1195 sndrD3_g12 13 0.385591E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1196 sndrD3_g12 14 0.487598E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1197 sndrD3_g12 15 0.423271E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1198 sndrD3_g12 16 0.227650E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1199 sndrD3_g12 17 0.553707E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1200 sndrD3_g12 18 0.532826E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1201 sndrD4_g12 1 -0.302738E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1202 sndrD4_g12 2 0.136448E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1203 sndrD4_g12 3 0.499541E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1204 sndrD4_g12 4 0.499108E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1205 sndrD4_g12 5 0.400227E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1206 sndrD4_g12 6 0.195374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1207 sndrD4_g12 7 0.122075E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1208 sndrD4_g12 8 0.878565E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1209 sndrD4_g12 9 -0.105651E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1210 sndrD4_g12 10 0.520607E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1211 sndrD4_g12 11 0.698520E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1212 sndrD4_g12 12 0.783738E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1213 sndrD4_g12 13 0.385535E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1214 sndrD4_g12 14 0.485958E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1215 sndrD4_g12 15 0.427123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1216 sndrD4_g12 16 0.227607E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1217 sndrD4_g12 17 0.553663E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1218 sndrD4_g12 18 0.530486E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1219 sndrD1_g13 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1220 sndrD1_g13 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1221 sndrD1_g13 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1222 sndrD1_g13 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1223 sndrD1_g13 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1224 sndrD1_g13 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1225 sndrD1_g13 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1226 sndrD1_g13 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1227 sndrD1_g13 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1228 sndrD1_g13 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1229 sndrD1_g13 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1230 sndrD1_g13 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1231 sndrD1_g13 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1232 sndrD1_g13 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1233 sndrD1_g13 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1234 sndrD1_g13 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1235 sndrD1_g13 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1236 sndrD1_g13 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1237 sndrD2_g13 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1238 sndrD2_g13 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1239 sndrD2_g13 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1240 sndrD2_g13 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1241 sndrD2_g13 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1242 sndrD2_g13 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1243 sndrD2_g13 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1244 sndrD2_g13 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1245 sndrD2_g13 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1246 sndrD2_g13 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1247 sndrD2_g13 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1248 sndrD2_g13 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1249 sndrD2_g13 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1250 sndrD2_g13 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1251 sndrD2_g13 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1252 sndrD2_g13 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1253 sndrD2_g13 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1254 sndrD2_g13 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1255 sndrD3_g13 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1256 sndrD3_g13 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1257 sndrD3_g13 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1258 sndrD3_g13 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1259 sndrD3_g13 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1260 sndrD3_g13 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1261 sndrD3_g13 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1262 sndrD3_g13 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1263 sndrD3_g13 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1264 sndrD3_g13 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1265 sndrD3_g13 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1266 sndrD3_g13 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1267 sndrD3_g13 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1268 sndrD3_g13 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1269 sndrD3_g13 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1270 sndrD3_g13 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1271 sndrD3_g13 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1272 sndrD3_g13 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1273 sndrD4_g13 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1274 sndrD4_g13 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1275 sndrD4_g13 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1276 sndrD4_g13 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1277 sndrD4_g13 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1278 sndrD4_g13 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1279 sndrD4_g13 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1280 sndrD4_g13 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1281 sndrD4_g13 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1282 sndrD4_g13 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1283 sndrD4_g13 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1284 sndrD4_g13 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1285 sndrD4_g13 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1286 sndrD4_g13 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1287 sndrD4_g13 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1288 sndrD4_g13 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1289 sndrD4_g13 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1290 sndrD4_g13 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1291 hirs4_n19 1 -0.333529E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1292 hirs4_n19 2 -0.233248E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1293 hirs4_n19 3 -0.110363E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1294 hirs4_n19 4 0.251844E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1295 hirs4_n19 5 0.440362E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1296 hirs4_n19 6 0.487800E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1297 hirs4_n19 7 0.409127E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1298 hirs4_n19 8 0.106596E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1299 hirs4_n19 9 -0.710619E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1300 hirs4_n19 10 0.221001E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1301 hirs4_n19 11 0.625054E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1302 hirs4_n19 12 0.651783E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1303 hirs4_n19 13 0.339091E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1304 hirs4_n19 14 0.460906E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1305 hirs4_n19 15 0.458443E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1306 hirs4_n19 16 0.370837E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1307 hirs4_n19 17 0.213897E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1308 hirs4_n19 18 0.483846E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1309 hirs4_n19 19 0.525336E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1310 amsua_n19 1 0.518291E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1311 amsua_n19 2 0.278076E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1312 amsua_n19 3 0.168742E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1313 amsua_n19 4 0.379104E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1314 amsua_n19 5 0.478301E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1315 amsua_n19 6 0.475339E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1316 amsua_n19 7 0.376276E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1317 amsua_n19 8 0.240845E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1318 amsua_n19 9 -0.581844E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1319 amsua_n19 10 -0.194671E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1320 amsua_n19 11 -0.338816E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1321 amsua_n19 12 -0.570877E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1322 amsua_n19 13 -0.819087E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1323 amsua_n19 14 -0.573688E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1324 amsua_n19 15 0.855630E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1325 mhs_n19 1 0.842139E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1326 mhs_n19 2 0.182653E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1327 mhs_n19 3 0.762855E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1328 mhs_n19 4 0.556230E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1329 mhs_n19 5 0.381611E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1330 ssmis_f17 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1331 ssmis_f17 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1332 ssmis_f17 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1333 ssmis_f17 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1334 ssmis_f17 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1335 ssmis_f17 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1336 ssmis_f17 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1337 ssmis_f17 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1338 ssmis_f17 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1339 ssmis_f17 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1340 ssmis_f17 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1341 ssmis_f17 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1342 ssmis_f17 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1343 ssmis_f17 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1344 ssmis_f17 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1345 ssmis_f17 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1346 ssmis_f17 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1347 ssmis_f17 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1348 ssmis_f17 19 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1349 ssmis_f17 20 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1350 ssmis_f17 21 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1351 ssmis_f17 22 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1352 ssmis_f17 23 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1353 ssmis_f17 24 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1354 ssmis_f18 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1355 ssmis_f18 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1356 ssmis_f18 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1357 ssmis_f18 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1358 ssmis_f18 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1359 ssmis_f18 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1360 ssmis_f18 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1361 ssmis_f18 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1362 ssmis_f18 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1363 ssmis_f18 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1364 ssmis_f18 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1365 ssmis_f18 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1366 ssmis_f18 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1367 ssmis_f18 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1368 ssmis_f18 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1369 ssmis_f18 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1370 ssmis_f18 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1371 ssmis_f18 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1372 ssmis_f18 19 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1373 ssmis_f18 20 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1374 ssmis_f18 21 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1375 ssmis_f18 22 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1376 ssmis_f18 23 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1377 ssmis_f18 24 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1378 ssmis_f19 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1379 ssmis_f19 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1380 ssmis_f19 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1381 ssmis_f19 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1382 ssmis_f19 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1383 ssmis_f19 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1384 ssmis_f19 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1385 ssmis_f19 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1386 ssmis_f19 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1387 ssmis_f19 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1388 ssmis_f19 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1389 ssmis_f19 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1390 ssmis_f19 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1391 ssmis_f19 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1392 ssmis_f19 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1393 ssmis_f19 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1394 ssmis_f19 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1395 ssmis_f19 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1396 ssmis_f19 19 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1397 ssmis_f19 20 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1398 ssmis_f19 21 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1399 ssmis_f19 22 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1400 ssmis_f19 23 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1401 ssmis_f19 24 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1402 ssmis_f20 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1403 ssmis_f20 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1404 ssmis_f20 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1405 ssmis_f20 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1406 ssmis_f20 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1407 ssmis_f20 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1408 ssmis_f20 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1409 ssmis_f20 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1410 ssmis_f20 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1411 ssmis_f20 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1412 ssmis_f20 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1413 ssmis_f20 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1414 ssmis_f20 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1415 ssmis_f20 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1416 ssmis_f20 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1417 ssmis_f20 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1418 ssmis_f20 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1419 ssmis_f20 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1420 ssmis_f20 19 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1421 ssmis_f20 20 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1422 ssmis_f20 21 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1423 ssmis_f20 22 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1424 ssmis_f20 23 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1425 ssmis_f20 24 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1426 imgr_g14 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1427 imgr_g14 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1428 imgr_g14 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1429 imgr_g14 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1430 imgr_g15 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1431 imgr_g15 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1432 imgr_g15 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1433 imgr_g15 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1434 sndrD1_g14 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1435 sndrD1_g14 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1436 sndrD1_g14 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1437 sndrD1_g14 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1438 sndrD1_g14 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1439 sndrD1_g14 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1440 sndrD1_g14 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1441 sndrD1_g14 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1442 sndrD1_g14 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1443 sndrD1_g14 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1444 sndrD1_g14 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1445 sndrD1_g14 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1446 sndrD1_g14 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1447 sndrD1_g14 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1448 sndrD1_g14 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1449 sndrD1_g14 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1450 sndrD1_g14 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1451 sndrD1_g14 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1452 sndrD2_g14 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1453 sndrD2_g14 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1454 sndrD2_g14 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1455 sndrD2_g14 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1456 sndrD2_g14 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1457 sndrD2_g14 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1458 sndrD2_g14 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1459 sndrD2_g14 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1460 sndrD2_g14 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1461 sndrD2_g14 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1462 sndrD2_g14 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1463 sndrD2_g14 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1464 sndrD2_g14 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1465 sndrD2_g14 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1466 sndrD2_g14 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1467 sndrD2_g14 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1468 sndrD2_g14 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1469 sndrD2_g14 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1470 sndrD3_g14 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1471 sndrD3_g14 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1472 sndrD3_g14 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1473 sndrD3_g14 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1474 sndrD3_g14 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1475 sndrD3_g14 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1476 sndrD3_g14 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1477 sndrD3_g14 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1478 sndrD3_g14 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1479 sndrD3_g14 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1480 sndrD3_g14 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1481 sndrD3_g14 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1482 sndrD3_g14 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1483 sndrD3_g14 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1484 sndrD3_g14 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1485 sndrD3_g14 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1486 sndrD3_g14 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1487 sndrD3_g14 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1488 sndrD4_g14 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1489 sndrD4_g14 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1490 sndrD4_g14 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1491 sndrD4_g14 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1492 sndrD4_g14 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1493 sndrD4_g14 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1494 sndrD4_g14 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1495 sndrD4_g14 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1496 sndrD4_g14 9 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1497 sndrD4_g14 10 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1498 sndrD4_g14 11 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1499 sndrD4_g14 12 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1500 sndrD4_g14 13 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1501 sndrD4_g14 14 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1502 sndrD4_g14 15 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1503 sndrD4_g14 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1504 sndrD4_g14 17 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1505 sndrD4_g14 18 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1506 sndrD1_g15 1 -0.280696E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1507 sndrD1_g15 2 0.491156E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1508 sndrD1_g15 3 0.481448E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1509 sndrD1_g15 4 0.491367E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1510 sndrD1_g15 5 0.415202E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1511 sndrD1_g15 6 0.191573E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1512 sndrD1_g15 7 0.118072E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1513 sndrD1_g15 8 0.830446E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1514 sndrD1_g15 9 -0.694848E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1515 sndrD1_g15 10 0.552203E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1516 sndrD1_g15 11 0.763308E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1517 sndrD1_g15 12 0.786536E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1518 sndrD1_g15 13 0.366318E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1519 sndrD1_g15 14 0.462414E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1520 sndrD1_g15 15 0.405018E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1521 sndrD1_g15 16 0.239123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1522 sndrD1_g15 17 0.572683E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1523 sndrD1_g15 18 0.550201E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1524 sndrD2_g15 1 -0.282176E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1525 sndrD2_g15 2 0.440963E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1526 sndrD2_g15 3 0.481307E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1527 sndrD2_g15 4 0.491664E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1528 sndrD2_g15 5 0.413898E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1529 sndrD2_g15 6 0.191570E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1530 sndrD2_g15 7 0.118336E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1531 sndrD2_g15 8 0.833460E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1532 sndrD2_g15 9 -0.695979E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1533 sndrD2_g15 10 0.552566E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1534 sndrD2_g15 11 0.764067E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1535 sndrD2_g15 12 0.787169E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1536 sndrD2_g15 13 0.366534E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1537 sndrD2_g15 14 0.462157E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1538 sndrD2_g15 15 0.402054E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1539 sndrD2_g15 16 0.238716E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1540 sndrD2_g15 17 0.572569E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1541 sndrD2_g15 18 0.551773E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1542 sndrD3_g15 1 -0.280670E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1543 sndrD3_g15 2 0.436166E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1544 sndrD3_g15 3 0.479789E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1545 sndrD3_g15 4 0.490799E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1546 sndrD3_g15 5 0.412971E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1547 sndrD3_g15 6 0.191260E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1548 sndrD3_g15 7 0.118197E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1549 sndrD3_g15 8 0.830643E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1550 sndrD3_g15 9 -0.691376E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1551 sndrD3_g15 10 0.552627E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1552 sndrD3_g15 11 0.764217E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1553 sndrD3_g15 12 0.785636E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1554 sndrD3_g15 13 0.365994E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1555 sndrD3_g15 14 0.462067E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1556 sndrD3_g15 15 0.406556E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1557 sndrD3_g15 16 0.238981E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1558 sndrD3_g15 17 0.572636E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1559 sndrD3_g15 18 0.552543E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1560 sndrD4_g15 1 -0.281317E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1561 sndrD4_g15 2 0.473448E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1562 sndrD4_g15 3 0.480634E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1563 sndrD4_g15 4 0.491183E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1564 sndrD4_g15 5 0.413015E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1565 sndrD4_g15 6 0.191897E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1566 sndrD4_g15 7 0.118074E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1567 sndrD4_g15 8 0.833140E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1568 sndrD4_g15 9 -0.693227E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1569 sndrD4_g15 10 0.553318E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1570 sndrD4_g15 11 0.764634E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1571 sndrD4_g15 12 0.787168E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1572 sndrD4_g15 13 0.366422E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1573 sndrD4_g15 14 0.461712E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1574 sndrD4_g15 15 0.402863E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1575 sndrD4_g15 16 0.238461E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1576 sndrD4_g15 17 0.571770E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1577 sndrD4_g15 18 0.552484E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1578 seviri_m08 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1579 seviri_m08 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1580 seviri_m08 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1581 seviri_m08 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1582 seviri_m08 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1583 seviri_m08 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1584 seviri_m08 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1585 seviri_m08 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1586 seviri_m09 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1587 seviri_m09 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1588 seviri_m09 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1589 seviri_m09 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1590 seviri_m09 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1591 seviri_m09 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1592 seviri_m09 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1593 seviri_m09 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1594 seviri_m10 1 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1595 seviri_m10 2 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1596 seviri_m10 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1597 seviri_m10 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1598 seviri_m10 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1599 seviri_m10 6 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1600 seviri_m10 7 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1601 seviri_m10 8 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1602 atms_npp 1 0.526480E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1603 atms_npp 2 0.293992E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1604 atms_npp 3 0.181496E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1605 atms_npp 4 0.271860E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1606 atms_npp 5 0.409449E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1607 atms_npp 6 0.514006E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1608 atms_npp 7 0.540347E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1609 atms_npp 8 0.374770E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1610 atms_npp 9 0.214001E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1611 atms_npp 10 -0.150859E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1612 atms_npp 11 -0.284901E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1613 atms_npp 12 -0.393897E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1614 atms_npp 13 -0.574728E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1615 atms_npp 14 -0.768403E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1616 atms_npp 15 -0.544455E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1617 atms_npp 16 0.880854E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1618 atms_npp 17 0.235463E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1619 atms_npp 18 0.374950E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1620 atms_npp 19 0.481224E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1621 atms_npp 20 0.587870E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1622 atms_npp 21 0.714763E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1623 atms_npp 22 0.810301E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1624 cris_npp 27 -0.281665E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1625 cris_npp 28 -0.312927E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1626 cris_npp 31 -0.429412E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1627 cris_npp 32 -0.428038E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1628 cris_npp 33 -0.361276E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1629 cris_npp 37 -0.293823E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1630 cris_npp 49 -0.253002E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1631 cris_npp 51 -0.265771E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1632 cris_npp 53 -0.293988E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1633 cris_npp 59 -0.170872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1634 cris_npp 61 -0.189747E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1635 cris_npp 63 -0.198509E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1636 cris_npp 64 -0.121128E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1637 cris_npp 65 -0.132064E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1638 cris_npp 67 -0.439008E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1639 cris_npp 69 -0.567763E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1640 cris_npp 71 -0.711869E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1641 cris_npp 73 -0.237972E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1642 cris_npp 75 0.807296E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1643 cris_npp 79 0.983883E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1644 cris_npp 80 0.187728E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1645 cris_npp 81 0.121682E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1646 cris_npp 83 0.209035E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1647 cris_npp 85 0.244429E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1648 cris_npp 87 0.257030E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1649 cris_npp 88 0.304946E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1650 cris_npp 89 0.288750E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1651 cris_npp 93 0.383476E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1652 cris_npp 95 0.361326E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1653 cris_npp 96 0.397583E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1654 cris_npp 99 0.442829E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1655 cris_npp 101 0.471084E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1656 cris_npp 102 0.488649E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1657 cris_npp 104 0.509067E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1658 cris_npp 106 0.489721E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1659 cris_npp 107 0.500655E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1660 cris_npp 111 0.311694E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1661 cris_npp 113 -0.134477E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1662 cris_npp 116 0.503628E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1663 cris_npp 120 0.463775E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1664 cris_npp 123 0.477283E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1665 cris_npp 124 0.475622E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1666 cris_npp 125 0.467837E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1667 cris_npp 126 0.474384E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1668 cris_npp 130 0.534758E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1669 cris_npp 132 0.506297E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1670 cris_npp 133 0.492551E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1671 cris_npp 136 0.474254E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1672 cris_npp 137 0.474376E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1673 cris_npp 138 0.478740E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1674 cris_npp 142 0.502235E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1675 cris_npp 143 0.504153E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1676 cris_npp 144 0.510123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1677 cris_npp 145 0.545259E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1678 cris_npp 147 0.492832E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1679 cris_npp 148 0.500221E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1680 cris_npp 150 0.446514E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1681 cris_npp 151 0.489155E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1682 cris_npp 153 0.543641E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1683 cris_npp 154 0.470366E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1684 cris_npp 155 0.418125E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1685 cris_npp 157 0.419268E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1686 cris_npp 158 0.474242E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1687 cris_npp 159 0.442640E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1688 cris_npp 160 0.405725E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1689 cris_npp 161 0.404520E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1690 cris_npp 162 0.349840E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1691 cris_npp 163 0.415136E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1692 cris_npp 164 0.426014E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1693 cris_npp 165 0.447639E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1694 cris_npp 166 0.432606E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1695 cris_npp 168 0.521428E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1696 cris_npp 170 0.398550E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1697 cris_npp 171 0.353930E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1698 cris_npp 173 0.322861E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1699 cris_npp 175 0.292373E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1700 cris_npp 181 0.217998E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1701 cris_npp 183 0.215379E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1702 cris_npp 198 0.170924E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1703 cris_npp 208 0.278721E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1704 cris_npp 211 0.155693E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1705 cris_npp 216 0.423105E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1706 cris_npp 224 0.141438E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1707 cris_npp 228 0.374507E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1708 cris_npp 236 0.286616E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1709 cris_npp 238 0.428871E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1710 cris_npp 242 0.160063E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1711 cris_npp 248 0.192452E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1712 cris_npp 266 0.145993E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1713 cris_npp 268 0.131791E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1714 cris_npp 279 0.122929E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1715 cris_npp 283 0.133766E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1716 cris_npp 311 0.121254E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1717 cris_npp 317 0.123776E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1718 cris_npp 330 0.132164E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1719 cris_npp 333 0.112105E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1720 cris_npp 334 0.120659E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1721 cris_npp 338 0.106880E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1722 cris_npp 340 0.105240E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1723 cris_npp 341 0.106425E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1724 cris_npp 342 0.105389E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1725 cris_npp 349 0.104098E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1726 cris_npp 352 0.104753E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1727 cris_npp 358 0.104167E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1728 cris_npp 361 0.101961E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1729 cris_npp 364 0.104135E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1730 cris_npp 366 0.158705E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1731 cris_npp 367 0.172299E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1732 cris_npp 368 0.121230E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1733 cris_npp 378 0.101656E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1734 cris_npp 390 0.955833E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1735 cris_npp 391 0.961378E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1736 cris_npp 392 0.950060E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1737 cris_npp 394 0.958195E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1738 cris_npp 395 0.995968E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1739 cris_npp 396 0.101003E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1740 cris_npp 397 0.107366E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1741 cris_npp 398 0.103475E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1742 cris_npp 399 0.958893E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1743 cris_npp 404 0.939108E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1744 cris_npp 427 0.973369E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1745 cris_npp 447 0.113583E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1746 cris_npp 464 0.889632E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1747 cris_npp 473 0.107418E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1748 cris_npp 482 0.918977E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1749 cris_npp 484 0.889889E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1750 cris_npp 501 0.784331E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1751 cris_npp 529 0.835109E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1752 cris_npp 556 0.302477E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1753 cris_npp 557 0.283462E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1754 cris_npp 558 0.349127E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1755 cris_npp 560 0.354898E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1756 cris_npp 561 0.342230E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1757 cris_npp 562 0.353108E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1758 cris_npp 564 0.988424E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1759 cris_npp 565 0.429263E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1760 cris_npp 566 0.144483E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1761 cris_npp 569 -0.496854E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1762 cris_npp 573 -0.174376E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1763 cris_npp 574 -0.153004E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1764 cris_npp 577 0.183374E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1765 cris_npp 580 -0.380210E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1766 cris_npp 581 -0.393581E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1767 cris_npp 584 0.690609E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1768 cris_npp 585 -0.112661E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1769 cris_npp 587 -0.527009E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1770 cris_npp 590 -0.346620E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1771 cris_npp 591 -0.654124E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1772 cris_npp 594 -0.794353E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1773 cris_npp 597 -0.769921E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1774 cris_npp 598 -0.799014E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1775 cris_npp 601 -0.890860E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1776 cris_npp 604 -0.915084E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1777 cris_npp 607 -0.406717E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1778 cris_npp 611 -0.926810E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1779 cris_npp 614 -0.103873E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1780 cris_npp 616 -0.139299E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1781 cris_npp 617 -0.151046E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1782 cris_npp 619 -0.150609E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1783 cris_npp 622 -0.169416E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1784 cris_npp 626 -0.188746E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1785 cris_npp 628 -0.963202E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1786 cris_npp 634 -0.449547E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1787 cris_npp 637 -0.129472E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1788 cris_npp 638 -0.134487E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1789 cris_npp 640 -0.110246E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1790 cris_npp 641 -0.122946E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1791 cris_npp 642 -0.136475E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1792 cris_npp 644 -0.129053E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1793 cris_npp 646 -0.154180E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1794 cris_npp 647 -0.150484E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1795 cris_npp 650 -0.918903E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1796 cris_npp 651 -0.130903E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1797 cris_npp 652 -0.131896E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1798 cris_npp 654 -0.114575E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1799 cris_npp 655 -0.978630E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1800 cris_npp 657 -0.911187E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1801 cris_npp 659 -0.100495E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1802 cris_npp 663 -0.608004E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1803 cris_npp 667 0.159724E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1804 cris_npp 670 0.322502E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1805 cris_npp 707 0.187683E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1806 cris_npp 710 0.551303E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1807 cris_npp 713 0.494694E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1808 cris_npp 716 0.425388E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1809 cris_npp 730 0.186276E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1810 cris_npp 735 0.249584E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1811 cris_npp 736 0.275218E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1812 cris_npp 739 0.268697E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1813 cris_npp 743 0.316147E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1814 cris_npp 744 0.288955E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1815 cris_npp 746 0.278699E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1816 cris_npp 748 0.357393E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1817 cris_npp 751 0.348123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1818 cris_npp 754 0.603184E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1819 cris_npp 755 0.568192E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1820 cris_npp 756 0.487994E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1821 cris_npp 757 0.480856E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1822 cris_npp 758 0.517872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1823 cris_npp 760 0.543086E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1824 cris_npp 761 0.559567E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1825 cris_npp 762 0.576706E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1826 cris_npp 763 0.576859E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1827 cris_npp 766 0.454706E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1828 cris_npp 767 0.446696E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1829 cris_npp 768 0.435962E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1830 cris_npp 771 0.496088E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1831 cris_npp 772 0.482199E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1832 cris_npp 773 0.511060E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1833 cris_npp 776 0.562780E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1834 cris_npp 777 0.533806E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1835 cris_npp 778 0.505274E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1836 cris_npp 779 0.482569E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1837 cris_npp 780 0.481723E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1838 cris_npp 782 0.505281E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1839 cris_npp 783 0.539292E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1840 cris_npp 784 0.516830E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1841 cris_npp 785 0.483671E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1842 cris_npp 786 0.473849E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1843 cris_npp 787 0.459696E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1844 cris_npp 788 0.439144E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1845 cris_npp 789 0.311031E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1846 cris_npp 790 0.221890E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1847 cris_npp 791 0.323616E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1848 cris_npp 792 0.532048E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1849 cris_npp 794 0.503306E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1850 cris_npp 796 0.646028E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1851 cris_npp 798 0.599615E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1852 cris_npp 800 0.631688E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1853 cris_npp 802 0.694442E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1854 cris_npp 803 0.583355E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1855 cris_npp 804 0.516521E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1856 cris_npp 806 0.453848E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1857 cris_npp 807 0.451890E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1858 cris_npp 808 0.478051E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1859 cris_npp 809 0.502175E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1860 cris_npp 811 0.460834E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1861 cris_npp 812 0.471325E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1862 cris_npp 814 0.535375E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1863 cris_npp 816 0.617419E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1864 cris_npp 819 0.629257E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1865 cris_npp 820 0.530049E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1866 cris_npp 821 0.511484E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1867 cris_npp 822 0.508256E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1868 cris_npp 823 0.524973E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1869 cris_npp 824 0.549940E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1870 cris_npp 825 0.626330E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1871 cris_npp 826 0.633160E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1872 cris_npp 827 0.556926E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1873 cris_npp 828 0.526895E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1874 cris_npp 829 0.578501E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1875 cris_npp 830 0.641743E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1876 cris_npp 831 0.594538E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1877 cris_npp 832 0.572467E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1878 cris_npp 833 0.591382E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1879 cris_npp 834 0.642489E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1880 cris_npp 835 0.704813E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1881 cris_npp 836 0.699872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1882 cris_npp 838 0.620107E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1883 cris_npp 839 0.572093E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1884 cris_npp 840 0.625872E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1885 cris_npp 842 0.648981E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1886 cris_npp 843 0.634397E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1887 cris_npp 844 0.710886E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1888 cris_npp 845 0.732000E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1889 cris_npp 846 0.740886E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1890 cris_npp 847 0.686062E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1891 cris_npp 848 0.657662E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1892 cris_npp 849 0.685428E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1893 cris_npp 850 0.667204E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1894 cris_npp 851 0.595566E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1895 cris_npp 852 0.583766E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1896 cris_npp 853 0.589288E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1897 cris_npp 854 0.633717E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1898 cris_npp 856 0.748945E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1899 cris_npp 861 0.737658E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1900 cris_npp 862 0.712557E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1901 cris_npp 864 0.753756E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1902 cris_npp 865 0.718973E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1903 cris_npp 866 0.737468E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1904 cris_npp 867 0.688899E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1905 cris_npp 869 0.720540E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1906 cris_npp 871 0.700290E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1907 cris_npp 872 0.622701E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1908 cris_npp 874 0.665130E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1909 cris_npp 876 0.683705E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1910 cris_npp 878 0.706950E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1911 cris_npp 879 0.750955E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1912 cris_npp 880 0.736922E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1913 cris_npp 884 0.738295E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1914 cris_npp 886 0.722467E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1915 cris_npp 887 0.688610E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1916 cris_npp 888 0.708513E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1917 cris_npp 889 0.744573E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1918 cris_npp 890 0.719785E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1919 cris_npp 900 0.660728E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1920 cris_npp 921 0.759078E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1921 cris_npp 924 0.542586E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1922 cris_npp 927 0.683883E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1923 cris_npp 945 0.623145E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1924 cris_npp 991 0.619586E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1925 cris_npp 994 0.347018E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1926 cris_npp 1007 0.445091E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1927 cris_npp 1015 0.698581E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1928 cris_npp 1030 0.709031E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1929 cris_npp 1094 0.415120E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1930 cris_npp 1106 0.326938E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1931 cris_npp 1130 0.688950E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1932 cris_npp 1132 0.658769E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1933 cris_npp 1133 0.481369E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1934 cris_npp 1135 0.713357E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1935 cris_npp 1142 0.734453E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1936 cris_npp 1147 0.165123E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1937 cris_npp 1148 0.155232E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1938 cris_npp 1149 0.185390E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1939 cris_npp 1150 0.224202E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1940 cris_npp 1151 0.187165E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1941 cris_npp 1152 0.168323E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1942 cris_npp 1153 0.199024E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1943 cris_npp 1154 0.222185E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1944 cris_npp 1155 0.219711E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1945 cris_npp 1156 0.239777E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1946 cris_npp 1157 0.283769E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1947 cris_npp 1158 0.333179E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1948 cris_npp 1159 0.376148E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1949 cris_npp 1160 0.402747E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1950 cris_npp 1161 0.389271E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1951 cris_npp 1162 0.394403E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1952 cris_npp 1163 0.429445E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1953 cris_npp 1164 0.449707E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1954 cris_npp 1165 0.446412E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1955 cris_npp 1166 0.451317E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1956 cris_npp 1167 0.456060E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1957 cris_npp 1168 0.452975E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1958 cris_npp 1169 0.443987E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1959 cris_npp 1170 0.442692E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1960 cris_npp 1171 0.431994E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1961 cris_npp 1172 0.434541E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1962 cris_npp 1173 0.443142E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1963 cris_npp 1174 0.443275E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1964 cris_npp 1175 0.452402E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1965 cris_npp 1177 0.426917E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1966 cris_npp 1178 0.384213E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1967 cris_npp 1179 0.355797E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1968 cris_npp 1180 0.353923E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1969 cris_npp 1181 0.351116E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1970 cris_npp 1187 0.258045E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1971 cris_npp 1189 0.190515E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1972 cris_npp 1190 0.147889E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1973 cris_npp 1192 0.901627E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1974 cris_npp 1193 0.513814E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1975 cris_npp 1194 0.297360E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1976 cris_npp 1196 0.245652E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1977 cris_npp 1197 0.594073E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1978 cris_npp 1198 0.147269E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1979 cris_npp 1199 0.962481E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1980 cris_npp 1200 -0.201528E-01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1981 cris_npp 1202 -0.862232E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1982 cris_npp 1203 -0.108483E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1983 cris_npp 1204 -0.116549E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1984 cris_npp 1206 -0.154749E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1985 cris_npp 1207 -0.162959E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1986 cris_npp 1208 -0.214354E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1987 cris_npp 1210 -0.287594E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1988 cris_npp 1212 -0.337230E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1989 cris_npp 1214 -0.386121E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1990 cris_npp 1215 -0.394713E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1991 cris_npp 1217 -0.415888E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1992 cris_npp 1218 -0.418642E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1993 cris_npp 1220 -0.420070E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1994 cris_npp 1222 -0.430208E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1995 cris_npp 1224 -0.394162E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1996 cris_npp 1226 -0.424047E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1997 cris_npp 1228 -0.457201E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1998 cris_npp 1229 -0.470360E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 1999 cris_npp 1231 -0.447740E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2000 cris_npp 1232 -0.431378E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2001 cris_npp 1234 -0.378869E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2002 cris_npp 1235 -0.333278E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2003 cris_npp 1236 -0.237736E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2004 cris_npp 1237 -0.832823E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2005 cris_npp 1238 0.107211E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2006 cris_npp 1239 0.331505E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2007 cris_npp 1241 0.547291E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2008 cris_npp 1242 0.473168E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2009 cris_npp 1243 0.403743E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2010 cris_npp 1244 0.361718E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2011 cris_npp 1245 0.331791E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2012 cris_npp 1247 0.282696E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2013 cris_npp 1250 0.243832E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2014 cris_npp 1270 0.121306E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2015 cris_npp 1271 0.120592E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2016 cris_npp 1282 0.715540E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2017 cris_npp 1285 0.550362E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2018 cris_npp 1288 0.471795E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2019 cris_npp 1290 0.492558E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2020 cris_npp 1293 0.415552E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2021 cris_npp 1298 0.566562E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2022 cris_npp 1301 0.721132E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2023 hirs4_metop-b 1 -0.361149E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2024 hirs4_metop-b 2 -0.279181E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2025 hirs4_metop-b 3 -0.907663E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2026 hirs4_metop-b 4 0.211534E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2027 hirs4_metop-b 5 0.397714E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2028 hirs4_metop-b 6 0.453282E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2029 hirs4_metop-b 7 0.399813E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2030 hirs4_metop-b 8 0.946038E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2031 hirs4_metop-b 9 -0.846379E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2032 hirs4_metop-b 10 0.201550E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2033 hirs4_metop-b 11 0.590841E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2034 hirs4_metop-b 12 0.605020E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2035 hirs4_metop-b 13 0.319800E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2036 hirs4_metop-b 14 0.432720E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2037 hirs4_metop-b 15 0.418436E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2038 hirs4_metop-b 16 0.339915E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2039 hirs4_metop-b 17 0.213143E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2040 hirs4_metop-b 18 0.523052E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2041 hirs4_metop-b 19 0.525224E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2042 amsua_metop-b 1 0.562032E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2043 amsua_metop-b 2 0.295326E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2044 amsua_metop-b 3 0.176150E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2045 amsua_metop-b 4 0.392623E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2046 amsua_metop-b 5 0.493756E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2047 amsua_metop-b 6 0.488377E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2048 amsua_metop-b 7 0.390662E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2049 amsua_metop-b 8 0.252374E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2050 amsua_metop-b 9 -0.101959E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2051 amsua_metop-b 10 -0.271340E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2052 amsua_metop-b 11 -0.388111E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2053 amsua_metop-b 12 -0.552102E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2054 amsua_metop-b 13 -0.696472E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2055 amsua_metop-b 14 -0.433685E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2056 amsua_metop-b 15 0.949430E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2057 mhs_metop-b 1 0.898545E+00 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2058 mhs_metop-b 2 0.187520E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2059 mhs_metop-b 3 0.759304E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2060 mhs_metop-b 4 0.578424E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2061 mhs_metop-b 5 0.397431E+01 0.100000E+07 999 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2062 iasi616_metop-b 16 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2063 iasi616_metop-b 29 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2064 iasi616_metop-b 32 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2065 iasi616_metop-b 35 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2066 iasi616_metop-b 38 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2067 iasi616_metop-b 41 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2068 iasi616_metop-b 44 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2069 iasi616_metop-b 47 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2070 iasi616_metop-b 49 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2071 iasi616_metop-b 50 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2072 iasi616_metop-b 51 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2073 iasi616_metop-b 53 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2074 iasi616_metop-b 55 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2075 iasi616_metop-b 56 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2076 iasi616_metop-b 57 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2077 iasi616_metop-b 59 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2078 iasi616_metop-b 61 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2079 iasi616_metop-b 62 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2080 iasi616_metop-b 63 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2081 iasi616_metop-b 66 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2082 iasi616_metop-b 68 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2083 iasi616_metop-b 70 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2084 iasi616_metop-b 72 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2085 iasi616_metop-b 74 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2086 iasi616_metop-b 76 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2087 iasi616_metop-b 78 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2088 iasi616_metop-b 79 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2089 iasi616_metop-b 81 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2090 iasi616_metop-b 82 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2091 iasi616_metop-b 83 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2092 iasi616_metop-b 84 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2093 iasi616_metop-b 85 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2094 iasi616_metop-b 86 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2095 iasi616_metop-b 87 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2096 iasi616_metop-b 89 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2097 iasi616_metop-b 92 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2098 iasi616_metop-b 93 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2099 iasi616_metop-b 95 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2100 iasi616_metop-b 97 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2101 iasi616_metop-b 99 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2102 iasi616_metop-b 101 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2103 iasi616_metop-b 103 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2104 iasi616_metop-b 104 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2105 iasi616_metop-b 106 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2106 iasi616_metop-b 109 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2107 iasi616_metop-b 110 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2108 iasi616_metop-b 111 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2109 iasi616_metop-b 113 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2110 iasi616_metop-b 116 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2111 iasi616_metop-b 119 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2112 iasi616_metop-b 122 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2113 iasi616_metop-b 125 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2114 iasi616_metop-b 128 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2115 iasi616_metop-b 131 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2116 iasi616_metop-b 133 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2117 iasi616_metop-b 135 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2118 iasi616_metop-b 138 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2119 iasi616_metop-b 141 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2120 iasi616_metop-b 144 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2121 iasi616_metop-b 146 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2122 iasi616_metop-b 148 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2123 iasi616_metop-b 150 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2124 iasi616_metop-b 151 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2125 iasi616_metop-b 154 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2126 iasi616_metop-b 157 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2127 iasi616_metop-b 159 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2128 iasi616_metop-b 160 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2129 iasi616_metop-b 161 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2130 iasi616_metop-b 163 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2131 iasi616_metop-b 167 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2132 iasi616_metop-b 170 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2133 iasi616_metop-b 173 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2134 iasi616_metop-b 176 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2135 iasi616_metop-b 179 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2136 iasi616_metop-b 180 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2137 iasi616_metop-b 185 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2138 iasi616_metop-b 187 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2139 iasi616_metop-b 191 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2140 iasi616_metop-b 193 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2141 iasi616_metop-b 197 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2142 iasi616_metop-b 199 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2143 iasi616_metop-b 200 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2144 iasi616_metop-b 202 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2145 iasi616_metop-b 203 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2146 iasi616_metop-b 205 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2147 iasi616_metop-b 207 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2148 iasi616_metop-b 210 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2149 iasi616_metop-b 212 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2150 iasi616_metop-b 213 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2151 iasi616_metop-b 214 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2152 iasi616_metop-b 217 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2153 iasi616_metop-b 218 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2154 iasi616_metop-b 219 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2155 iasi616_metop-b 222 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2156 iasi616_metop-b 224 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2157 iasi616_metop-b 225 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2158 iasi616_metop-b 226 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2159 iasi616_metop-b 228 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2160 iasi616_metop-b 230 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2161 iasi616_metop-b 231 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2162 iasi616_metop-b 232 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2163 iasi616_metop-b 236 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2164 iasi616_metop-b 237 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2165 iasi616_metop-b 239 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2166 iasi616_metop-b 243 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2167 iasi616_metop-b 246 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2168 iasi616_metop-b 249 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2169 iasi616_metop-b 252 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2170 iasi616_metop-b 254 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2171 iasi616_metop-b 259 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2172 iasi616_metop-b 260 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2173 iasi616_metop-b 262 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2174 iasi616_metop-b 265 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2175 iasi616_metop-b 267 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2176 iasi616_metop-b 269 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2177 iasi616_metop-b 275 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2178 iasi616_metop-b 279 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2179 iasi616_metop-b 282 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2180 iasi616_metop-b 285 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2181 iasi616_metop-b 294 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2182 iasi616_metop-b 296 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2183 iasi616_metop-b 299 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2184 iasi616_metop-b 300 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2185 iasi616_metop-b 303 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2186 iasi616_metop-b 306 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2187 iasi616_metop-b 309 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2188 iasi616_metop-b 313 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2189 iasi616_metop-b 320 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2190 iasi616_metop-b 323 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2191 iasi616_metop-b 326 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2192 iasi616_metop-b 327 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2193 iasi616_metop-b 329 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2194 iasi616_metop-b 332 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2195 iasi616_metop-b 335 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2196 iasi616_metop-b 345 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2197 iasi616_metop-b 347 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2198 iasi616_metop-b 350 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2199 iasi616_metop-b 354 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2200 iasi616_metop-b 356 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2201 iasi616_metop-b 360 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2202 iasi616_metop-b 363 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2203 iasi616_metop-b 366 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2204 iasi616_metop-b 371 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2205 iasi616_metop-b 372 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2206 iasi616_metop-b 373 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2207 iasi616_metop-b 375 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2208 iasi616_metop-b 377 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2209 iasi616_metop-b 379 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2210 iasi616_metop-b 381 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2211 iasi616_metop-b 383 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2212 iasi616_metop-b 386 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2213 iasi616_metop-b 389 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2214 iasi616_metop-b 398 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2215 iasi616_metop-b 401 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2216 iasi616_metop-b 404 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2217 iasi616_metop-b 405 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2218 iasi616_metop-b 407 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2219 iasi616_metop-b 408 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2220 iasi616_metop-b 410 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2221 iasi616_metop-b 411 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2222 iasi616_metop-b 414 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2223 iasi616_metop-b 416 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2224 iasi616_metop-b 418 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2225 iasi616_metop-b 423 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2226 iasi616_metop-b 426 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2227 iasi616_metop-b 428 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2228 iasi616_metop-b 432 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2229 iasi616_metop-b 433 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2230 iasi616_metop-b 434 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2231 iasi616_metop-b 439 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2232 iasi616_metop-b 442 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2233 iasi616_metop-b 445 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2234 iasi616_metop-b 450 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2235 iasi616_metop-b 457 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2236 iasi616_metop-b 459 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2237 iasi616_metop-b 472 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2238 iasi616_metop-b 477 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2239 iasi616_metop-b 483 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2240 iasi616_metop-b 509 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2241 iasi616_metop-b 515 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2242 iasi616_metop-b 546 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2243 iasi616_metop-b 552 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2244 iasi616_metop-b 559 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2245 iasi616_metop-b 566 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2246 iasi616_metop-b 571 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2247 iasi616_metop-b 573 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2248 iasi616_metop-b 578 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2249 iasi616_metop-b 584 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2250 iasi616_metop-b 594 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2251 iasi616_metop-b 625 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2252 iasi616_metop-b 646 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2253 iasi616_metop-b 662 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2254 iasi616_metop-b 668 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2255 iasi616_metop-b 705 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2256 iasi616_metop-b 739 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2257 iasi616_metop-b 756 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2258 iasi616_metop-b 797 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2259 iasi616_metop-b 867 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2260 iasi616_metop-b 906 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2261 iasi616_metop-b 921 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2262 iasi616_metop-b 1027 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2263 iasi616_metop-b 1046 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2264 iasi616_metop-b 1090 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2265 iasi616_metop-b 1098 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2266 iasi616_metop-b 1121 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2267 iasi616_metop-b 1133 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2268 iasi616_metop-b 1173 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2269 iasi616_metop-b 1191 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2270 iasi616_metop-b 1194 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2271 iasi616_metop-b 1222 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2272 iasi616_metop-b 1271 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2273 iasi616_metop-b 1283 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2274 iasi616_metop-b 1338 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2275 iasi616_metop-b 1409 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2276 iasi616_metop-b 1414 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2277 iasi616_metop-b 1420 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2278 iasi616_metop-b 1424 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2279 iasi616_metop-b 1427 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2280 iasi616_metop-b 1430 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2281 iasi616_metop-b 1434 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2282 iasi616_metop-b 1440 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2283 iasi616_metop-b 1442 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2284 iasi616_metop-b 1445 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2285 iasi616_metop-b 1450 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2286 iasi616_metop-b 1454 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2287 iasi616_metop-b 1460 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2288 iasi616_metop-b 1463 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2289 iasi616_metop-b 1469 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2290 iasi616_metop-b 1474 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2291 iasi616_metop-b 1479 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2292 iasi616_metop-b 1483 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2293 iasi616_metop-b 1487 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2294 iasi616_metop-b 1494 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2295 iasi616_metop-b 1496 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2296 iasi616_metop-b 1502 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2297 iasi616_metop-b 1505 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2298 iasi616_metop-b 1509 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2299 iasi616_metop-b 1510 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2300 iasi616_metop-b 1513 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2301 iasi616_metop-b 1518 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2302 iasi616_metop-b 1521 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2303 iasi616_metop-b 1526 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2304 iasi616_metop-b 1529 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2305 iasi616_metop-b 1532 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2306 iasi616_metop-b 1536 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2307 iasi616_metop-b 1537 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2308 iasi616_metop-b 1541 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2309 iasi616_metop-b 1545 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2310 iasi616_metop-b 1548 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2311 iasi616_metop-b 1553 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2312 iasi616_metop-b 1560 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2313 iasi616_metop-b 1568 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2314 iasi616_metop-b 1574 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2315 iasi616_metop-b 1579 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2316 iasi616_metop-b 1583 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2317 iasi616_metop-b 1585 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2318 iasi616_metop-b 1587 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2319 iasi616_metop-b 1606 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2320 iasi616_metop-b 1626 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2321 iasi616_metop-b 1639 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2322 iasi616_metop-b 1643 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2323 iasi616_metop-b 1652 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2324 iasi616_metop-b 1658 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2325 iasi616_metop-b 1659 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2326 iasi616_metop-b 1666 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2327 iasi616_metop-b 1671 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2328 iasi616_metop-b 1675 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2329 iasi616_metop-b 1681 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2330 iasi616_metop-b 1694 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2331 iasi616_metop-b 1697 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2332 iasi616_metop-b 1710 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2333 iasi616_metop-b 1786 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2334 iasi616_metop-b 1791 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2335 iasi616_metop-b 1805 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2336 iasi616_metop-b 1839 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2337 iasi616_metop-b 1884 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2338 iasi616_metop-b 1913 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2339 iasi616_metop-b 1946 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2340 iasi616_metop-b 1947 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2341 iasi616_metop-b 1991 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2342 iasi616_metop-b 2019 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2343 iasi616_metop-b 2094 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2344 iasi616_metop-b 2119 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2345 iasi616_metop-b 2213 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2346 iasi616_metop-b 2239 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2347 iasi616_metop-b 2271 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2348 iasi616_metop-b 2289 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2349 iasi616_metop-b 2321 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2350 iasi616_metop-b 2333 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2351 iasi616_metop-b 2346 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2352 iasi616_metop-b 2349 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2353 iasi616_metop-b 2352 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2354 iasi616_metop-b 2359 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2355 iasi616_metop-b 2367 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2356 iasi616_metop-b 2374 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2357 iasi616_metop-b 2398 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2358 iasi616_metop-b 2426 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2359 iasi616_metop-b 2562 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2360 iasi616_metop-b 2701 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2361 iasi616_metop-b 2741 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2362 iasi616_metop-b 2745 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2363 iasi616_metop-b 2760 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2364 iasi616_metop-b 2819 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2365 iasi616_metop-b 2889 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2366 iasi616_metop-b 2907 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2367 iasi616_metop-b 2910 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2368 iasi616_metop-b 2919 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2369 iasi616_metop-b 2921 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2370 iasi616_metop-b 2939 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2371 iasi616_metop-b 2944 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2372 iasi616_metop-b 2945 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2373 iasi616_metop-b 2948 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2374 iasi616_metop-b 2951 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2375 iasi616_metop-b 2958 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2376 iasi616_metop-b 2971 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2377 iasi616_metop-b 2977 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2378 iasi616_metop-b 2985 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2379 iasi616_metop-b 2988 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2380 iasi616_metop-b 2990 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2381 iasi616_metop-b 2991 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2382 iasi616_metop-b 2993 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2383 iasi616_metop-b 3002 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2384 iasi616_metop-b 3008 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2385 iasi616_metop-b 3014 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2386 iasi616_metop-b 3027 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2387 iasi616_metop-b 3029 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2388 iasi616_metop-b 3030 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2389 iasi616_metop-b 3036 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2390 iasi616_metop-b 3047 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2391 iasi616_metop-b 3049 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2392 iasi616_metop-b 3052 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2393 iasi616_metop-b 3053 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2394 iasi616_metop-b 3055 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2395 iasi616_metop-b 3058 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2396 iasi616_metop-b 3064 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2397 iasi616_metop-b 3069 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2398 iasi616_metop-b 3087 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2399 iasi616_metop-b 3093 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2400 iasi616_metop-b 3098 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2401 iasi616_metop-b 3105 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2402 iasi616_metop-b 3107 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2403 iasi616_metop-b 3110 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2404 iasi616_metop-b 3116 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2405 iasi616_metop-b 3127 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2406 iasi616_metop-b 3129 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2407 iasi616_metop-b 3136 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2408 iasi616_metop-b 3146 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2409 iasi616_metop-b 3151 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2410 iasi616_metop-b 3160 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2411 iasi616_metop-b 3165 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2412 iasi616_metop-b 3168 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2413 iasi616_metop-b 3175 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2414 iasi616_metop-b 3178 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2415 iasi616_metop-b 3189 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2416 iasi616_metop-b 3207 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2417 iasi616_metop-b 3228 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2418 iasi616_metop-b 3244 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2419 iasi616_metop-b 3248 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2420 iasi616_metop-b 3252 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2421 iasi616_metop-b 3256 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2422 iasi616_metop-b 3263 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2423 iasi616_metop-b 3281 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2424 iasi616_metop-b 3295 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2425 iasi616_metop-b 3303 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2426 iasi616_metop-b 3309 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2427 iasi616_metop-b 3312 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2428 iasi616_metop-b 3322 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2429 iasi616_metop-b 3326 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2430 iasi616_metop-b 3354 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2431 iasi616_metop-b 3366 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2432 iasi616_metop-b 3375 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2433 iasi616_metop-b 3378 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2434 iasi616_metop-b 3411 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2435 iasi616_metop-b 3416 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2436 iasi616_metop-b 3432 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2437 iasi616_metop-b 3438 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2438 iasi616_metop-b 3440 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2439 iasi616_metop-b 3442 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2440 iasi616_metop-b 3444 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2441 iasi616_metop-b 3446 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2442 iasi616_metop-b 3448 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2443 iasi616_metop-b 3450 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2444 iasi616_metop-b 3452 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2445 iasi616_metop-b 3454 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2446 iasi616_metop-b 3458 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2447 iasi616_metop-b 3467 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2448 iasi616_metop-b 3476 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2449 iasi616_metop-b 3484 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2450 iasi616_metop-b 3491 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2451 iasi616_metop-b 3497 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2452 iasi616_metop-b 3499 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2453 iasi616_metop-b 3504 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2454 iasi616_metop-b 3506 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2455 iasi616_metop-b 3509 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2456 iasi616_metop-b 3518 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2457 iasi616_metop-b 3527 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2458 iasi616_metop-b 3555 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2459 iasi616_metop-b 3575 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2460 iasi616_metop-b 3577 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2461 iasi616_metop-b 3580 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2462 iasi616_metop-b 3582 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2463 iasi616_metop-b 3586 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2464 iasi616_metop-b 3589 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2465 iasi616_metop-b 3599 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2466 iasi616_metop-b 3610 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2467 iasi616_metop-b 3626 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2468 iasi616_metop-b 3638 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2469 iasi616_metop-b 3646 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2470 iasi616_metop-b 3653 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2471 iasi616_metop-b 3658 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2472 iasi616_metop-b 3661 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2473 iasi616_metop-b 3673 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2474 iasi616_metop-b 3689 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2475 iasi616_metop-b 3700 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2476 iasi616_metop-b 3710 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2477 iasi616_metop-b 3726 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2478 iasi616_metop-b 3763 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2479 iasi616_metop-b 3814 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2480 iasi616_metop-b 3841 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2481 iasi616_metop-b 3888 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2482 iasi616_metop-b 4032 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2483 iasi616_metop-b 4059 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2484 iasi616_metop-b 4068 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2485 iasi616_metop-b 4082 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2486 iasi616_metop-b 4095 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2487 iasi616_metop-b 4160 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2488 iasi616_metop-b 4234 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2489 iasi616_metop-b 4257 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2490 iasi616_metop-b 4411 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2491 iasi616_metop-b 4498 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2492 iasi616_metop-b 4520 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2493 iasi616_metop-b 4552 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2494 iasi616_metop-b 4567 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2495 iasi616_metop-b 4608 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2496 iasi616_metop-b 4646 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2497 iasi616_metop-b 4698 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2498 iasi616_metop-b 4808 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2499 iasi616_metop-b 4849 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2500 iasi616_metop-b 4920 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2501 iasi616_metop-b 4939 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2502 iasi616_metop-b 4947 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2503 iasi616_metop-b 4967 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2504 iasi616_metop-b 4991 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2505 iasi616_metop-b 4996 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2506 iasi616_metop-b 5015 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2507 iasi616_metop-b 5028 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2508 iasi616_metop-b 5056 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2509 iasi616_metop-b 5128 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2510 iasi616_metop-b 5130 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2511 iasi616_metop-b 5144 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2512 iasi616_metop-b 5170 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2513 iasi616_metop-b 5178 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2514 iasi616_metop-b 5183 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2515 iasi616_metop-b 5188 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2516 iasi616_metop-b 5191 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2517 iasi616_metop-b 5368 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2518 iasi616_metop-b 5371 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2519 iasi616_metop-b 5379 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2520 iasi616_metop-b 5381 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2521 iasi616_metop-b 5383 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2522 iasi616_metop-b 5397 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2523 iasi616_metop-b 5399 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2524 iasi616_metop-b 5401 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2525 iasi616_metop-b 5403 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2526 iasi616_metop-b 5405 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2527 iasi616_metop-b 5446 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2528 iasi616_metop-b 5455 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2529 iasi616_metop-b 5472 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2530 iasi616_metop-b 5480 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2531 iasi616_metop-b 5483 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2532 iasi616_metop-b 5485 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2533 iasi616_metop-b 5492 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2534 iasi616_metop-b 5497 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2535 iasi616_metop-b 5502 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2536 iasi616_metop-b 5507 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2537 iasi616_metop-b 5509 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2538 iasi616_metop-b 5517 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2539 iasi616_metop-b 5528 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2540 iasi616_metop-b 5558 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2541 iasi616_metop-b 5697 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2542 iasi616_metop-b 5714 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2543 iasi616_metop-b 5749 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2544 iasi616_metop-b 5766 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2545 iasi616_metop-b 5785 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2546 iasi616_metop-b 5798 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2547 iasi616_metop-b 5799 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2548 iasi616_metop-b 5801 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2549 iasi616_metop-b 5817 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2550 iasi616_metop-b 5833 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2551 iasi616_metop-b 5834 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2552 iasi616_metop-b 5836 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2553 iasi616_metop-b 5849 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2554 iasi616_metop-b 5851 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2555 iasi616_metop-b 5852 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2556 iasi616_metop-b 5865 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2557 iasi616_metop-b 5869 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2558 iasi616_metop-b 5881 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2559 iasi616_metop-b 5884 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2560 iasi616_metop-b 5897 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2561 iasi616_metop-b 5900 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2562 iasi616_metop-b 5916 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2563 iasi616_metop-b 5932 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2564 iasi616_metop-b 5948 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2565 iasi616_metop-b 5963 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2566 iasi616_metop-b 5968 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2567 iasi616_metop-b 5978 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2568 iasi616_metop-b 5988 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2569 iasi616_metop-b 5992 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2570 iasi616_metop-b 5994 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2571 iasi616_metop-b 5997 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2572 iasi616_metop-b 6003 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2573 iasi616_metop-b 6008 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2574 iasi616_metop-b 6023 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2575 iasi616_metop-b 6026 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2576 iasi616_metop-b 6039 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2577 iasi616_metop-b 6053 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2578 iasi616_metop-b 6056 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2579 iasi616_metop-b 6067 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2580 iasi616_metop-b 6071 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2581 iasi616_metop-b 6082 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2582 iasi616_metop-b 6085 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2583 iasi616_metop-b 6098 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2584 iasi616_metop-b 6112 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2585 iasi616_metop-b 6126 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2586 iasi616_metop-b 6135 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2587 iasi616_metop-b 6140 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2588 iasi616_metop-b 6149 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2589 iasi616_metop-b 6154 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2590 iasi616_metop-b 6158 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2591 iasi616_metop-b 6161 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2592 iasi616_metop-b 6168 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2593 iasi616_metop-b 6174 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2594 iasi616_metop-b 6182 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2595 iasi616_metop-b 6187 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2596 iasi616_metop-b 6205 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2597 iasi616_metop-b 6209 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2598 iasi616_metop-b 6213 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2599 iasi616_metop-b 6317 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2600 iasi616_metop-b 6339 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2601 iasi616_metop-b 6342 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2602 iasi616_metop-b 6366 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2603 iasi616_metop-b 6381 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2604 iasi616_metop-b 6391 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2605 iasi616_metop-b 6489 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2606 iasi616_metop-b 6962 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2607 iasi616_metop-b 6966 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2608 iasi616_metop-b 6970 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2609 iasi616_metop-b 6975 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2610 iasi616_metop-b 6977 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2611 iasi616_metop-b 6982 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2612 iasi616_metop-b 6985 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2613 iasi616_metop-b 6987 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2614 iasi616_metop-b 6989 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2615 iasi616_metop-b 6991 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2616 iasi616_metop-b 6993 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2617 iasi616_metop-b 6995 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2618 iasi616_metop-b 6997 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2619 iasi616_metop-b 6999 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2620 iasi616_metop-b 7000 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2621 iasi616_metop-b 7004 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2622 iasi616_metop-b 7008 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2623 iasi616_metop-b 7013 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2624 iasi616_metop-b 7016 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2625 iasi616_metop-b 7021 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2626 iasi616_metop-b 7024 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2627 iasi616_metop-b 7027 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2628 iasi616_metop-b 7029 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2629 iasi616_metop-b 7032 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2630 iasi616_metop-b 7038 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2631 iasi616_metop-b 7043 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2632 iasi616_metop-b 7046 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2633 iasi616_metop-b 7049 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2634 iasi616_metop-b 7069 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2635 iasi616_metop-b 7072 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2636 iasi616_metop-b 7076 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2637 iasi616_metop-b 7081 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2638 iasi616_metop-b 7084 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2639 iasi616_metop-b 7089 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2640 iasi616_metop-b 7099 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2641 iasi616_metop-b 7209 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2642 iasi616_metop-b 7222 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2643 iasi616_metop-b 7231 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2644 iasi616_metop-b 7235 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2645 iasi616_metop-b 7247 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2646 iasi616_metop-b 7267 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2647 iasi616_metop-b 7269 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2648 iasi616_metop-b 7284 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2649 iasi616_metop-b 7389 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2650 iasi616_metop-b 7419 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2651 iasi616_metop-b 7423 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2652 iasi616_metop-b 7424 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2653 iasi616_metop-b 7426 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2654 iasi616_metop-b 7428 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2655 iasi616_metop-b 7431 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2656 iasi616_metop-b 7436 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2657 iasi616_metop-b 7444 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2658 iasi616_metop-b 7475 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2659 iasi616_metop-b 7549 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2660 iasi616_metop-b 7584 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2661 iasi616_metop-b 7665 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2662 iasi616_metop-b 7666 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2663 iasi616_metop-b 7831 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2664 iasi616_metop-b 7836 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2665 iasi616_metop-b 7853 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2666 iasi616_metop-b 7865 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2667 iasi616_metop-b 7885 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2668 iasi616_metop-b 7888 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2669 iasi616_metop-b 7912 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2670 iasi616_metop-b 7950 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2671 iasi616_metop-b 7972 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2672 iasi616_metop-b 7980 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2673 iasi616_metop-b 7995 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2674 iasi616_metop-b 8007 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2675 iasi616_metop-b 8015 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2676 iasi616_metop-b 8055 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2677 iasi616_metop-b 8078 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2678 avhrr3_metop-b 3 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2679 avhrr3_metop-b 4 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 + 2680 avhrr3_metop-b 5 0.000000E+00 0.000000E+00 0 + 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 + 0.000000 0.000000 diff --git a/fix/gsi/rrfs.starting_radstat b/fix/gsi/rrfs.starting_radstat new file mode 120000 index 000000000..1fa6602ac --- /dev/null +++ b/fix/gsi/rrfs.starting_radstat @@ -0,0 +1 @@ +../.agent/gsi/rrfs.starting_radstat \ No newline at end of file diff --git a/fix/gsi/rrfs.starting_satbias b/fix/gsi/rrfs.starting_satbias new file mode 120000 index 000000000..95e0587fc --- /dev/null +++ b/fix/gsi/rrfs.starting_satbias @@ -0,0 +1 @@ +../.agent/gsi/rrfs.starting_satbias \ No newline at end of file diff --git a/fix/gsi/rrfs.starting_satbias_pc b/fix/gsi/rrfs.starting_satbias_pc new file mode 120000 index 000000000..6d8d6f65a --- /dev/null +++ b/fix/gsi/rrfs.starting_satbias_pc @@ -0,0 +1 @@ +../.agent/gsi/rrfs.starting_satbias_pc \ No newline at end of file diff --git a/fix/gsi/rrfs_glb_berror.l127y770.f77 b/fix/gsi/rrfs_glb_berror.l127y770.f77 new file mode 120000 index 000000000..092db9a85 --- /dev/null +++ b/fix/gsi/rrfs_glb_berror.l127y770.f77 @@ -0,0 +1 @@ +../.agent/gsi/rrfs_glb_berror.l127y770.f77 \ No newline at end of file diff --git a/fix/gsi/use_raphrrr_sfc.namelist b/fix/gsi/use_raphrrr_sfc.namelist new file mode 100644 index 000000000..d892205c0 --- /dev/null +++ b/fix/gsi/use_raphrrr_sfc.namelist @@ -0,0 +1,7 @@ + +&setup + rapfile='sfc_rap' + hrrrfile='sfc_hrrr' + hrrr_akfile='sfc_hrrrak' + rrfsfile='sfc_data.nc' +/ diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo0.nc new file mode 120000 index 000000000..813b86e57 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo4.nc new file mode 120000 index 000000000..e6da9455a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..15deb2ba8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..258a7d473 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..cf479a086 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..de7840993 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..e73254915 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..64abfc658 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..79762c513 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..bdef1725c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..b751c9428 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..1a25047ed --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..7c3560bbb --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..e93707170 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..05f876374 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..e019985ca --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo3.nc new file mode 120000 index 000000000..03418adb8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo4.nc new file mode 120000 index 000000000..4944388cf --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo6.nc new file mode 120000 index 000000000..484eb37ac --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo3.nc new file mode 120000 index 000000000..61902ddd5 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo4.nc new file mode 120000 index 000000000..44bbe7476 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo6.nc new file mode 120000 index 000000000..0188cdad0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..cae3a5872 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..822b42c20 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3342_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo0.nc new file mode 120000 index 000000000..752ec84cb --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo4.nc new file mode 120000 index 000000000..b0f91ac29 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..a24c8c2d3 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..c3e904429 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..0f3bb6d47 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..1d1142958 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..43ff7525f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..294df31ac --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..754b68508 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..b82f0be87 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..8020c5f5a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..dad11aafb --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..fa42a5a40 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..072e89ffb --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..d20aa3ed9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..dca973c62 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo3.nc new file mode 120000 index 000000000..a9478163b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo4.nc new file mode 120000 index 000000000..f96a8ad67 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo6.nc new file mode 120000 index 000000000..b2b61f40a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo3.nc new file mode 120000 index 000000000..798d01014 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo4.nc new file mode 120000 index 000000000..003850b35 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo6.nc new file mode 120000 index 000000000..15f9e526b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..aab18b27a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..d64b2fadf --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..9ecc483ad --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..f4bbb117f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3352_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo0.nc new file mode 120000 index 000000000..d452e16f6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo4.nc new file mode 120000 index 000000000..df6fd31c7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..cb5ed9884 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..1ee0664f9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..2d0e9042c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..cfdbdf4c4 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..5648c80ed --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..ffda09b6a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..59251b8ac --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..108102e9c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..1b27601aa --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..92f3d2431 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..14265a418 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..74c92c0ae --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..35833044d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..83f5440a7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo3.nc new file mode 120000 index 000000000..35d26f7d2 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo4.nc new file mode 120000 index 000000000..a871011bb --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo6.nc new file mode 120000 index 000000000..145c43bb7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo3.nc new file mode 120000 index 000000000..ea8cb8566 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo4.nc new file mode 120000 index 000000000..0b03606b6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo6.nc new file mode 120000 index 000000000..85e4305d5 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..62c339368 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..25b5cd55f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..e796cff49 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..0d2fb088f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3357_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km/C3357_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile1.nc new file mode 120000 index 000000000..fe55cdfca --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.facsf.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo0.nc new file mode 120000 index 000000000..8849a4c66 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo4.nc new file mode 120000 index 000000000..29e9b6756 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.nc new file mode 120000 index 000000000..29ea02990 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.facsf.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.facsf.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile1.nc new file mode 120000 index 000000000..50f43290d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.maximum_snow_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..0779c3314 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..849ae1611 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.nc new file mode 120000 index 000000000..669916415 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.maximum_snow_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.maximum_snow_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile1.nc new file mode 120000 index 000000000..31bfd80ce --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.slope_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..adb344f76 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..b36071355 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.nc new file mode 120000 index 000000000..514a13c94 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.slope_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.slope_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile1.nc new file mode 120000 index 000000000..58a99d262 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.snowfree_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..9c7410243 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..f38ae08f4 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.nc new file mode 120000 index 000000000..69ae8ce14 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.snowfree_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.snowfree_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile1.nc new file mode 120000 index 000000000..ef636ea36 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.soil_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..8a0385b10 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..55ed5d802 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.nc new file mode 120000 index 000000000..c29b7932e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.soil_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.soil_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile1.nc new file mode 120000 index 000000000..08a3ca448 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.substrate_temperature.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..218f0dd3f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..d00bd0cd5 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.nc new file mode 120000 index 000000000..e4a4be3d9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.substrate_temperature.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.substrate_temperature.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile1.nc new file mode 120000 index 000000000..04505f4b6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_greenness.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..32f7c45b1 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..9285f088b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.nc new file mode 120000 index 000000000..62b35b482 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_greenness.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_greenness.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile1.nc new file mode 120000 index 000000000..d8b760451 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..a7c971c41 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..b9dfe2c3d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.nc new file mode 120000 index 000000000..ee6779a5c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445.vegetation_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445.vegetation_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo3.nc new file mode 120000 index 000000000..b5ea88e68 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo4.nc new file mode 120000 index 000000000..c7270d2fe --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo6.nc new file mode 120000 index 000000000..7f6633d53 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.nc new file mode 120000 index 000000000..47b96f738 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_grid.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_grid.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo3.nc new file mode 120000 index 000000000..480d9976b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo4.nc new file mode 120000 index 000000000..211d69f83 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo6.nc new file mode 120000 index 000000000..de88274b7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..a519ec8aa --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..36d374bca --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..448e099b0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..1bdb45e8f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C3445_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km/C3445_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo0.nc new file mode 120000 index 000000000..5c429f9d9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo4.nc new file mode 120000 index 000000000..d64d6d98e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..73a24697a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..f0d11228f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..04dedbfc9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..a8b8a9e4d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..2598046c8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..2dae3f1d7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..822015cda --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..6c3567d86 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..b2ac48892 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..686bdd7ad --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..94b7c171c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..53c64a787 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..7a965c0e1 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..a7ab483f0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo3.nc new file mode 120000 index 000000000..3a471a8ee --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo4.nc new file mode 120000 index 000000000..7023aca7c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo6.nc new file mode 120000 index 000000000..fc06fbe6e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo3.nc new file mode 120000 index 000000000..1218332e7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo4.nc new file mode 120000 index 000000000..2fabaec9e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo6.nc new file mode 120000 index 000000000..3b29fd6e8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..0dc98dc76 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..ad5d41326 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..213d9c16d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..8cc9ef946 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C403_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo0.nc new file mode 120000 index 000000000..b98cc6121 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo4.nc new file mode 120000 index 000000000..6be690caa --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..74bdf8bdf --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..9ba6454ae --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..2e2202d5b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..ac2cfce0f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..2d9d46ed6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..b0026078a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..26241c4bf --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..2af9ef072 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..89653d74b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..2032f0882 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..f1aa8b8df --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..7d931dcbd --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..b1ee407b9 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..4e2dad703 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo3.nc new file mode 120000 index 000000000..97cd3eed6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo4.nc new file mode 120000 index 000000000..de63d762e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo6.nc new file mode 120000 index 000000000..57f4f4abc --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo3.nc new file mode 120000 index 000000000..1afc10e80 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo4.nc new file mode 120000 index 000000000..d1334f75c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo6.nc new file mode 120000 index 000000000..39555000f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..001fee3de --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..0a9585574 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..a1cbca3ab --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..62e852cd7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C775_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile1.nc new file mode 120000 index 000000000..9b2c25a73 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.facsf.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo0.nc new file mode 120000 index 000000000..9276fe682 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo4.nc new file mode 120000 index 000000000..d9e5206ff --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.nc new file mode 120000 index 000000000..a0edc9880 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.facsf.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.facsf.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile1.nc new file mode 120000 index 000000000..8a58c94b0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..6e7e082cf --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..ab06c5213 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.nc new file mode 120000 index 000000000..416b459a8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.maximum_snow_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile1.nc new file mode 120000 index 000000000..17ecf98f7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.slope_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..bd9b580f3 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..6d7e74e99 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.nc new file mode 120000 index 000000000..ef425a19c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.slope_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.slope_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile1.nc new file mode 120000 index 000000000..8f76e3402 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.snowfree_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..d2d080af0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..f2df69cef --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.nc new file mode 120000 index 000000000..5fc2d401a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.snowfree_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile1.nc new file mode 120000 index 000000000..b7a663c97 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.soil_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..c818a707c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..009725854 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.nc new file mode 120000 index 000000000..324c5e5a4 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.soil_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.soil_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile1.nc new file mode 120000 index 000000000..3f8b63a1e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.substrate_temperature.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..7f0877ecc --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..41b89789a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.nc new file mode 120000 index 000000000..5f8f09cd6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.substrate_temperature.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.substrate_temperature.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile1.nc new file mode 120000 index 000000000..f2bdac703 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_greenness.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..e5758219b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..af6094e37 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.nc new file mode 120000 index 000000000..0df97ee61 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_greenness.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile1.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile1.nc new file mode 120000 index 000000000..488bb6bb4 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..c0f1639d3 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..4601bde6b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.nc new file mode 120000 index 000000000..b92f19b26 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819.vegetation_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819.vegetation_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo3.nc new file mode 120000 index 000000000..3ca6d3542 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo4.nc new file mode 120000 index 000000000..b654e0cb6 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo6.nc new file mode 120000 index 000000000..8908dee92 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.nc new file mode 120000 index 000000000..3de7b788c --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_grid.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_grid.tile7.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo3.nc new file mode 120000 index 000000000..05a6f17f4 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo4.nc new file mode 120000 index 000000000..b53290b5b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo6.nc new file mode 120000 index 000000000..af1ec0c2b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..b03832956 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..363ce2317 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ls.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..2f5057c80 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ss.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..31598ba1e --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C819_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km/C819_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo0.nc new file mode 120000 index 000000000..48f9dd983 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo4.nc new file mode 120000 index 000000000..b155a6e1a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..59299e520 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..4aa469867 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..1d8cacd45 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..d7d6846f3 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..1b5ccf8a5 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..f9471d74b --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..c156c90c8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..b03bd418d --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..6e1d109de --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..6542715e8 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..1e358e483 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..9be98904a --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..c9d104b98 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..e7f73ab72 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo3.nc new file mode 120000 index 000000000..5b64de1f7 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo4.nc new file mode 120000 index 000000000..acd0ab7e0 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo6.nc new file mode 120000 index 000000000..c3603d694 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo3.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo3.nc new file mode 120000 index 000000000..effd1e43f --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo4.nc new file mode 120000 index 000000000..41efd9ede --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo6.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo6.nc new file mode 120000 index 000000000..86b6b5e59 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo0.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..becceea41 --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo4.nc b/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..f4b4f12ee --- /dev/null +++ b/fix/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/CONUS_25km_GFDLgrid/C96_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.facsf.tile1.nc b/fix/lam/GSD_RAP13km/C819.facsf.tile1.nc new file mode 120000 index 000000000..9b66c601e --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.facsf.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.facsf.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo0.nc new file mode 120000 index 000000000..339b42a55 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo4.nc new file mode 120000 index 000000000..1b68b26e6 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.facsf.tile7.nc b/fix/lam/GSD_RAP13km/C819.facsf.tile7.nc new file mode 120000 index 000000000..16e9f3dc0 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.facsf.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.facsf.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile1.nc b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile1.nc new file mode 120000 index 000000000..d300806b2 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.maximum_snow_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..559c4db97 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..c3eb2927e --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.nc b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.nc new file mode 120000 index 000000000..30b3b1673 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.maximum_snow_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.maximum_snow_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.slope_type.tile1.nc b/fix/lam/GSD_RAP13km/C819.slope_type.tile1.nc new file mode 120000 index 000000000..46374fd0b --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.slope_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.slope_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..a6353932e --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..1b794646a --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.slope_type.tile7.nc b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.nc new file mode 120000 index 000000000..afcb83474 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.slope_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.slope_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile1.nc b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile1.nc new file mode 120000 index 000000000..b50b7380a --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.snowfree_albedo.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..a174579a7 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..7a6343b5a --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.nc b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.nc new file mode 120000 index 000000000..4f5e23dd9 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.snowfree_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.snowfree_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.soil_type.tile1.nc b/fix/lam/GSD_RAP13km/C819.soil_type.tile1.nc new file mode 120000 index 000000000..1a8e0e5ec --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.soil_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.soil_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..be417d80c --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..780d81de0 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.soil_type.tile7.nc b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.nc new file mode 120000 index 000000000..cbf796402 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.soil_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.soil_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile1.nc b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile1.nc new file mode 120000 index 000000000..d8e0a2b64 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.substrate_temperature.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..d0b54956d --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..c6dcc5459 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.nc b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.nc new file mode 120000 index 000000000..ffce7b0de --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.substrate_temperature.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.substrate_temperature.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile1.nc b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile1.nc new file mode 120000 index 000000000..7722998d2 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_greenness.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..a9f84636a --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..0c699c03f --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.nc b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.nc new file mode 120000 index 000000000..209a9d4c5 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_greenness.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_greenness.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_type.tile1.nc b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile1.nc new file mode 120000 index 000000000..162664aee --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile1.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_type.tile1.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..904776519 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..7cb12ebfc --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.nc b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.nc new file mode 120000 index 000000000..124e8fb56 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819.vegetation_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819.vegetation_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_grid.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo0.nc new file mode 120000 index 000000000..114830938 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_grid.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_grid.tile7.halo3.nc b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo3.nc new file mode 120000 index 000000000..29235c59f --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_grid.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo4.nc new file mode 120000 index 000000000..b7150db69 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_grid.tile7.halo6.nc b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo6.nc new file mode 120000 index 000000000..c5199393a --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_grid.tile7.nc b/fix/lam/GSD_RAP13km/C819_grid.tile7.nc new file mode 120000 index 000000000..f17f304d8 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_grid.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_grid.tile7.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_mosaic.halo3.nc b/fix/lam/GSD_RAP13km/C819_mosaic.halo3.nc new file mode 120000 index 000000000..51b28e68c --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_mosaic.halo4.nc b/fix/lam/GSD_RAP13km/C819_mosaic.halo4.nc new file mode 120000 index 000000000..9063ba3e8 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_mosaic.halo6.nc b/fix/lam/GSD_RAP13km/C819_mosaic.halo6.nc new file mode 120000 index 000000000..30809d245 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_mosaic.nc b/fix/lam/GSD_RAP13km/C819_mosaic.nc new file mode 120000 index 000000000..22ae1b2a7 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_mosaic.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_mosaic.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..a31197b6c --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo3.nc b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo3.nc new file mode 120000 index 000000000..30514d216 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_oro_data.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo4.nc b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..aafebd631 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_oro_data_ls.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..d94638de3 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/GSD_RAP13km/C819_oro_data_ss.tile7.halo0.nc b/fix/lam/GSD_RAP13km/C819_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..95bacbe38 --- /dev/null +++ b/fix/lam/GSD_RAP13km/C819_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/GSD_RAP13km_C819_Lake_fracSV/C819_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo0.nc new file mode 120000 index 000000000..752ec84cb --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo4.nc new file mode 120000 index 000000000..b0f91ac29 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..a24c8c2d3 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..c3e904429 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..0f3bb6d47 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..1d1142958 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..43ff7525f --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..294df31ac --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..754b68508 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..b82f0be87 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..8020c5f5a --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..dad11aafb --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..fa42a5a40 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..072e89ffb --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..d20aa3ed9 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..dca973c62 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo3.nc b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo3.nc new file mode 120000 index 000000000..a9478163b --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo4.nc new file mode 120000 index 000000000..f96a8ad67 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo6.nc b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo6.nc new file mode 120000 index 000000000..b2b61f40a --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_mosaic.halo3.nc b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo3.nc new file mode 120000 index 000000000..798d01014 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_mosaic.halo4.nc b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo4.nc new file mode 120000 index 000000000..003850b35 --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_mosaic.halo6.nc b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo6.nc new file mode 120000 index 000000000..15f9e526b --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..aab18b27a --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo4.nc b/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..d64b2fadf --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..9ecc483ad --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_AK_3km/C3352_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_AK_3km/C3352_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..f4bbb117f --- /dev/null +++ b/fix/lam/RRFS_AK_3km/C3352_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_AK_3km/C3352_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo0.nc new file mode 120000 index 000000000..b98cc6121 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo4.nc new file mode 120000 index 000000000..6be690caa --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..74bdf8bdf --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..9ba6454ae --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..2e2202d5b --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..ac2cfce0f --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..2d9d46ed6 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..b0026078a --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..26241c4bf --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..2af9ef072 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..89653d74b --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..2032f0882 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..f1aa8b8df --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..7d931dcbd --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..b1ee407b9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..4e2dad703 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo3.nc b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo3.nc new file mode 120000 index 000000000..97cd3eed6 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo4.nc new file mode 120000 index 000000000..de63d762e --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo6.nc b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo6.nc new file mode 120000 index 000000000..57f4f4abc --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo3.nc b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo3.nc new file mode 120000 index 000000000..1afc10e80 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo4.nc new file mode 120000 index 000000000..d1334f75c --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo6.nc b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo6.nc new file mode 120000 index 000000000..39555000f --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..001fee3de --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo4.nc b/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..0a9585574 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..a1cbca3ab --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_13km/C775_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_CONUS_13km/C775_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..62e852cd7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_13km/C775_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_13km/C775_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo0.nc new file mode 120000 index 000000000..5c429f9d9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo4.nc new file mode 120000 index 000000000..d64d6d98e --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..73a24697a --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..f0d11228f --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..04dedbfc9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..a8b8a9e4d --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..2598046c8 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..2dae3f1d7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..822015cda --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..6c3567d86 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..b2ac48892 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..686bdd7ad --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..94b7c171c --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..53c64a787 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..7a965c0e1 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..a7ab483f0 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo3.nc b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo3.nc new file mode 120000 index 000000000..3a471a8ee --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo4.nc new file mode 120000 index 000000000..7023aca7c --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo6.nc b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo6.nc new file mode 120000 index 000000000..fc06fbe6e --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo3.nc b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo3.nc new file mode 120000 index 000000000..1218332e7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo4.nc new file mode 120000 index 000000000..2fabaec9e --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo6.nc b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo6.nc new file mode 120000 index 000000000..3b29fd6e8 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..0dc98dc76 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo4.nc b/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..ad5d41326 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..213d9c16d --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_25km/C403_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_CONUS_25km/C403_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..8cc9ef946 --- /dev/null +++ b/fix/lam/RRFS_CONUS_25km/C403_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_25km/C403_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo0.nc new file mode 120000 index 000000000..e60a79f37 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo4.nc new file mode 120000 index 000000000..df88d93f6 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.nc new file mode 120000 index 000000000..29a36c07d --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.facsf.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.facsf.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..d82816932 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..a003192aa --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.nc new file mode 120000 index 000000000..36e50dd4c --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.maximum_snow_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.maximum_snow_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..461019299 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..bfeb52934 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.nc new file mode 120000 index 000000000..20070d526 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.slope_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.slope_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..0a322aa6d --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..b0a031b2f --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.nc new file mode 120000 index 000000000..51cc4be82 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.snowfree_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.snowfree_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..0f4984502 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..39c5bad96 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.nc new file mode 120000 index 000000000..452648dc9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.soil_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.soil_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..b3c6d4714 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..bb7d44ba4 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.nc new file mode 120000 index 000000000..53f196d88 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.substrate_temperature.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.substrate_temperature.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..994462fa1 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..b74c5f23a --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.nc new file mode 120000 index 000000000..8aa6b1533 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_greenness.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_greenness.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..43defcf42 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..29ac30899 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.nc new file mode 120000 index 000000000..79b54e7b7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359.vegetation_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359.vegetation_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_fvcom_mask.nc b/fix/lam/RRFS_CONUS_3km/C3359_fvcom_mask.nc new file mode 120000 index 000000000..62d5e7e10 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_fvcom_mask.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_fvcom_mask.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo0.nc new file mode 120000 index 000000000..01aca8925 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_grid.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo3.nc b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo3.nc new file mode 120000 index 000000000..d98ea420c --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo4.nc new file mode 120000 index 000000000..862859877 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo6.nc b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo6.nc new file mode 120000 index 000000000..3450f05b5 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.nc new file mode 120000 index 000000000..cb0748dce --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_grid.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_grid.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo3.nc b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo3.nc new file mode 120000 index 000000000..10eaef5b1 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo4.nc new file mode 120000 index 000000000..63b029e5d --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo6.nc b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo6.nc new file mode 120000 index 000000000..02e140c94 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_mosaic.nc b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.nc new file mode 120000 index 000000000..c2e7eddd9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_mosaic.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_mosaic.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..f53710890 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..a82cd2d0b --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.nc b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.nc new file mode 120000 index 000000000..e7cef5b26 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_oro_data.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_oro_data.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..86e00af2c --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..902697e28 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_stypdom_double.nc b/fix/lam/RRFS_CONUS_3km/C3359_stypdom_double.nc new file mode 120000 index 000000000..61d9c5f29 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_stypdom_double.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_stypdom_double.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/C3359_vtypdom_double.nc b/fix/lam/RRFS_CONUS_3km/C3359_vtypdom_double.nc new file mode 120000 index 000000000..1d6c3b913 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/C3359_vtypdom_double.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/C3359_vtypdom_double.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/stypdom_double.nc b/fix/lam/RRFS_CONUS_3km/stypdom_double.nc new file mode 120000 index 000000000..45e262181 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/stypdom_double.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/stypdom_double.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km/vtypdom_double.nc b/fix/lam/RRFS_CONUS_3km/vtypdom_double.nc new file mode 120000 index 000000000..2f731008e --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km/vtypdom_double.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_C3359_Lake_fracSV/vtypdom_double.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo0.nc new file mode 120000 index 000000000..24a364af4 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo4.nc new file mode 120000 index 000000000..9a14bb504 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..01bae1913 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..9df00894b --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..60121d26f --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..65dd25043 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..1e4d98473 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..2075adf14 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..aef1f5844 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..749a3955a --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..f13e3494a --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..d34de9082 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..252079e07 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..6cf7f8e2b --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..9a5a47de7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..2b2c1d7bf --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo3.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo3.nc new file mode 120000 index 000000000..584468ae7 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo4.nc new file mode 120000 index 000000000..d3717198f --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo6.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo6.nc new file mode 120000 index 000000000..d385c432b --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo3.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo3.nc new file mode 120000 index 000000000..9ea960da0 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo4.nc new file mode 120000 index 000000000..0ea26b87c --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo6.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo6.nc new file mode 120000 index 000000000..3b3796ade --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..1b75c5c19 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo4.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..eebfa9b46 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..450d6a0d9 --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..9ab1b28dd --- /dev/null +++ b/fix/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_CONUS_3km_HRRRIC/C3357_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3359_mosaic.nc b/fix/lam/RRFS_NA_3km/C3359_mosaic.nc new file mode 120000 index 000000000..c04ee3f7e --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3359_mosaic.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3359_mosaic.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo0.nc new file mode 120000 index 000000000..d4fd8478f --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo4.nc new file mode 120000 index 000000000..61ae9b534 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.nc new file mode 120000 index 000000000..8a36f6c27 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.facsf.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.facsf.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..50ffe445d --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..e50a504a2 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.nc new file mode 120000 index 000000000..da32c6014 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.maximum_snow_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.maximum_snow_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..595af4171 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..0020826d0 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.nc new file mode 120000 index 000000000..9a83eb9c6 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.slope_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.slope_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..67b119546 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..3b18474dc --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.nc new file mode 120000 index 000000000..72957f36e --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.snowfree_albedo.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.snowfree_albedo.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..bd5aefac7 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..9fdb40999 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.nc new file mode 120000 index 000000000..57505cef4 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.soil_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.soil_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..db6904bac --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..1156bf2f4 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.nc new file mode 120000 index 000000000..05ef0a5a9 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.substrate_temperature.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.substrate_temperature.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..9c6811535 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..bbad3f996 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.nc new file mode 120000 index 000000000..19ceaf5c7 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_greenness.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_greenness.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..a0a1cba8a --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..81ea4cfd5 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.nc b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.nc new file mode 120000 index 000000000..15b45cf0a --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463.vegetation_type.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463.vegetation_type.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_fvcom_mask.nc b/fix/lam/RRFS_NA_3km/C3463_fvcom_mask.nc new file mode 120000 index 000000000..11df7a47f --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_fvcom_mask.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_fvcom_mask.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo0.nc new file mode 120000 index 000000000..f2e9cfa15 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_grid.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo3.nc b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo3.nc new file mode 120000 index 000000000..2bfc8deca --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo4.nc new file mode 120000 index 000000000..2f9a2995f --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo6.nc b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo6.nc new file mode 120000 index 000000000..1fa826567 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_grid.tile7.nc b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.nc new file mode 120000 index 000000000..b364e0b8a --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_grid.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_grid.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_mosaic.halo3.nc b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo3.nc new file mode 120000 index 000000000..8508b81ac --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_mosaic.halo4.nc b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo4.nc new file mode 120000 index 000000000..53d93a7f4 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_mosaic.halo6.nc b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo6.nc new file mode 120000 index 000000000..329796148 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_mosaic.nc b/fix/lam/RRFS_NA_3km/C3463_mosaic.nc new file mode 120000 index 000000000..1aaded3fd --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_mosaic.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_mosaic.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..4bfbaa0b8 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo3.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo3.nc new file mode 120000 index 000000000..496ba5172 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo4.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..b79d41843 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.nc new file mode 120000 index 000000000..bf8fed1ea --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data.tile7.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data.tile7.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data_ls.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data_ls.tile7.halo0.nc new file mode 120000 index 000000000..403351d7c --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data_ls.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data_ls.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/C3463_oro_data_ss.tile7.halo0.nc b/fix/lam/RRFS_NA_3km/C3463_oro_data_ss.tile7.halo0.nc new file mode 120000 index 000000000..18adaf4c4 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/C3463_oro_data_ss.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/C3463_oro_data_ss.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat new file mode 120000 index 000000000..246a8fad6 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/regional_rrfsfv3_profdat \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220421 b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220421 new file mode 120000 index 000000000..e98398429 --- /dev/null +++ b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220421 @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/regional_rrfsfv3_profdat.20220421 \ No newline at end of file diff --git a/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220824 b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220824 new file mode 120000 index 000000000..9b817ef5e --- /dev/null +++ b/fix/lam/RRFS_NA_3km/regional_rrfsfv3_profdat.20220824 @@ -0,0 +1 @@ +../../.agent/lam/RRFS_NA_3km_C3463_Lake_fracSV/regional_rrfsfv3_profdat.20220824 \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo0.nc new file mode 120000 index 000000000..813b86e57 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo4.nc new file mode 120000 index 000000000..e6da9455a --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.facsf.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo0.nc new file mode 120000 index 000000000..15deb2ba8 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo4.nc new file mode 120000 index 000000000..258a7d473 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.maximum_snow_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo0.nc new file mode 120000 index 000000000..cf479a086 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo4.nc new file mode 120000 index 000000000..de7840993 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.slope_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo0.nc new file mode 120000 index 000000000..e73254915 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo4.nc new file mode 120000 index 000000000..64abfc658 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.snowfree_albedo.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo0.nc new file mode 120000 index 000000000..79762c513 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo4.nc new file mode 120000 index 000000000..bdef1725c --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.soil_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo0.nc new file mode 120000 index 000000000..b751c9428 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo4.nc new file mode 120000 index 000000000..1a25047ed --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.substrate_temperature.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo0.nc new file mode 120000 index 000000000..7c3560bbb --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo4.nc new file mode 120000 index 000000000..e93707170 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_greenness.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo0.nc new file mode 120000 index 000000000..05f876374 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo4.nc new file mode 120000 index 000000000..e019985ca --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342.vegetation_type.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo3.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo3.nc new file mode 120000 index 000000000..03418adb8 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo4.nc new file mode 120000 index 000000000..4944388cf --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo6.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo6.nc new file mode 120000 index 000000000..484eb37ac --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_grid.tile7.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo3.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo3.nc new file mode 120000 index 000000000..61902ddd5 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo3.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo3.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo4.nc new file mode 120000 index 000000000..44bbe7476 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo4.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo6.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo6.nc new file mode 120000 index 000000000..0188cdad0 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo6.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_mosaic.halo6.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo0.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo0.nc new file mode 120000 index 000000000..cae3a5872 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo0.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo0.nc \ No newline at end of file diff --git a/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo4.nc b/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo4.nc new file mode 120000 index 000000000..822b42c20 --- /dev/null +++ b/fix/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo4.nc @@ -0,0 +1 @@ +../../.agent/lam/RRFS_SUBCONUS_3km/C3342_oro_data.tile7.halo4.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/ds_out_base.nc b/fix/smoke_dust/RRFS_CONUS_3km/ds_out_base.nc new file mode 120000 index 000000000..a01e81e23 --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/ds_out_base.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/ds_out_base.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/dummy_24hr_smoke.nc b/fix/smoke_dust/RRFS_CONUS_3km/dummy_24hr_smoke.nc new file mode 120000 index 000000000..4a9bb300d --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/dummy_24hr_smoke.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/dummy_24hr_smoke.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/dummy_hr_rave.nc b/fix/smoke_dust/RRFS_CONUS_3km/dummy_hr_rave.nc new file mode 120000 index 000000000..dc14ff437 --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/dummy_hr_rave.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/dummy_hr_rave.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/dust12m_data.nc b/fix/smoke_dust/RRFS_CONUS_3km/dust12m_data.nc new file mode 120000 index 000000000..944494128 --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/dust12m_data.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/dust12m_data.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/emi_data.nc b/fix/smoke_dust/RRFS_CONUS_3km/emi_data.nc new file mode 120000 index 000000000..aead66f2e --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/emi_data.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/emi_data.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/grid_in.nc b/fix/smoke_dust/RRFS_CONUS_3km/grid_in.nc new file mode 120000 index 000000000..8b1caf94d --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/grid_in.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/grid_in.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/veg_map.nc b/fix/smoke_dust/RRFS_CONUS_3km/veg_map.nc new file mode 120000 index 000000000..bbe091759 --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/veg_map.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/veg_map.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_CONUS_3km/weight_file.nc b/fix/smoke_dust/RRFS_CONUS_3km/weight_file.nc new file mode 120000 index 000000000..fd739ad86 --- /dev/null +++ b/fix/smoke_dust/RRFS_CONUS_3km/weight_file.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_CONUS_3km/weight_file.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/ds_out_base.nc b/fix/smoke_dust/RRFS_NA_3km/ds_out_base.nc new file mode 120000 index 000000000..102fc3f78 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/ds_out_base.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/ds_out_base.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/dummy_24hr_smoke.nc b/fix/smoke_dust/RRFS_NA_3km/dummy_24hr_smoke.nc new file mode 120000 index 000000000..0823c44e2 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/dummy_24hr_smoke.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/dummy_24hr_smoke.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/dummy_hr_rave.nc b/fix/smoke_dust/RRFS_NA_3km/dummy_hr_rave.nc new file mode 120000 index 000000000..d8eca60f6 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/dummy_hr_rave.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/dummy_hr_rave.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc b/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc new file mode 120000 index 000000000..c871dc87a --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/dust12m_data.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc_old b/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc_old new file mode 120000 index 000000000..e53f50ea6 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/dust12m_data.nc_old @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/dust12m_data.nc_old \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/emi_data.nc b/fix/smoke_dust/RRFS_NA_3km/emi_data.nc new file mode 120000 index 000000000..81c8b271d --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/emi_data.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/emi_data.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/grid_in.nc b/fix/smoke_dust/RRFS_NA_3km/grid_in.nc new file mode 120000 index 000000000..00664c446 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/grid_in.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/grid_in.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/veg_map.nc b/fix/smoke_dust/RRFS_NA_3km/veg_map.nc new file mode 120000 index 000000000..4b8517170 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/veg_map.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/veg_map.nc \ No newline at end of file diff --git a/fix/smoke_dust/RRFS_NA_3km/weight_file.nc b/fix/smoke_dust/RRFS_NA_3km/weight_file.nc new file mode 120000 index 000000000..163d52869 --- /dev/null +++ b/fix/smoke_dust/RRFS_NA_3km/weight_file.nc @@ -0,0 +1 @@ +../../.agent/smoke_dust/RRFS_NA_3km/weight_file.nc \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari100y_01h.grib2 b/fix/upp/GSD_RAP13km/ari100y_01h.grib2 new file mode 120000 index 000000000..e2ad1219c --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari100y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari100y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari100y_03h.grib2 b/fix/upp/GSD_RAP13km/ari100y_03h.grib2 new file mode 120000 index 000000000..7d9e273b9 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari100y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari100y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari100y_06h.grib2 b/fix/upp/GSD_RAP13km/ari100y_06h.grib2 new file mode 120000 index 000000000..decebfade --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari100y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari100y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari100y_12h.grib2 b/fix/upp/GSD_RAP13km/ari100y_12h.grib2 new file mode 120000 index 000000000..84ba737a1 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari100y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari100y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari100y_24h.grib2 b/fix/upp/GSD_RAP13km/ari100y_24h.grib2 new file mode 120000 index 000000000..e1b24ad79 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari100y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari100y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari10y_01h.grib2 b/fix/upp/GSD_RAP13km/ari10y_01h.grib2 new file mode 120000 index 000000000..fc52951e7 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari10y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari10y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari10y_03h.grib2 b/fix/upp/GSD_RAP13km/ari10y_03h.grib2 new file mode 120000 index 000000000..4a56b64d4 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari10y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari10y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari10y_06h.grib2 b/fix/upp/GSD_RAP13km/ari10y_06h.grib2 new file mode 120000 index 000000000..6fc8195df --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari10y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari10y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari10y_12h.grib2 b/fix/upp/GSD_RAP13km/ari10y_12h.grib2 new file mode 120000 index 000000000..8f79720bf --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari10y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari10y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari10y_24h.grib2 b/fix/upp/GSD_RAP13km/ari10y_24h.grib2 new file mode 120000 index 000000000..b48f7d364 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari10y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari10y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari2y_01h.grib2 b/fix/upp/GSD_RAP13km/ari2y_01h.grib2 new file mode 120000 index 000000000..21f341d88 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari2y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari2y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari2y_03h.grib2 b/fix/upp/GSD_RAP13km/ari2y_03h.grib2 new file mode 120000 index 000000000..be3541ae3 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari2y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari2y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari2y_06h.grib2 b/fix/upp/GSD_RAP13km/ari2y_06h.grib2 new file mode 120000 index 000000000..a599cc5f9 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari2y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari2y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari2y_12h.grib2 b/fix/upp/GSD_RAP13km/ari2y_12h.grib2 new file mode 120000 index 000000000..4d3c313a8 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari2y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari2y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari2y_24h.grib2 b/fix/upp/GSD_RAP13km/ari2y_24h.grib2 new file mode 120000 index 000000000..95bd84385 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari2y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari2y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari5y_01h.grib2 b/fix/upp/GSD_RAP13km/ari5y_01h.grib2 new file mode 120000 index 000000000..8cf997c45 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari5y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari5y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari5y_03h.grib2 b/fix/upp/GSD_RAP13km/ari5y_03h.grib2 new file mode 120000 index 000000000..40679c66d --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari5y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari5y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari5y_06h.grib2 b/fix/upp/GSD_RAP13km/ari5y_06h.grib2 new file mode 120000 index 000000000..6bcd2e20d --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari5y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari5y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari5y_12h.grib2 b/fix/upp/GSD_RAP13km/ari5y_12h.grib2 new file mode 120000 index 000000000..3955fca4b --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari5y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari5y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/GSD_RAP13km/ari5y_24h.grib2 b/fix/upp/GSD_RAP13km/ari5y_24h.grib2 new file mode 120000 index 000000000..044a8ad70 --- /dev/null +++ b/fix/upp/GSD_RAP13km/ari5y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/GSD_RAP13km/ari5y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari100y_01h.grib2 b/fix/upp/RRFS_CONUS_3km/ari100y_01h.grib2 new file mode 120000 index 000000000..3f10351c8 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari100y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari100y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari100y_03h.grib2 b/fix/upp/RRFS_CONUS_3km/ari100y_03h.grib2 new file mode 120000 index 000000000..79a886929 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari100y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari100y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari100y_06h.grib2 b/fix/upp/RRFS_CONUS_3km/ari100y_06h.grib2 new file mode 120000 index 000000000..62babaff3 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari100y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari100y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari100y_12h.grib2 b/fix/upp/RRFS_CONUS_3km/ari100y_12h.grib2 new file mode 120000 index 000000000..133e0836f --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari100y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari100y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari100y_24h.grib2 b/fix/upp/RRFS_CONUS_3km/ari100y_24h.grib2 new file mode 120000 index 000000000..d427e3f2c --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari100y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari100y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari10y_01h.grib2 b/fix/upp/RRFS_CONUS_3km/ari10y_01h.grib2 new file mode 120000 index 000000000..ce1d1eee3 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari10y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari10y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari10y_03h.grib2 b/fix/upp/RRFS_CONUS_3km/ari10y_03h.grib2 new file mode 120000 index 000000000..5312d3313 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari10y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari10y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari10y_06h.grib2 b/fix/upp/RRFS_CONUS_3km/ari10y_06h.grib2 new file mode 120000 index 000000000..87290fede --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari10y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari10y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari10y_12h.grib2 b/fix/upp/RRFS_CONUS_3km/ari10y_12h.grib2 new file mode 120000 index 000000000..eb5a53aba --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari10y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari10y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari10y_24h.grib2 b/fix/upp/RRFS_CONUS_3km/ari10y_24h.grib2 new file mode 120000 index 000000000..30436844e --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari10y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari10y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari2y_01h.grib2 b/fix/upp/RRFS_CONUS_3km/ari2y_01h.grib2 new file mode 120000 index 000000000..7bbce48d2 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari2y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari2y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari2y_03h.grib2 b/fix/upp/RRFS_CONUS_3km/ari2y_03h.grib2 new file mode 120000 index 000000000..d56e73f37 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari2y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari2y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari2y_06h.grib2 b/fix/upp/RRFS_CONUS_3km/ari2y_06h.grib2 new file mode 120000 index 000000000..ebcb13ad4 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari2y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari2y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari2y_12h.grib2 b/fix/upp/RRFS_CONUS_3km/ari2y_12h.grib2 new file mode 120000 index 000000000..232f9a535 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari2y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari2y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari2y_24h.grib2 b/fix/upp/RRFS_CONUS_3km/ari2y_24h.grib2 new file mode 120000 index 000000000..6c44b12a3 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari2y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari2y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari5y_01h.grib2 b/fix/upp/RRFS_CONUS_3km/ari5y_01h.grib2 new file mode 120000 index 000000000..43678ef5f --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari5y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari5y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari5y_03h.grib2 b/fix/upp/RRFS_CONUS_3km/ari5y_03h.grib2 new file mode 120000 index 000000000..6fb6b20af --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari5y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari5y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari5y_06h.grib2 b/fix/upp/RRFS_CONUS_3km/ari5y_06h.grib2 new file mode 120000 index 000000000..aa932695e --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari5y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari5y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari5y_12h.grib2 b/fix/upp/RRFS_CONUS_3km/ari5y_12h.grib2 new file mode 120000 index 000000000..cd905e0e1 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari5y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari5y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km/ari5y_24h.grib2 b/fix/upp/RRFS_CONUS_3km/ari5y_24h.grib2 new file mode 120000 index 000000000..35f30e90e --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km/ari5y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_C3359/ari5y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_01h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_01h.grib2 new file mode 120000 index 000000000..7a63e6b97 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari100y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_03h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_03h.grib2 new file mode 120000 index 000000000..3bbdc54b4 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari100y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_06h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_06h.grib2 new file mode 120000 index 000000000..1924e5d8b --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari100y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_12h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_12h.grib2 new file mode 120000 index 000000000..50575d85d --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari100y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_24h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_24h.grib2 new file mode 120000 index 000000000..43612f428 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari100y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari100y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_01h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_01h.grib2 new file mode 120000 index 000000000..c1d610a48 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari10y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_03h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_03h.grib2 new file mode 120000 index 000000000..bc2408257 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari10y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_06h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_06h.grib2 new file mode 120000 index 000000000..24d5585f8 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari10y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_12h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_12h.grib2 new file mode 120000 index 000000000..b6c4cf8b0 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari10y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_24h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_24h.grib2 new file mode 120000 index 000000000..4e6456f83 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari10y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari10y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_01h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_01h.grib2 new file mode 120000 index 000000000..882b7f9cc --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari2y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_03h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_03h.grib2 new file mode 120000 index 000000000..7d35a324a --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari2y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_06h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_06h.grib2 new file mode 120000 index 000000000..07d3c4876 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari2y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_12h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_12h.grib2 new file mode 120000 index 000000000..2ac491b60 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari2y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_24h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_24h.grib2 new file mode 120000 index 000000000..2e51e9341 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari2y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari2y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_01h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_01h.grib2 new file mode 120000 index 000000000..aaa6cedb3 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari5y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_03h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_03h.grib2 new file mode 120000 index 000000000..48e48d9d8 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari5y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_06h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_06h.grib2 new file mode 120000 index 000000000..a6664ca40 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari5y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_12h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_12h.grib2 new file mode 120000 index 000000000..34474260e --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari5y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_24h.grib2 b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_24h.grib2 new file mode 120000 index 000000000..166eaa483 --- /dev/null +++ b/fix/upp/RRFS_CONUS_3km_HRRRIC/ari5y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_CONUS_3km_HRRRIC/ari5y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari100y_01h.grib2 b/fix/upp/RRFS_NA_3km/ari100y_01h.grib2 new file mode 120000 index 000000000..f83a29c75 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari100y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari100y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari100y_03h.grib2 b/fix/upp/RRFS_NA_3km/ari100y_03h.grib2 new file mode 120000 index 000000000..d93496e2d --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari100y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari100y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari100y_06h.grib2 b/fix/upp/RRFS_NA_3km/ari100y_06h.grib2 new file mode 120000 index 000000000..efe8f5f22 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari100y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari100y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari100y_12h.grib2 b/fix/upp/RRFS_NA_3km/ari100y_12h.grib2 new file mode 120000 index 000000000..1c4d41f13 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari100y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari100y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari100y_24h.grib2 b/fix/upp/RRFS_NA_3km/ari100y_24h.grib2 new file mode 120000 index 000000000..c4d813fb5 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari100y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari100y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari10y_01h.grib2 b/fix/upp/RRFS_NA_3km/ari10y_01h.grib2 new file mode 120000 index 000000000..d7796746b --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari10y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari10y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari10y_03h.grib2 b/fix/upp/RRFS_NA_3km/ari10y_03h.grib2 new file mode 120000 index 000000000..3240dd5db --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari10y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari10y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari10y_06h.grib2 b/fix/upp/RRFS_NA_3km/ari10y_06h.grib2 new file mode 120000 index 000000000..b51dc7dbb --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari10y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari10y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari10y_12h.grib2 b/fix/upp/RRFS_NA_3km/ari10y_12h.grib2 new file mode 120000 index 000000000..1cd8e314b --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari10y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari10y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari10y_24h.grib2 b/fix/upp/RRFS_NA_3km/ari10y_24h.grib2 new file mode 120000 index 000000000..636fa4824 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari10y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari10y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari2y_01h.grib2 b/fix/upp/RRFS_NA_3km/ari2y_01h.grib2 new file mode 120000 index 000000000..1f3836cbc --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari2y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari2y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari2y_03h.grib2 b/fix/upp/RRFS_NA_3km/ari2y_03h.grib2 new file mode 120000 index 000000000..356c172c8 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari2y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari2y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari2y_06h.grib2 b/fix/upp/RRFS_NA_3km/ari2y_06h.grib2 new file mode 120000 index 000000000..59095c693 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari2y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari2y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari2y_12h.grib2 b/fix/upp/RRFS_NA_3km/ari2y_12h.grib2 new file mode 120000 index 000000000..7338163d5 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari2y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari2y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari2y_24h.grib2 b/fix/upp/RRFS_NA_3km/ari2y_24h.grib2 new file mode 120000 index 000000000..0eb6fc319 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari2y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari2y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari5y_01h.grib2 b/fix/upp/RRFS_NA_3km/ari5y_01h.grib2 new file mode 120000 index 000000000..26c9df23f --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari5y_01h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari5y_01h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari5y_03h.grib2 b/fix/upp/RRFS_NA_3km/ari5y_03h.grib2 new file mode 120000 index 000000000..1c90a507c --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari5y_03h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari5y_03h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari5y_06h.grib2 b/fix/upp/RRFS_NA_3km/ari5y_06h.grib2 new file mode 120000 index 000000000..6ce9b0695 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari5y_06h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari5y_06h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari5y_12h.grib2 b/fix/upp/RRFS_NA_3km/ari5y_12h.grib2 new file mode 120000 index 000000000..0c36c2ad3 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari5y_12h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari5y_12h.grib2 \ No newline at end of file diff --git a/fix/upp/RRFS_NA_3km/ari5y_24h.grib2 b/fix/upp/RRFS_NA_3km/ari5y_24h.grib2 new file mode 120000 index 000000000..83cc72a07 --- /dev/null +++ b/fix/upp/RRFS_NA_3km/ari5y_24h.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFS_NA_3km/ari5y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_100y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_100y_24h.grib2 new file mode 120000 index 000000000..9138d8d21 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_100y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_100y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_100y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_100y_6h.grib2 new file mode 120000 index 000000000..b5da8a1ff --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_100y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_100y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_10y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_10y_24h.grib2 new file mode 120000 index 000000000..f872b9038 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_10y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_10y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_10y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_10y_6h.grib2 new file mode 120000 index 000000000..7e85e660b --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_10y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_10y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_1y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_1y_24h.grib2 new file mode 120000 index 000000000..02bd1e21f --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_1y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_1y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_1y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_1y_6h.grib2 new file mode 120000 index 000000000..a36e01983 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_1y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_1y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_25y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_25y_24h.grib2 new file mode 120000 index 000000000..f7cfb6472 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_25y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_25y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_25y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_25y_6h.grib2 new file mode 120000 index 000000000..ac8b0eb8e --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_25y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_25y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_2y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_2y_24h.grib2 new file mode 120000 index 000000000..2d9a605c6 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_2y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_2y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_2y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_2y_6h.grib2 new file mode 120000 index 000000000..b393e18cf --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_2y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_2y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_50y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_50y_24h.grib2 new file mode 120000 index 000000000..653e897e6 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_50y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_50y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_50y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_50y_6h.grib2 new file mode 120000 index 000000000..47170dfb2 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_50y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_50y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_5y_24h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_5y_24h.grib2 new file mode 120000 index 000000000..c5e971777 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_5y_24h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_5y_24h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/atlas14/atlas14_conus_5y_6h.grib2 b/fix/upp/enspost/atlas14/atlas14_conus_5y_6h.grib2 new file mode 120000 index 000000000..503aa46d3 --- /dev/null +++ b/fix/upp/enspost/atlas14/atlas14_conus_5y_6h.grib2 @@ -0,0 +1 @@ +../../../.agent/upp/RRFSE/atlas14/atlas14_conus_5y_6h.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/pypost_conus_accum_template.grib2 b/fix/upp/enspost/pypost_conus_accum_template.grib2 new file mode 120000 index 000000000..e3f9135a2 --- /dev/null +++ b/fix/upp/enspost/pypost_conus_accum_template.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFSE/pypost_conus_accum_template.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/pypost_conus_ari_template.grib2 b/fix/upp/enspost/pypost_conus_ari_template.grib2 new file mode 120000 index 000000000..39509bec1 --- /dev/null +++ b/fix/upp/enspost/pypost_conus_ari_template.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFSE/pypost_conus_ari_template.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/pypost_conus_basic_template.grib2 b/fix/upp/enspost/pypost_conus_basic_template.grib2 new file mode 120000 index 000000000..2b12a0218 --- /dev/null +++ b/fix/upp/enspost/pypost_conus_basic_template.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFSE/pypost_conus_basic_template.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/pypost_conus_ffg_template.grib2 b/fix/upp/enspost/pypost_conus_ffg_template.grib2 new file mode 120000 index 000000000..43d7ea03b --- /dev/null +++ b/fix/upp/enspost/pypost_conus_ffg_template.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFSE/pypost_conus_ffg_template.grib2 \ No newline at end of file diff --git a/fix/upp/enspost/pypost_conus_pqpf_template.grib2 b/fix/upp/enspost/pypost_conus_pqpf_template.grib2 new file mode 120000 index 000000000..e2ef66684 --- /dev/null +++ b/fix/upp/enspost/pypost_conus_pqpf_template.grib2 @@ -0,0 +1 @@ +../../.agent/upp/RRFSE/pypost_conus_pqpf_template.grib2 \ No newline at end of file diff --git a/fix/upp/fv3lam_post_avblflds.xml b/fix/upp/fv3lam_post_avblflds.xml new file mode 100644 index 000000000..108fb9621 --- /dev/null +++ b/fix/upp/fv3lam_post_avblflds.xml @@ -0,0 +1,5811 @@ + + + + + + + 1 + PRES_ON_HYBRID_LVL + PRES + hybrid_lvl + 6.0 + + + + 2 + TMP_ON_HYBRID_LVL + TMP + hybrid_lvl + 4.0 + + + + 3 + POT_ON_HYBRID_LVL + POT + hybrid_lvl + 4.0 + + + + 4 + DPT_ON_HYBRID_LVL + DPT + hybrid_lvl + 5.0 + + + + 5 + SPFH_ON_HYBRID_LVL + SPFH + hybrid_lvl + 7.0 + + + + 6 + RH_ON_HYBRID_LVL + RH + hybrid_lvl + 4.0 + + + + 7 + UGRD_ON_HYBRID_LVL + UGRD + hybrid_lvl + 4.0 + + + + 8 + VGRD_ON_HYBRID_LVL + VGRD + hybrid_lvl + 4.0 + + + + 9 + VVEL_ON_HYBRID_LVL + VVEL + hybrid_lvl + 5.0 + + + + 10 + ABSV_ON_HYBRID_LVL + ABSV + hybrid_lvl + 3.0 + + + + 11 + TKE_ON_HYBRID_LVL + TKE + hybrid_lvl + 3.0 + + + + 12 + HGT_ON_ISOBARIC_SFC + HGT + isobaric_sfc + 6.0 + + + + 13 + TMP_ON_ISOBARIC_SFC + TMP + isobaric_sfc + 3.0 + + + + 14 + POT_ON_ISOBARIC_SFC + POT + isobaric_sfc + 4.0 + + + + 15 + DPT_ON_ISOBARIC_SFC + DPT + isobaric_sfc + 5.0 + + + + 16 + SPFH_ON_ISOBARIC_SFC + SPFH + isobaric_sfc + 4.0 + + + + 17 + RH_ON_ISOBARIC_SFC + RH + isobaric_sfc + 2.0 + + + + 18 + UGRD_ON_ISOBARIC_SFC + UGRD + isobaric_sfc + 4.0 + + + + 19 + VGRD_ON_ISOBARIC_SFC + VGRD + isobaric_sfc + 4.0 + + + + 20 + VVEL_ON_ISOBARIC_SFC + VVEL + isobaric_sfc + 5.0 + + + + 21 + ABSV_ON_ISOBARIC_SFC + ABSV + isobaric_sfc + 4.0 + + + + 22 + TKE_ON_ISOBARIC_SFC + TKE + isobaric_sfc + 3.0 + + + + 23 + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + mean_sea_lvl + 6.0 + + + + 24 + PRES_ON_SURFACE + PRES + surface + 6.0 + + + + 25 + HGT_ON_SURFACE + HGT + surface + 6.0 + + + + 26 + TMP_ON_SURFACE + TMP + surface + 4.0 + + + + 27 + POT_ON_SURFACE + POT + surface + 5.0 + + + + 28 + SPFH_ON_SURFACE + SPFH + surface + 3.0 + + + + 29 + DPT_ON_SURFACE + DPT + surface + 4.0 + + + + 30 + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + isobaric_sfc + 50000. + isobaric_sfc + 100000. + 3.0 + + + + 31 + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 32 + CAPE_ON_SURFACE + CAPE + surface + 4.0 + + + + 33 + ACM_ACPCP_ON_SURFACE + tmpl4_8 + ACPCP + ACM + surface + 4.0 + + + + 34 + ACM_NCPCP_ON_SURFACE + tmpl4_8 + NCPCP + ACM + surface + 4.0 + + + + 35 + ACM_WEASD_ON_SURFACE + tmpl4_8 + WEASD + ACM + surface + 4.0 + + + + 36 + SOILM_ON_DEPTH_BEL_LAND_SFC + SOILM + depth_bel_land_sfc + 2 + depth_bel_land_sfc + 2 + 3.0 + + + + 37 + LCDC_ON_LOW_CLOUD_LYR + LCDC + low_cloud_lyr + 3.0 + + + + 38 + MCDC_ON_MID_CLOUD_LYR + MCDC + mid_cloud_lyr + 3.0 + + + + 39 + HCDC_ON_HIGH_CLOUD_LYR + HCDC + high_cloud_lyr + 3.0 + + + + 40 + SWHR_ON_HYBRID_LVL + SWHR + hybrid_lvl + 3.0 + + + + 41 + LWHR_ON_HYBRID_LVL + LWHR + hybrid_lvl + 3.0 + + + + 42 + AVE_LHTFL_ON_SURFACE + tmpl4_8 + LHTFL + AVE + surface + 4.0 + + + + 43 + AVE_SHTFL_ON_SURFACE + tmpl4_8 + SHTFL + AVE + surface + 4.0 + + + + 44 + SFCR_ON_SURFACE + SFCR + surface + 2.7 + + + + 45 + FRICV_ON_SURFACE + FRICV + surface + 4.0 + + + + 46 + AVE_MFLX_ON_SURFACE + tmpl4_8 + MFLX + AVE + surface + -3.0 + + + + 47 + ACM_EVP_ON_SURFACE + tmpl4_8 + EVP + ACM + surface + 4.0 + + + + 48 + NLAT_ON_SURFACE + NLAT + surface + 4.0 + + + + 49 + ELON_ON_SURFACE + ELON + surface + 4.0 + + + + 50 + LAND_ON_SURFACE + LAND + surface + 1.0 + + + + 51 + ICEC_ON_SURFACE + ICEC + surface + 3.0 + + + + 52 + LMH_ON_SURFACE + LMH + surface + 2.0 + + + + 53 + LMV_ON_SURFACE + LMV + surface + 2.0 + + + + 54 + PRES_ON_TROPOPAUSE + PRES + tropopause + 6.0 + + + + 55 + TMP_ON_TROPOPAUSE + TMP + tropopause + 3.0 + + + + 56 + UGRD_ON_TROPOPAUSE + UGRD + tropopause + 4.0 + + + + 57 + VGRD_ON_TROPOPAUSE + VGRD + tropopause + 4.0 + + + + 58 + VWSH_ON_TROPOPAUSE + VWSH + tropopause + 3.0 + + + + 59 + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + spec_alt_above_mean_sea_lvl + 3.0 + + + + 60 + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + spec_alt_above_mean_sea_lvl + 4.0 + + + + 61 + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + spec_alt_above_mean_sea_lvl + 4.0 + + + + 62 + HGT_ON_0C_ISOTHERM + HGT + 0C_isotherm + 6.0 + + + + 63 + RH_ON_0C_ISOTHERM + RH + 0C_isotherm + 2.0 + + + + 64 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 65 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 66 + RH_ON_SIGMA_LVL_0.33-1.0 + RH + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 100. + 2.0 + + + + 67 + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + spec_pres_above_grnd + spec_pres_above_grnd + 6.0 + + + + 68 + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 69 + POT_ON_SPEC_PRES_ABOVE_GRND + POT + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 70 + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 71 + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + spec_pres_above_grnd + spec_pres_above_grnd + 5.0 + + + + 72 + RH_ON_SPEC_PRES_ABOVE_GRND + RH + spec_pres_above_grnd + spec_pres_above_grnd + 2.0 + + + + 73 + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 74 + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 75 + PLI_ON_SPEC_PRES_ABOVE_GRND + PLI + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 76 + RH_ON_SURFACE + RH + surface + 4.0 + + + + 77 + HGT_ON_HYBRID_LVL + HGT + hybrid_lvl + 4.0 + + + + 78 + AVE_LRGHR_ON_HYBRID_LVL + tmpl4_8 + LRGHR + AVE + hybrid_lvl + 3.0 + + + + 79 + AVE_CNVHR_ON_HYBRID_LVL + tmpl4_8 + CNVHR + AVE + hybrid_lvl + 2.7 + + + + 80 + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + entire_atmos_single_lyr + 3.0 + + + + 81 + RH_ON_SIGMA_LVL_0.66-1.0 + RH + sigma_lvl + 2 + 66. + sigma_lvl + 2 + 100. + 2.0 + + + + 82 + RH_ON_SIGMA_LVL_0.33-0.66 + RH + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 66. + 2.0 + + + + 83 + MCONV_ON_HYBRID_LVL + MCONV + hybrid_lvl + 3.0 + + + + 84 + STRM_ON_HYBRID_LVL + STRM + hybrid_lvl + 3.0 + + + + 85 + MCONV_ON_ISOBARIC_SFC + MCONV + isobaric_sfc + 3.0 + + + + 86 + STRM_ON_ISOBARIC_SFC + STRM + isobaric_sfc + 3.0 + + + + 87 + ACM_APCP_ON_SURFACE + tmpl4_8 + APCP + ACM + surface + 4.0 + + + + 88 + MCONV_ON_SPEC_PRES_ABOVE_GRND + MCONV + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 89 + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 90 + VVEL_ON_SPEC_PRES_ABOVE_GRND + VVEL + spec_pres_above_grnd + spec_pres_above_grnd + 5.0 + + + + 91 + PRES_ON_SIGMA_LVL_0.98230 + PRES + sigma_lvl + 5 + 98230. + 6.0 + + + + 92 + TMP_ON_SIGMA_LVL_0.98230 + TMP + sigma_lvl + 5 + 98230. + 4.0 + + + + 93 + SPFH_ON_SIGMA_LVL_0.98230 + SPFH + sigma_lvl + 5 + 98230. + 3.0 + + + + 94 + RH_ON_SIGMA_LVL_0.98230 + RH + sigma_lvl + 5 + 98230. + 4.0 + + + + 95 + UGRD_ON_SIGMA_LVL_0.98230 + UGRD + sigma_lvl + 5 + 98230. + 5.0 + + + + 96 + VGRD_ON_SIGMA_LVL_0.98230 + VGRD + sigma_lvl + 5 + 98230. + 5.0 + + + + 97 + TMP_ON_SIGMA_LVL_0.89671 + TMP + sigma_lvl + 5 + 89671. + 4.0 + + + + 98 + TMP_ON_SIGMA_LVL_0.78483 + TMP + sigma_lvl + 5 + 78483. + 4.0 + + + + 99 + RH_ON_SIGMA_LVL_0.47_1.0 + RH + sigma_lvl + 2 + 47. + sigma_lvl + 2 + 100. + 2.0 + + + + 100 + RH_ON_SIGMA_LVL_0.47_0.96 + RH + sigma_lvl + 2 + 47. + sigma_lvl + 2 + 96. + 2.0 + + + + 101 + RH_ON_SIGMA_LVL_0.18_0.47 + RH + sigma_lvl + 2 + 18. + sigma_lvl + 2 + 47. + 2.0 + + + + 102 + RH_ON_SIGMA_LVL_0.84_0.98 + RH + sigma_lvl + 2 + 84. + sigma_lvl + 2 + 98. + 2.0 + + + + 103 + MCONV_ON_SIGMA_LVL_0.85_1.0 + MCONV + sigma_lvl + 2 + 85. + sigma_lvl + 2 + 100. + 3.0 + + + + 104 + PWAT_ON_SIGMA_LVL_0.33_1.0 + PWAT + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 100. + 2.0 + + + + 105 + PRES_ON_MEAN_SEA_LVL + PRMSL + mean_sea_lvl + 6.0 + + + + 106 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 107 + CIN_ON_SURFACE + CIN + surface + 4.0 + + + + 108 + POT_ON_TROPOPAUSE + POT + tropopause + 5.0 + + + + 109 + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + HGT + lvl_of_adiab_cond_from_sfc + 5.0 + + + + 110 + PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC + PRES + lvl_of_adiab_cond_from_sfc + 6.0 + + + + 111 + RI_ON_HYBRID_LVL + RI + hybrid_lvl + 3.0 + + + + 112 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 113 + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 114 + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 115 + TSOIL_ON_DEPTH_BEL_LAND_SFC_3m + TSOIL + depth_bel_land_sfc + 3. + 3.0 + + + + 116 + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + depth_bel_land_sfc + 2 + depth_bel_land_sfc + 2 + 4.0 + + + + 117 + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + NCEP + depth_bel_land_sfc + 2 + depth_bel_land_sfc + 2 + 3.0 + + + + 118 + CNWAT_ON_SURFACE + CNWAT + surface + 1.0 + + + + 119 + WEASD_ON_SURFACE + WEASD + surface + 4.0 + + + + 120 + SNOWC_ON_SURFACE + SNOWC + surface + 3.0 + + + + 121 + ACM_SNOM_ON_SURFACE + tmpl4_8 + SNOM + ACM + surface + 4.0 + + + + 122 + ACM_SSRUN_ON_SURFACE + tmpl4_8 + SSRUN + ACM + surface + 4.0 + + + + 123 + ACM_BGRUN_ON_SURFACE + tmpl4_8 + BGRUN + ACM + surface + 4.0 + + + + 124 + CLMR_ON_HYBRID_LVL + CLMR + hybrid_lvl + 3.0 + + + + 125 + ICMR_ON_HYBRID_LVL + ICMR + hybrid_lvl + 3.0 + + + + 126 + AVE_DSWRF_ON_SURFACE + tmpl4_8 + DSWRF + AVE + surface + 3.0 + + + + 127 + AVE_DLWRF_ON_SURFACE + tmpl4_8 + DLWRF + AVE + surface + 3.0 + + + + 128 + AVE_USWRF_ON_SURFACE + tmpl4_8 + USWRF + AVE + surface + 3.0 + + + + 129 + AVE_ULWRF_ON_SURFACE + tmpl4_8 + ULWRF + AVE + surface + 3.0 + + + + 130 + AVE_USWRF_ON_TOP_OF_ATMOS + tmpl4_8 + USWRF + AVE + top_of_atmos + 3.0 + + + + 131 + AVE_ULWRF_ON_TOP_OF_ATMOS + tmpl4_8 + ULWRF + AVE + top_of_atmos + 3.0 + + + + 132 + CD_ON_SURFACE + CD + surface + 3.0 + + + + 133 + UFLX_ON_SURFACE + UFLX + surface + 3.0 + + + + 134 + VFLX_ON_SURFACE + VFLX + surface + 3.0 + + + + 135 + AVE_GFLUX_ON_SURFACE + tmpl4_8 + GFLUX + AVE + surface + 4.0 + + + + 136 + AVE_SNOHF_ON_SURFACE + tmpl4_8 + SNOHF + AVE + surface + 4.0 + + + + 137 + ACM_PEVAP_ON_SURFACE + tmpl4_8 + PEVAP + ACM + surface + 4.0 + + + + 138 + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + PRES + spec_hgt_lvl_above_grnd + 2. + 6.0 + + + + 139 + AVE_CDLYR_ON_ENTIRE_ATMOS + tmpl4_8 + CDLYR + AVE + entire_atmos_single_lyr + 3.0 + + + + 140 + TTRAD_ON_HYBRID_LVL + TTRAD + hybrid_lvl + 3.0 + + + + 141 + INST_USWRF_ON_SURFACE + USWRF + surface + 4.0 + + + + 142 + INST_ULWRF_ON_SURFACE + ULWRF + surface + 4.0 + + + + 143 + AVE_CDCON_ON_ENTIRE_ATMOS + tmpl4_8 + CDCON + AVE + entire_atmos_single_lyr + 3.0 + + + + 144 + AVE_TCDC_ON_ENTIRE_ATMOS + tmpl4_8 + TCDC + AVE + entire_atmos_single_lyr + 3.0 + + + + 145 + TCDC_ON_HYBRID_LVL + TCDC + hybrid_lvl + 3.0 + + + + 146 + BMIXL_ON_HYBRID_LVL + BMIXL + hybrid_lvl + 3.0 + + + + 147 + AMIXL_ON_HYBRID_LVL + AMIXL + hybrid_lvl + 3.0 + + + + 148 + PRES_ON_CLOUD_BASE + PRES + cloud_base + 6.0 + + + + 149 + PRES_ON_CLOUD_TOP + PRES + cloud_top + 6.0 + + + + 150 + ALBDO_ON_SURFACE + ALBDO + surface + 3.0 + + + + 151 + WTMP_ON_SURFACE + WTMP + surface + 5.0 + + + + 152 + INST_GFLUX_ON_SURFACE + GFLUX + surface + 3.0 + + + + 153 + CLMR_ON_ISOBARIC_SFC + CLMR + isobaric_sfc + 4.0 + + + + 154 + INST_SHTFL_ON_SURFACE + SHTFL + surface + 4.0 + + + + 155 + INST_LHTFL_ON_SURFACE + LHTFL + surface + 4.0 + + + + 156 + INST_DSWRF_ON_SURFACE + DSWRF + surface + 4.0 + + + + 157 + INST_DLWRF_ON_SURFACE + DLWRF + surface + 4.0 + + + + 158 + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + spec_hgt_lvl_above_grnd + 5.0 + + + + 159 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + spec_hgt_lvl_above_grnd + 3.0 + + + + 160 + INST_CRAIN_ON_SURFACE + CRAIN + surface + 1.0 + + + + 161 + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + entire_atmos_single_lyr + 3.0 + + + + 162 + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 163 + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 164 + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 165 + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + hghst_trop_frz_lvl + 6.0 + + + + 166 + ICMR_ON_ISOBARIC_SFC + ICMR + isobaric_sfc + 6.0 + + + + 167 + INST_PRATE_ON_SURFACE + PRATE + surface + 3.0 + + + + 168 + TMP_ON_CLOUD_TOP + TMP + cloud_top + 5.0 + + + + 169 + SFEXC_ON_SURFACE + SFEXC + surface + 3.0 + + + + 170 + VEG_ON_SURFACE + VEG + surface + 3.0 + + + + 171 + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + depth_bel_land_sfc + 2 + depth_bel_land_sfc + 2 + 3.0 + + + + 172 + CPOFP_ON_SURFACE + CPOFP + surface + 4.0 + + + + 173 + PRES_ON_MAX_WIND + PRES + max_wind + 6.0 + + + + 174 + HGT_ON_MAX_WIND + HGT + max_wind + 6.0 + + + + 175 + UGRD_ON_MAX_WIND + UGRD + max_wind + 4.0 + + + + 176 + VGRD_ON_MAX_WIND + VGRD + max_wind + 4.0 + + + + 177 + HGT_ON_TROPOPAUSE + HGT + tropopause + 6.0 + + + + 178 + HGT_ON_CLOUD_BASE + HGT + cloud_base + 6.0 + + + + 179 + HGT_ON_CLOUD_TOP + HGT + cloud_top + 6.0 + + + + 180 + VIS_ON_SURFACE + VIS + surface + 6.0 + + + + 181 + RWMR_ON_HYBRID_LVL + RWMR + hybrid_lvl + 3.0 + + + + 182 + SNMR_ON_HYBRID_LVL + SNMR + hybrid_lvl + 3.0 + + + + 183 + RWMR_ON_ISOBARIC_SFC + RWMR + isobaric_sfc + 3.0 + + + + 184 + SNMR_ON_ISOBARIC_SFC + SNMR + isobaric_sfc + 3.0 + + + + 185 + FRAIN_ON_HYBRID_LVL + FRAIN + hybrid_lvl + 3.0 + + + + 186 + FICE_ON_HYBRID_LVL + FICE + hybrid_lvl + 3.0 + + + + 187 + RIME_ON_HYBRID_LVL + RIME + hybrid_lvl + 3.0 + + + + 188 + PRES_ON_CONVECTIVE_CLOUD_BOT_LVL + PRES + convective_cloud_bot_lvl + 6.0 + + + + 189 + PRES_ON_CONVECTIVE_CLOUD_TOP_LVL + PRES + convective_cloud_top_lvl + 6.0 + + + + 190 + PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL + PRES + shall_convective_cloud_bot_lvl + 6.0 + + + + 191 + PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL + PRES + shall_convective_cloud_top_lvl + 6.0 + + + + 192 + PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL + PRES + deep_convective_cloud_bot_lvl + 6.0 + + + + 193 + PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL + PRES + deep_convective_cloud_top_lvl + 6.0 + + + + 194 + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + grid_scale_cloud_bot_lvl + 6.0 + + + + 195 + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + grid_scale_cloud_top_lvl + 6.0 + + + + 196 + CDCON_ON_ENTIRE_ATMOS + CDCON + entire_atmos_single_lyr + 2.0 + + + + 197 + CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR + CUEFI + entire_atmos_single_lyr + 3.0 + + + + 198 + TCOND_ON_ISOBARIC_SFC + TCOND + isobaric_sfc + 3.0 + + + + 199 + TCOND_ON_HYBRID_LVL + TCOND + hybrid_lvl + 3.0 + + + + 200 + TCOLW_ON_ENTIRE_ATMOS + TCOLW + entire_atmos_single_lyr + 5.0 + + + + 201 + TCOLI_ON_ENTIRE_ATMOS + TCOLI + entire_atmos_single_lyr + 5.0 + + + + 202 + TCOLR_ON_ENTIRE_ATMOS + TCOLR + entire_atmos_single_lyr + 5.0 + + + + 203 + TCOLS_ON_ENTIRE_ATMOS + TCOLS + entire_atmos_single_lyr + 5.0 + + + + 204 + TCOLC_ON_ENTIRE_ATMOS + TCOLC + entire_atmos_single_lyr + 5.0 + + + + 205 + HGT_ON_SIGMA_LVLS + HGT + sigma_lvl + 5.0 + + + + 206 + TMP_ON_SIGMA_LVLS + TMP + sigma_lvl + 4.0 + + + + 207 + SPFH_ON_SIGMA_LVLS + SPFH + sigma_lvl + 3.0 + + + + 208 + UGRD_ON_SIGMA_LVLS + UGRD + sigma_lvl + 4.0 + + + + 209 + VGRD_ON_SIGMA_LVLS + VGRD + sigma_lvl + 4.0 + + + + 210 + VVEL_ON_SIGMA_LVLS + VVEL + sigma_lvl + 5.0 + + + + 211 + CLMR_ON_SIGMA_LVLS + CLMR + sigma_lvl + 4.0 + + + + 212 + ICMR_ON_SIGMA_LVLS + ICMR + sigma_lvl + 6.0 + + + + 213 + RWMR_ON_SIGMA_LVLS + RWMR + sigma_lvl + 3.0 + + + + 214 + SNMR_ON_SIGMA_LVLS + SNMR + sigma_lvl + 3.0 + + + + 215 + TCOND_ON_SIGMA_LVLS + TCOND + sigma_lvl + 3.0 + + + + 216 + PRES_ON_SIGMA_LVLS + PRES + sigma_lvl + 6.0 + + + + 217 + TKE_ON_SIGMA_LVLS + TKE + sigma_lvl + 3.0 + + + + 218 + VGTYP_ON_SURFACE + VGTYP + surface + 3.0 + + + + 219 + SOTYP_ON_SURFACE + SOTYP + surface + 3.0 + + + + 220 + CCOND_ON_SURFACE + CCOND + surface + 3.0 + + + + 221 + HPBL_ON_SURFACE + HPBL + surface + 6.0 + + + + 222 + TCDC_ON_SIGMA_LVLS + TCDC + sigma_lvl + 2 + 3.0 + + + + 223 + SLTYP_ON_SURFACE + SLTYP + surface + 3.0 + + + + 224 + SNOD_ON_SURFACE + SNOD + surface + 6.0 + + + + 225 + SOILL_ON_DEPTH_BEL_LAND_SFC + SOILL + depth_bel_land_sfc + depth_bel_land_sfc + 3.0 + + + + 226 + SNFALB_ON_SURFACE + SNFALB + surface + 3.0 + + + + 227 + MXSALB_ON_SURFACE + MXSALB + surface + 3.0 + + + + 228 + EVCW_ON_SURFACE + EVCW + surface + 3.0 + + + + 229 + EVBS_ON_SURFACE + EVBS + surface + 3.0 + + + + 230 + TRANS_ON_SURFACE + TRANS + surface + 3.0 + + + + 231 + SBSNO_ON_SURFACE + SBSNO + surface + 3.0 + + + + 232 + SMDRY_ON_SURFACE + SMDRY + surface + 3.0 + + + + 233 + POROS_ON_SURFACE + POROS + surface + 3.0 + + + + 234 + RSMIN_ON_SURFACE + RSMIN + surface + 3.0 + + + + 235 + RLYRS_ON_SURFACE + RLYRS + surface + 3.0 + + + + 236 + WILT_ON_SURFACE + WILT + surface + 3.0 + + + + 237 + SMREF_ON_SURFACE + SMREF + surface + 3.0 + + + + 238 + RCS_ON_SURFACE + RCS + surface + 3.0 + + + + 239 + RCT_ON_SURFACE + RCT + surface + 5.0 + + + + 240 + RCQ_ON_SURFACE + RCQ + surface + 3.0 + + + + 241 + RCSOL_ON_SURFACE + RCSOL + surface + 3.0 + + + + 242 + PEVPR_ON_SURFACE + PEVPR + surface + 6.0 + + + + 243 + VEDH_ON_SIGMA_LVLS + VEDH + sigma_lvl + 4.0 + + + + 245 + GUST_ON_SURFACE + GUST + surface + 3.0 + + + + 246 + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + spec_pres_above_grnd + spec_pres_above_grnd + 6.0 + + + + 247 + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + lwst_lvl_of_wet_bulb_zero + -5.0 + + + + 249 + CPRAT_ON_SURFACE + CPRAT + surface + 4.0 + + + + 250 + REFD_ON_HYBRID_LVL + REFD + hybrid_lvl + 4.0 + + + + 251 + REFD_ON_ISOBARIC_SFC + REFD + isobaric_sfc + 4.0 + + + + 252 + REFC_ON_ENTIRE_ATMOS + REFC + entire_atmos_single_lyr + 4.0 + + + + 253 + REFD_ON_SPEC_HGT_LVL_ABOVE_GRND + REFD + spec_hgt_lvl_above_grnd + 4.0 + + + + 254 + LAI_ON_SURFACE + LAI + surface + -3.0 + + + + 255 + GRLE_ON_SIGMA_LVLS + GRLE + sigma_lvl + 3.0 + + + + 256 + ACM_LSPA_ON_SURFACE + tmpl4_8 + LSPA + ACM + surface + 3.0 + + + + 257 + TIPD_ON_ISOBARIC_SFC + TIPD + isobaric_sfc + 6.0 + + + + 258 + TPFI_ON_ISOBARIC_SFC + TPFI + isobaric_sfc + 6.0 + + + + 259 + VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND + VWSH + spec_hgt_lvl_above_grnd + 6.0 + + + + 260 + HGT_ON_CLOUD_CEILING + HGT + cloud_ceilng + 6.0 + + + + 261 + VIS_ON_CLOUD_BASE + VIS + cloud_base + 6.0 + + + + 262 + INST_CSDSF_ON_SURFACE + CSDSF + surface + 4.0 + + + + 263 + RIME_ON_ISOBARIC_SFC + RIME + isobaric_sfc + 3.0 + + + + 264 + DZDT_ON_HYBRID_LVL + DZDT + hybrid_lvl + -5.0 + + + + 265 + SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD + SBT122 + top_of_atmos + 5.0 + + + + 266 + AVE_ALBDO_ON_SURFACE + tmpl4_8 + ALBDO + AVE + surface + 4.0 + + + + 267 + O3MR_ON_HYBRID_LVL + O3MR + hybrid_lvl + 7.0 + + + + 268 + O3MR_ON_ISOBARIC_SFC + O3MR + isobaric_sfc + 5.0 + + + + 269 + AVE_UFLX_ON_SURFACE + tmpl4_8 + UFLX + AVE + surface + 4.0 + + + + 270 + AVE_VFLX_ON_SURFACE + tmpl4_8 + VFLX + AVE + surface + 4.0 + + + + 271 + AVE_PRATE_ON_SURFACE + tmpl4_8 + PRATE + AVE + surface + 4.0 + + + + 272 + AVE_CPRAT_ON_SURFACE + tmpl4_8 + CPRAT + AVE + surface + 4.0 + + + + 273 + PRES_ON_HYBRID_LVL_LLM + PRES + hybrid_lvl + hybrid_lvl + 3.0 + + + + 274 + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + top_of_atmos + 4.0 + + + + 275 + BRTMP_ON_TOP_OF_ATMOS + BRTMP + top_of_atmos + 3.0 + + + + 276 + REFZR_ON_ENTIRE_ATMOS + REFZR + entire_atmos_single_lyr + -4.0 + + + + 277 + REFZI_ON_ENTIRE_ATMOS + REFZI + entire_atmos_single_lyr + -4.0 + + + + 278 + REFZC_ON_ENTIRE_ATMOS + REFZC + entire_atmos_single_lyr + -4.0 + + + + 279 + REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZR + spec_hgt_lvl_above_grnd + -4.0 + + + + 280 + REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZI + spec_hgt_lvl_above_grnd + -4.0 + + + + 281 + REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZC + spec_hgt_lvl_above_grnd + -4.0 + + + + 282 + PRES_ON_TOP_OF_ATMOS + PRES + top_of_atmos + 3.0 + + + + + 283 + PRES_ON_HYBRID_LVL_1L + PRES + hybrid_lvl + hybrid_lvl + 3.0 + + + + 284 + DZDT_ON_ISOBARIC_SFC + DZDT + isobaric_sfc + -5.0 + + + + 285 + TCLSW_ON_ENTIRE_ATMOS + TCLSW + entire_atmos_single_lyr + 5.0 + + + + 286 + TCOLM_ON_ENTIRE_ATMOS + TCOLM + entire_atmos_single_lyr + 5.0 + + + + 287 + HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + lwst_bot_lvl_of_supercooled_liq_water_lyr + 6.0 + + + + 288 + HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + hghst_top_lvl_of_supercooled_liq_water_lyr + 5.0 + + + + 289 + HGT_ON_PLANETARY_BOUND_LYR + HGT + planetary_bound_lyr + -4.0 + + + + 290 + SWHR_ON_ENTIRE_ATMOS + SWHR + entire_atmos_single_lyr + 5.0 + + + + 291 + LWHR_ON_ENTIRE_ATMOS + LWHR + entire_atmos_single_lyr + 5.0 + + + + 292 + AVE_LRGHR_ON_ENTIRE_ATMOS + tmpl4_8 + LRGHR + AVE + entire_atmos_single_lyr + 5.0 + + + + 293 + AVE_CNVHR_ON_ENTIRE_ATMOS + tmpl4_8 + CNVHR + AVE + entire_atmos_single_lyr + 5.0 + + + + 294 + TTRAD_ON_ISOBARIC_SFC + TTRAD + isobaric_sfc + 5.0 + + + + 295 + MCONV_ON_ENTIRE_ATMOS + MCONV + entire_atmos_single_lyr + 5.0 + + + + 296 + TMP_ON_SIGMA_LVL_HPC + TMP + sigma_lvl + 2 + -4.0 + + + + 297 + AVE_CDUVB_ON_SURFACE + tmpl4_8 + CDUVB + AVE + surface + 3.0 + + + + 298 + AVE_DUVB_ON_SURFACE + tmpl4_8 + DUVB + AVE + surface + 3.0 + + + + 299 + TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR + TOZNE + entire_atmos_single_lyr + 4.0 + + + + 300 + AVE_TCDC_ON_LOW_CLOUD_LYR + tmpl4_8 + TCDC + AVE + low_cloud_lyr + 3.0 + + + + 301 + AVE_TCDC_ON_MID_CLOUD_LYR + tmpl4_8 + TCDC + AVE + mid_cloud_lyr + 3.0 + + + + 302 + AVE_TCDC_ON_HIGH_CLOUD_LYR + tmpl4_8 + TCDC + AVE + high_cloud_lyr + 3.0 + + + + 303 + AVE_PRES_ON_LOW_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + low_cloud_bot_lvl + 6.0 + + + + 304 + AVE_PRES_ON_LOW_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + low_cloud_top_lvl + 6.0 + + + + 305 + AVE_TMP_ON_LOW_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + low_cloud_top_lvl + 3.0 + + + + 306 + AVE_PRES_ON_MID_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + mid_cloud_bot_lvl + 6.0 + + + + 307 + AVE_PRES_ON_MID_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + mid_cloud_top_lvl + 6.0 + + + + 308 + AVE_TMP_ON_MID_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + mid_cloud_top_lvl + 3.0 + + + + 309 + AVE_PRES_ON_HIGH_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + high_cloud_bot_lvl + 6.0 + + + + 310 + AVE_PRES_ON_HIGH_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + high_cloud_top_lvl + 6.0 + + + + 311 + AVE_TMP_ON_HIGH_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + high_cloud_top_lvl + 3.0 + + + + 312 + RH_ON_ENTIRE_ATMOS_SINGLE_LYR + RH + entire_atmos_single_lyr + 2.0 + + + + 313 + AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_8 + CWORK + AVE + entire_atmos_single_lyr + 4.0 + + + + 314 + TMP_ON_MAX_WIND + TMP + max_wind + 3.0 + + + + 315 + AVE_U-GWD_ON_SURFACE + tmpl4_8 + U-GWD + AVE + surface + 5.0 + + + + 316 + AVE_V-GWD_ON_SURFACE + tmpl4_8 + V-GWD + AVE + surface + 5.0 + + + + 317 + AVE_CRAIN_ON_SURFACE + tmpl4_8 + CRAIN + AVE + surface + 1.0 + + + + 318 + RH_ON_SIGMA_LVL_0.44-1.0 + RH + sigma_lvl + 2 + 44. + sigma_lvl + 2 + 100. + 2.0 + + + + 319 + RH_ON_SIGMA_LVL_0.72-0.94 + RH + sigma_lvl + 2 + 72. + sigma_lvl + 2 + 94. + 2.0 + + + + 320 + RH_ON_SIGMA_LVL_0.44-0.72 + RH + sigma_lvl + 2 + 44. + sigma_lvl + 2 + 72. + 2.0 + + + + 321 + TMP_ON_SIGMA_LVL_0.9950 + TMP + sigma_lvl + 4 + 9950. + 4.0 + + + + 322 + POT_ON_SIGMA_LVL_0.9950 + POT + sigma_lvl + 4 + 9950. + 4.0 + + + + 323 + RH_ON_SIGMA_LVL_0.9950 + RH + sigma_lvl + 4 + 9950. + 3.0 + + + + 324 + UGRD_ON_SIGMA_LVL_0.9950 + UGRD + sigma_lvl + 4 + 9950. + 4.0 + + + + 325 + VGRD_ON_SIGMA_LVL_0.9950 + VGRD + sigma_lvl + 4 + 9950. + 4.0 + + + + 326 + VVEL_ON_SIGMA_LVL_0.9950 + VVEL + sigma_lvl + 4 + 9950. + 5.0 + + + + 327 + SBT122_ON_TOP_OF_ATMOS + SBT122 + top_of_atmos + 4.0 + + + + 328 + SBT123_ON_TOP_OF_ATMOS + SBT123 + top_of_atmos + 4.0 + + + + 329 + SBT124_ON_TOP_OF_ATMOS + SBT124 + top_of_atmos + 4.0 + + + + 330 + SBT126_ON_TOP_OF_ATMOS + SBT126 + top_of_atmos + 4.0 + + + + 331 + TCDC_ON_ISOBARIC_SFC + TCDC + isobaric_sfc + 3.0 + + + + 332 + UGRD_ON_ISENTROPIC_LVL + UGRD + isentropic_lvl + 4.0 + + + + 333 + VGRD_ON_ISENTROPIC_LVL + VGRD + isentropic_lvl + 4.0 + + + + 334 + TMP_ON_ISENTROPIC_LVL + TMP + isentropic_lvl + 3.0 + + + + 335 + PVORT_ON_ISENTROPIC_LVL + PVORT + isentropic_lvl + 4.0 + + + + 336 + UGRD_ON_POT_VORT_SFC + UGRD + pot_vort_sfc + 4.0 + + + + 337 + VGRD_ON_POT_VORT_SFC + VGRD + pot_vort_sfc + 4.0 + + + + 338 + TMP_ON_POT_VORT_SFC + TMP + pot_vort_sfc + 4.0 + + + + 339 + HGT_ON_POT_VORT_SFC + HGT + pot_vort_sfc + 6.0 + + + + 340 + PRES_ON_POT_VORT_SFC + PRES + pot_vort_sfc + 6.0 + + + + 341 + VWSH_ON_POT_VORT_SFC + VWSH + pot_vort_sfc + 3.0 + + + + 342 + AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR + tmpl4_8 + TCDC + AVE + bound_lyr_cloud_lyr + 3.0 + + + + 343 + ACM_WATR_ON_SURFACE + tmpl4_8 + WATR + ACM + surface + 6.0 + + + + 344 + PBLREG_ON_SURFACE + PBLREG + surface + 2.0 + + + + 345 + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + TMAX + MAX + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 346 + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + TMIN + MIN + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 347 + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + MAXRH + MAX + spec_hgt_lvl_above_grnd + 2. + -2.0 + + + + 348 + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + MINRH + NCEP + MIN + spec_hgt_lvl_above_grnd + 2. + -2.0 + + + + 349 + ICETK_ON_SURFACE + ICETK + surface + 3.0 + + + + 350 + RH_ON_HGHST_TROP_FRZ_LVL + RH + hghst_trop_frz_lvl + 2.0 + + + + + 351 + LAPR_ON_ISENTROPIC_LVL + LAPR + isentropic_lvl + 2.0 + + + + 352 + RH_ON_ISENTROPIC_LVL + RH + isentropic_lvl + 2.0 + + + + 353 + MNTSF_ON_ISENTROPIC_LVL + MNTSF + isentropic_lvl + 4.0 + + + + + 354 + SWHR_ON_ISOBARIC_SFC + SWHR + isobaric_sfc + 5.0 + + + + 355 + LWHR_ON_ISOBARIC_SFC + LWHR + isobaric_sfc + 5.0 + + + + 356 + VDFHR_ON_ISOBARIC_SFC + VDFHR + isobaric_sfc + 3.0 + + + + 357 + CNVHR_ON_ISOBARIC_SFC + CNVHR + isobaric_sfc + 2.7 + + + + + 358 + SHAHR_ON_ISOBARIC_SFC + SHAHR + isobaric_sfc + 3.0 + + + + 359 + LRGHR_ON_ISOBARIC_SFC + LRGHR + isobaric_sfc + 3.0 + + + + 360 + VDFMR_ON_ISOBARIC_SFC + VDFMR + isobaric_sfc + 3.0 + + + + 361 + CNVMR_ON_ISOBARIC_SFC + CNVMR + isobaric_sfc + 3.0 + + + + 362 + SHAMR_ON_ISOBARIC_SFC + SHAMR + isobaric_sfc + 3.0 + + + + 363 + LRGMR_ON_ISOBARIC_SFC + LRGMR + isobaric_sfc + 3.0 + + + + 364 + VDFOZ_ON_ISOBARIC_SFC + VDFOZ + isobaric_sfc + 7.0 + + + + 365 + POZ_ON_ISOBARIC_SFC + POZ + isobaric_sfc + 4.0 + + + + 366 + TOZ_ON_ISOBARIC_SFC + TOZ + isobaric_sfc + 3.0 + + + + 367 + PVMW_ON_ISOBARIC_SFC + PVMW + isobaric_sfc + 3.0 + + + + 368 + SNOT_ON_ISOBARIC_SFC + SNOT + isobaric_sfc + 3.0 + + + + 369 + VDFUA_ON_ISOBARIC_SFC + VDFUA + isobaric_sfc + 3.0 + + + + 370 + GWDU_ON_ISOBARIC_SFC + GWDU + isobaric_sfc + 3.0 + + + + 371 + CNVU_ON_ISOBARIC_SFC + CNVU + isobaric_sfc + 3.0 + + + + 372 + VDFVA_ON_ISOBARIC_SFC + VDFVA + isobaric_sfc + 3.0 + + + + 373 + GWDV_ON_ISOBARIC_SFC + GWDV + isobaric_sfc + 3.0 + + + + 374 + CNVV_ON_ISOBARIC_SFC + CNVV + isobaric_sfc + 3.0 + + + + 375 + CDLYR_ON_ISOBARIC_SFC + CDLYR + isobaric_sfc + 3.0 + + + + 376 + SBC123_ON_TOP_OF_ATMOS + SBC123 + top_of_atmos + 4.0 + + + + 377 + SBC124_ON_TOP_OF_ATMOS + SBC124 + top_of_atmos + 4.0 + + + + 378 + VVEL_ON_ISENTROPIC_LVL + VVEL + isentropic_lvl + 5.0 + + + + + + + 379 + TTDIA_ON_ISOBARIC_SFC + TTDIA + isobaric_sfc + 3.0 + + + + 380 + VEDH_ON_HYBRID_LVL + VEDH + hybrid_lvl + 3.0 + + + + 381 + MIXHT_ON_SURFACE + MIXHT + surface + -4.0 + + + + + 382 + AVE_CSDLF_ON_SURFACE + tmpl4_8 + CSDLF + AVE + surface + 3.0 + + + + 383 + AVE_CSDSF_ON_SURFACE + tmpl4_8 + CSDSF + AVE + surface + 3.0 + + + + 384 + AVE_CSULF_ON_SURFACE + tmpl4_8 + CSULF + AVE + surface + 3.0 + + + + 385 + AVE_CSULF_ON_TOP_OF_ATMOS + tmpl4_8 + CSULF + AVE + top_of_atmos + 3.0 + + + + 386 + AVE_CSUSF_ON_SURFACE + tmpl4_8 + CSUSF + AVE + surface + 3.0 + + + + 387 + AVE_CSUSF_ON_TOP_OF_ATMOS + tmpl4_8 + CSUSF + AVE + top_of_atmos + 3.0 + + + + 388 + AVE_DSWRF_ON_TOP_OF_ATMOS + tmpl4_8 + DSWRF + AVE + top_of_atmos + 4.0 + + + + 389 + UGRD_ON_PLANETARY_BOUND_LYR + UGRD + planetary_bound_lyr + -4.0 + + + + 390 + VGRD_ON_PLANETARY_BOUND_LYR + VGRD + planetary_bound_lyr + -4.0 + + + + + 391 + CNVUMF_ON_ISOBARIC_SFC + CNVUMF + isobaric_sfc + 3.0 + + + + 392 + CNVDMF_ON_ISOBARIC_SFC + CNVDMF + isobaric_sfc + 3.0 + + + + 393 + CNVEMF_ON_ISOBARIC_SFC + CNVEMF + isobaric_sfc + 3.0 + + + + 394 + CNVWDU_ON_ISOBARIC_SFC + CNVWDU + isobaric_sfc + 3.0 + + + + 395 + CNVWDV_ON_ISOBARIC_SFC + CNVWDV + isobaric_sfc + 3.0 + + + + + 396 + SUNSD_ON_SURFACE + SUNSD + surface + 5.0 + + + + 397 + FLDCP_ON_SURFACE + FLDCP + NCEP + surface + 4.0 + + + + + 398 + ICAHT_ON_MAX_WIND + ICAHT + max_wind + 6.0 + + + + 399 + ICAHT_ON_TROPOPAUSE + ICAHT + tropopause + 6.0 + + + + 400 + RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR + RETOP + entire_atmos_single_lyr + 6.0 + + + + + + 401 + AVE_VBDSF_ON_SURFACE + averaged surface visible beam downward solar flux + tmpl4_8 + VBDSF + AVE + surface + 3.0 + + + + 402 + AVE_VDDSF_ON_SURFACE + averaged surface visible diffuse downward solar flux + tmpl4_8 + VDDSF + AVE + surface + 3.0 + + + + 403 + AVE_NBDSF_ON_SURFACE + averaged surface near IR beam downward solar flux + tmpl4_8 + NBDSF + AVE + surface + 3.0 + + + + 404 + AVE_NDDSF_ON_SURFACE + averaged surface near IR beam downward solar flux + tmpl4_8 + NDDSF + AVE + surface + 3.0 + + + + 405 + AVE_SRWEQ_ON_SURFACE + averaged snow rate on surface + tmpl4_8 + SRWEQ + AVE + surface + 3.0 + + + + 406 + GSD_PRES_ON_CLOUD_TOP + GSD_pressure on cloud top + PRES + cloud_top + 6.0 + + + + 407 + GSD_INST_CRAIN_ON_SURFACE + GSD_instant precipitation type on surface + CRAIN + surface + 1.0 + + + + 408 + GSD_HGT_ON_CLOUD_CEILING + GSD_geopotential height on cloud base + HGT + cloud_ceilng + 6.0 + + + + 409 + GSD_HGT_ON_CLOUD_TOP + GSD_geopotential height on cloud top + HGT + cloud_top + 6.0 + + + + 410 + GSD_VIS_ON_SURFACE + GSD_visibility on surface + VIS + surface + 6.0 + + + + + 411 + WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND + instant wind mixing energy on Specified Height Level Above Ground + WMIXE + spec_hgt_lvl_above_grnd + -4.0 + + + + 412 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + U-Component of Wind on Specified Height Level Above Ground + UGRD + spec_hgt_lvl_above_grnd + 80. + -4.0 + + + + 413 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + V-Component of Wind on Specified Height Level Above Ground + VGRD + spec_hgt_lvl_above_grnd + 80. + -4.0 + + + + + 415 + GRLE_ON_HYBRID_LVL + Graupel mixing ration on hybrid level + GRLE + hybrid_lvl + 3.0 + + + + 416 + GRLE_ON_ISOBARIC_SFC + Graupel mixing ration on isobaric surface + GRLE + isobaric_sfc + 3.0 + + + + 417 + CACM_APCP_ON_SURFACE + tmpl4_8 + APCP + ACM + surface + -4.0 + + + + 418 + CACM_ACPCP_ON_SURFACE + tmpl4_8 + ACPCP + ACM + surface + -4.0 + + + + 419 + CACM_NCPCP_ON_SURFACE + tmpl4_8 + NCPCP + ACM + surface + -4.0 + + + + 420 + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + maximum Updraft Helicity on Specified Height Level Above Ground + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + 421 + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + maximum Updraft Helicity on Specified Height Level Above Ground + tmpl4_8 + MAXREF + MAX + spec_hgt_lvl_above_grnd + 1000. + -3.0 + + + + 422 + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + maximum wind speed on 10 meter Above Ground + tmpl4_8 + WIND + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 423 + MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa + hourly maximum Upward Vertical Velocity between 10-100hpa + tmpl4_8 + MAXUVV + MAX + isobaric_sfc + 10000. + isobaric_sfc + 100000. + -4.0 + + + + 424 + MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa + hourly maximum Downward Vertical Velocity between 10-100hpa + tmpl4_8 + MAXDVV + MAX + isobaric_sfc + 10000. + isobaric_sfc + 100000. + -4.0 + + + + + 425 + AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 + average Vertical velocity between sigma lvl 0.5 and 0.8 + tmpl4_8 + DZDT + AVE + sigma_lvl + 2 + 50. + sigma_lvl + 2 + 80. + 3.0 + + + + 426 + HGT_ON_SPEC_HGT_LVL_ABOVE_GRND + Echo Tops in KFT (highest HGTin meters of the 18-dBZ reflectivity on a model level) + HGT + spec_hgt_lvl_above_grnd + 4.0 + + + + 427 + UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + Updraft Helicity on Specified Height Level Above Ground + UPHL + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + + 428 + TCOLG_ON_ENTIRE_ATMOS + TCOLG + entire_atmos_single_lyr + 5.0 + + + + 429 + MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR + Hourly Maximum of Column Vertical Integrated Graupel on entire atmosphere + tmpl4_8 + TCOLG + MAX + entire_atmos_single_lyr + 3.0 + + + + 430 + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + Vertical u-component shear between 0 to 1000m Above Ground + VUCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 431 + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + Vertical v-component shear between 0 to 1000m Above Ground + VVCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 432 + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + Vertical u-component shear between 0 to 6000m Above Ground + VUCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 6000. + 3.0 + + + + 433 + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + Vertical v-component shear between 0 to 6000m Above Ground + VVCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 6000. + 3.0 + + + + + 434 + BUCKET_APCP_ON_SURFACE + bucket Total precipitation on surface + tmpl4_8 + APCP + ACM + surface + 4.0 + + + + 435 + BUCKET_ACPCP_ON_SURFACE + bucket Convective precipitation on surface + tmpl4_8 + ACPCP + ACM + surface + 4.0 + + + + 436 + BUCKET_NCPCP_ON_SURFACE + bucket Large scale precipitation on surface + tmpl4_8 + NCPCP + ACM + surface + 4.0 + + + + 437 + BUCKET_WEASD_ON_SURFACE + bucket snow precipitation on surface + tmpl4_8 + WEASD + ACM + surface + 4.0 + + + + + + 438 + DUST1_ON_ISOBARIC_LVL + tmpl4_48 + MASSMR + isobaric_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 2 + 7 + 20 + 11.0 + + + + 439 + DUST2_ON_ISOBARIC_LVL + tmpl4_48 + MASSMR + isobaric_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 20 + 7 + 36 + 11.0 + + + + 440 + DUST3_ON_ISOBARIC_LVL + tmpl4_48 + MASSMR + isobaric_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 36 + 7 + 60 + 11.0 + + + + 441 + DUST4_ON_ISOBARIC_LVL + tmpl4_48 + MASSMR + isobaric_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 60 + 7 + 120 + 11.0 + + + + 442 + DUST5_ON_ISOBARIC_LVL + tmpl4_48 + MASSMR + isobaric_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 120 + 7 + 200 + 11.0 + + + + 443 + HGT_ON_EQUIL_LVL + geopotential height on Equilibrium level + HGT + equil_lvl + 6.0 + + + + 444 + LTNG_ON_SURFACE + lightning + LTNG + NCEP + surface + 1.0 + + + + 445 + MAPS_PRMSL_ON_MEAN_SEA_LVL + PRMSL + mean_sea_lvl + 4.0 + + + + 446 + SBT112_ON_TOP_OF_ATMOS + SBT112 + top_of_atmos + 4.0 + + + + 447 + SBT113_ON_TOP_OF_ATMOS + SBT113 + top_of_atmos + 4.0 + + + + 448 + SBT114_ON_TOP_OF_ATMOS + SBT114 + top_of_atmos + 4.0 + + + + 449 + SBT115_ON_TOP_OF_ATMOS + SBT115 + top_of_atmos + 4.0 + + + + + + 451 + SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + SPFH + spec_alt_above_mean_sea_lvl + 5.0 + + + + 452 + VTCAPE_ON_SURFACE + Virtual Temperature Based Convective Available Potential Energy on surface + CAPE + surface + 4.0 + + + + 453 + VTCIN_ON_SURFACE + Virtual Temperature Based Convective Inhibition on surface + CIN + surface + 4.0 + + + + + 454 + VRATE_ON_PLANETARY_BOUND_LYR + Ventilation Rate on planetary boundary layer + VRATE + NCEP + planetary_bound_lyr + 3.0 + + + + 455 + HINDEX_ON_SURFACE + Haines Index on surface + HINDEX + surface + 3.0 + + + + 456 + NON_NADIR_SBT122_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 2 on top of atmosphere + SBT122 + top_of_atmos + 4.0 + + + + 457 + NON_NADIR_SBT123_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 3 on top of atmosphere + SBT123 + top_of_atmos + 4.0 + + + + 458 + NON_NADIR_SBT124_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 4 on top of atmosphere + SBT124 + top_of_atmos + 4.0 + + + + 459 + NON_NADIR_SBT126_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 6 on top of atmosphere + SBT126 + top_of_atmos + 4.0 + + + + 460 + SBT112_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 2 on top of atmosphere + SBT112 + top_of_atmos + 4.0 + + + + 461 + SBT113_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere + SBT113 + top_of_atmos + 4.0 + + + + 462 + SBT114_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere + SBT114 + top_of_atmos + 4.0 + + + + 463 + SBT115_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 5 on top of atmosphere + SBT115 + top_of_atmos + 4.0 + + + + 482 + PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + pressure between Specific Altitude Above Mean Sea Level + PRES + spec_alt_above_mean_sea_lvl + spec_alt_above_mean_sea_lvl + 3.0 + + + + + 483 + AMSRE9_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 484 + AMSRE10_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 485 + AMSRE11_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 486 + AMSRE12_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 487 + GSD_EXP_CEILING + CEIL + ceiling + 3.0 + + + + 488 + TMITB6_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 6 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 489 + TMITB7_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 7 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 490 + TMITB8_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 8 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 490 + TMITB9_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 9 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 492 + SSMITB4_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 4 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 493 + SSMITB5_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 5 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 494 + SSMITB6_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 6 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 495 + SSMITB7_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 7 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 496 + SSMISTB15_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 15 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 497 + SSMISTB16_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 16 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 498 + SSMISTB17_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 17 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 499 + SSMISTB18_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 18 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 500 + AVE_SNOWC_ON_SURFACE + tmpl4_8 + SNOWC + AVE + surface + 3.0 + + + + 501 + AVE_PRES_ON_SURFACE + tmpl4_8 + PRES + AVE + surface + 5.0 + + + + 502 + AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + tmpl4_8 + TMP + AVE + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 503 + AVE_AKHS_ON_SURFACE + tmpl4_8 + AKHS + AVE + surface + 3.0 + + + + 504 + AVE_AKMS_ON_SURFACE + tmpl4_8 + AKMS + AVE + surface + 3.0 + + + + 505 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + TMP + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 506 + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + U Component of Hourly Maximum 10m Wind Speed (m/s) + tmpl4_8 + MAXUW + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 507 + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + V Component of Hourly Maximum 10m Wind Speed (m/s) + tmpl4_8 + MAXVW + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 546 + GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + POT + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + + 547 + GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DEPR + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 548 + GSD_EPOT_ON_SURFACE + EPOT + surface + 3.0 + + + + + 551 + CSNOW_ON_SURFACE + Categorical snow on surface + CSNOW + NCEP + surface + 1.0 + + + + 552 + CICEP_ON_SURFACE + Categorical ice pellets on surface + CICEP + NCEP + surface + 1.0 + + + + 553 + CFRZR_ON_SURFACE + Categorical freezing rain on surface + CFRZR + NCEP + surface + 1.0 + + + + 555 + AVE_CSNOW_ON_SURFACE + average Categorical snow on surface + tmpl4_8 + CSNOW + AVE + surface + 1.0 + + + + 556 + AVE_CICEP_ON_SURFACE + average Categorical ice pellets on surface + tmpl4_8 + CICEP + AVE + surface + 1.0 + + + + 557 + AVE_CFRZR_ON_SURFACE + average Categorical freezing rain on surface + tmpl4_8 + CFRZR + AVE + surface + 1.0 + + + + 559 + GSD_CSNOW_ON_SURFACE + GSD_Categorical snow on surface + CSNOW + surface + 1.0 + + + + 560 + GSD_CICEP_ON_SURFACE + GSD_Categorical ice pellets on surface + CICEP + surface + 1.0 + + + + 561 + GSD_CFRZR_ON_SURFACE + GSD_Categorical freezing rain on surface + CFRZR + surface + 1.0 + + + + 563 + GSD_AVE_CSNOW_ON_SURFACE + GSD_average Categorical snow on surface + tmpl4_8 + CSNOW + AVE + surface + 1.0 + + + + 564 + GSD_AVE_CICEP_ON_SURFACE + GSD_average Categorical ice pellets on surface + tmpl4_8 + CICEP + AVE + surface + 1.0 + + + + 565 + GSD_AVE_CFRZR_ON_SURFACE + GSD_average Categorical freezing rain on surface + tmpl4_8 + CFRZR + AVE + surface + 1.0 + + + + 566 + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 567 + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 575 + CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + CWAT + entire_atmos_single_lyr + 3.0 + + + + 576 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + UGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + 577 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + VGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + 578 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + SPFH + spec_hgt_lvl_above_grnd + 3.0 + + + + 579 + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + PRES + spec_hgt_lvl_above_grnd + 3.0 + + + + 580 + ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + ICI + spec_alt_above_mean_sea_lvl + 3.0 + + + + 581 + VIL_ON_ENTIRE_ATMOS + entire atmosphere Vertically Integrated Liquid (kg/m-2) + VIL + entire_atmos_single_lyr + 4.0 + + + + 582 + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 583 + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 584 + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 585 + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + + + + 586 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + TMP + spec_hgt_lvl_above_grnd + 3.0 + + + + 587 + ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + ICI + spec_hgt_lvl_above_grnd + 3.0 + + + + 588 + ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + ICEG + spec_alt_above_mean_sea_lvl + 4.0 + + + + 601 + DUST1_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + tmpl4_48 + MASSMR + spec_alt_above_mean_sea_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 2 + 7 + 20 + 11.0 + + + + 602 + DUST2_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + tmpl4_48 + MASSMR + spec_alt_above_mean_sea_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 20 + 7 + 36 + 11.0 + + + + 603 + DUST3_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + tmpl4_48 + MASSMR + spec_alt_above_mean_sea_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 36 + 7 + 60 + 11.0 + + + + 604 + DUST4_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + tmpl4_48 + MASSMR + spec_alt_above_mean_sea_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 60 + 7 + 120 + 11.0 + + + + 605 + DUST5_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + tmpl4_48 + MASSMR + spec_alt_above_mean_sea_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 120 + 7 + 200 + 11.0 + + + + + 606 + AECOEF_ON_HYBRID_LVL + AECOFF + hybrid_lvl + 11.0 + + + + 607 + ASYSFK_ON_HYBRID_LVL + ASYSFK + hybrid_lvl + 11.0 + + + + 608 + SSALBK_ON_HYBRID_LVL + SSALBK + hybrid_lvl + 11.0 + + + + 609 + AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 610 + DUST_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 611 + Seasalt_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + sea_salt_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 612 + SULFATE_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + sulphate_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 613 + ORGANIC_CARBON_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + sea_salt_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 614 + BLACK_CARBON_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + black_carbondry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 615 + DUST_EMISSION_FLUX + tmpl4_48 + AEMFLX + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 616 + DUST_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 617 + DUST_DRY_DEPOSITION_FLUX + tmpl4_48 + DDMFLX + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 618 + DUST_WET_DEPOSITION_FLUX + tmpl4_48 + WLSMFLX + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 619 + CR_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + surface + dust_dry + smaller_than_first_limit + 6 + 10 + 9.0 + + + + 620 + FN_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + surface + dust_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 621 + CR_AER_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 10 + 9.0 + + + + 622 + FN_AER_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + dust_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 623 + AER_OPT_DEP_at340 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 338 + 9 + 342 + 9.0 + + + + 624 + AER_OPT_DEP_at440 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 430 + 9 + 450 + 9.0 + + + + 625 + AER_OPT_DEP_at660 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 620 + 9 + 670 + 9.0 + + + + 626 + AER_OPT_DEP_at860 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 841 + 9 + 876 + 9.0 + + + + 627 + AER_OPT_DEP_at1630 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 1628 + 9 + 1652 + 9.0 + + + + 628 + AER_OPT_DEP_at11100 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 11000 + 9 + 11200 + 9.0 + + + + 629 + DUST1_ON_HYBRID_LVL + tmpl4_48 + MASSMR + hybrid_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 2 + 7 + 20 + 11.0 + + + + 630 + DUST2_ON_HYBRID_LVL + tmpl4_48 + MASSMR + hybrid_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 20 + 7 + 36 + 11.0 + + + + 631 + DUST3_ON_HYBRID_LVL + tmpl4_48 + MASSMR + hybrid_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 36 + 7 + 60 + 11.0 + + + + 632 + DUST4_ON_HYBRID_LVL + tmpl4_48 + MASSMR + hybrid_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 60 + 7 + 120 + 11.0 + + + + 633 + DUST5_ON_HYBRID_LVL + tmpl4_48 + MASSMR + hybrid_lvl + dust_dry + between_first_second_limit_noincl2ndlmt + 7 + 120 + 7 + 200 + 11.0 + + + + 700 + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 6000. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 701 + GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km + UPHL + spec_hgt_lvl_above_grnd + 6000. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + + 702 + GSD_MAX_LTG_THREAT1_ON_ENTIRE_ATMOS + LTGTHREAT1 + entire_atmos + 3.0 + + + + 703 + GSD_MAX_LTG_THREAT2_ON_ENTIRE_ATMOS + LTGTHREAT2 + entire_atmos + 3.0 + + + + 704 + GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS + LTNG + entire_atmos + 3.0 + + + + 705 + GSD_NCI_LTG_ON_ENTIRE_ATMOS + GSD_Convective Initiation Lightning + NCILTG + entire_atmos + 3.0 + + + + 706 + GSD_NCA_LTG_ON_ENTIRE_ATMOS + GSD_Convective Activity Lightning + NCALTG + entire_atmos + 3.0 + + + + 707 + GSD_NCI_WQ_ON_ENTIRE_ATMOS + GSD_Convective Initiation Vertical Hydrometeor Flux + NCIWQ + entire_atmos + 3.0 + + + + 708 + GSD_NCA_WQ_ON_ENTIRE_ATMOS + GSD_Convective Activity Vertical Hydrometeor Flux + NCAWQ + entire_atmos + 3.0 + + + + 709 + GSD_NCI_REFL_ON_ENTIRE_ATMOS + GSD_Convective Initiation Reflectivity + NCIREFL + entire_atmos + 3.0 + + + + 710 + GSD_NCA_REFL_ON_ENTIRE_ATMOS + GSD_Convective Activity Reflectivity + NCAREFL + entire_atmos + 3.0 + + + + 711 + GSD_EXP_CEILING_2 + CEIL + cloud_base + 3.0 + + + + 727 + GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + UPHL + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + 3.0 + + + + 748 + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + REFL + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 749 + GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS + RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER + RH_PWAT + entire_atmos + 3.0 + + + + + 750 + GSD_WV_MIXR_ON_HYBRID_LVL + MIXR + hybrid_lvl + 3.0 + + + + 751 + GSD_VPTMP_ON_HYBRID_LVL + VPTMP + hybrid_lvl + 3.0 + + + + 752 + GSD_NCIP_ON_HYBRID_LVL + Number concentration for ice particles on hybrid level + NCIP + hybrid_lvl + 3.0 + + + + 753 + GSD_PRES_ON_0C_ISOTHERM + GSD_pressure on Level of 0 deg (C) isotherm + PRES + 0C_isotherm + 3.0 + + + + 754 + GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN + hybrid_lvl + 3.0 + + + + 756 + GSD_PRES_ON_HGHST_TROP_FRZ_LVL + GSD_pressure on Highest tropospheric freezing level + PRES + hghst_trop_frz_lvl + 3.0 + + + + 757 + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km + REFL + spec_hgt_lvl_above_grnd + 4000. + 3.0 + + + + 758 + GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL + HGT + convective_cloud_top_lvl + 4.0 + + + + 760 + GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MIXR + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 762 + GSD_MIXR_ON_SURFACE + MIXR + SURFACE + 3.0 + + + + 761 + GSD_INSIDE_SNOW_TMP_ON_SURFACE + TMP + SURFACE + 4.0 + + + + 766 + GSD_NCWFA_ON_HYBRID_LVL + PMTF + NCEP + hybrid_lvl + 3.0 + + + + 767 + GSD_NCIFA_ON_HYBRID_LVL + PMTC + NCEP + hybrid_lvl + 3.0 + + + + + 768 + GSD_ECHOTOP_ON_CLOUD_TOP + Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level) + RETOP + cloud_top + 3.0 + + + + 769 + GSD_VIL_ON_ENTIRE_ATMOS + VIL + entire_atmos + 4.0 + + + + 770 + GSD_RADARVIL_ON_ENTIRE_ATMOS + VIL + entire_atmos + 3.0 + + + + 785 + MAX_REF_ON_ISOTHERMAL_-10C + maximum reflectivity on -10C suface + tmpl4_8 + REFD + MAX + isothermal + 263. + -3.0 + + + + 786 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + 790 + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 3000. + spec_hgt_lvl_above_grnd + 0000. + 3.0 + + + + 791 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 3000. + spec_hgt_lvl_above_grnd + 0000. + -3.0 + + + + 792 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + tmpl4_8 + RELV + MAX + spec_hgt_lvl_above_grnd + 2000. + spec_hgt_lvl_above_grnd + 0000. + 5.0 + + + + 793 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + tmpl4_8 + RELV + MAX + spec_hgt_lvl_above_grnd + 1000. + spec_hgt_lvl_above_grnd + 0000. + 5.0 + + + 890 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + Hourly max relative vorticity on hybrid level 1 + tmpl4_8 + RELV + MAX + hybrid_lvl + 1. + 5.0 + + + + 808 + APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + APTMP + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 912 + REFD_ON_ISOTHERMAL + REFD + isothermal + 263. + -4.0 + + + + 913 + 1H_FFG_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 914 + ACM_FFG_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 915 + 1H_2YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 916 + ACM_2YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 917 + 1H_5YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 918 + ACM_5YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 919 + 1H_10YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 920 + ACM_10YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 921 + 1H_100YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 922 + ACM_100YARI_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 927 + SBTA167_ON_TOP_OF_ATMOS + SBTA167 + top_of_atmos + 4.0 + + + + 928 + SBTA168_ON_TOP_OF_ATMOS + SBTA168 + top_of_atmos + 4.0 + + + + 929 + SBTA169_ON_TOP_OF_ATMOS + SBTA169 + top_of_atmos + 4.0 + + + + 930 + SBTA1610_ON_TOP_OF_ATMOS + SBTA1610 + top_of_atmos + 4.0 + + + + 931 + SBTA1611_ON_TOP_OF_ATMOS + SBTA1611 + top_of_atmos + 4.0 + + + + 932 + SBTA1612_ON_TOP_OF_ATMOS + SBTA1612 + top_of_atmos + 4.0 + + + + 933 + SBTA1613_ON_TOP_OF_ATMOS + SBTA1613 + top_of_atmos + 4.0 + + + + 934 + SBTA1614_ON_TOP_OF_ATMOS + SBTA1614 + top_of_atmos + 4.0 + + + + 935 + SBTA1615_ON_TOP_OF_ATMOS + SBTA1615 + top_of_atmos + 4.0 + + + + 936 + SBTA1616_ON_TOP_OF_ATMOS + SBTA1616 + top_of_atmos + 4.0 + + + + 937 + SBTA177_ON_TOP_OF_ATMOS + SBTA177 + top_of_atmos + 4.0 + + + + 938 + SBTA178_ON_TOP_OF_ATMOS + SBTA178 + top_of_atmos + 4.0 + + + + 939 + SBTA179_ON_TOP_OF_ATMOS + SBTA179 + top_of_atmos + 4.0 + + + + 940 + SBTA1710_ON_TOP_OF_ATMOS + SBTA1710 + top_of_atmos + 4.0 + + + + 941 + SBTA1711_ON_TOP_OF_ATMOS + SBTA1711 + top_of_atmos + 4.0 + + + + 942 + SBTA1712_ON_TOP_OF_ATMOS + SBTA1712 + top_of_atmos + 4.0 + + + + 943 + SBTA1713_ON_TOP_OF_ATMOS + SBTA1713 + top_of_atmos + 4.0 + + + + 944 + SBTA1714_ON_TOP_OF_ATMOS + SBTA1714 + top_of_atmos + 4.0 + + + + 945 + SBTA1715_ON_TOP_OF_ATMOS + SBTA1715 + top_of_atmos + 4.0 + + + + 946 + SBTA1716_ON_TOP_OF_ATMOS + SBTA1716 + top_of_atmos + 4.0 + + + + + + diff --git a/fix/upp/fv3lam_rrfs.xml b/fix/upp/fv3lam_rrfs.xml new file mode 100755 index 000000000..a9cf5fb91 --- /dev/null +++ b/fix/upp/fv3lam_rrfs.xml @@ -0,0 +1,3623 @@ + + + + + PRSLEV + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + rrfs + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + PRES_ON_HYBRID_LVL + PRES + 1. 2. + 6.0 + + + + HGT_ON_HYBRID_LVL + HGT + 1. 2. + 4.0 + + + + TMP_ON_HYBRID_LVL + TMP + 1. 2. + 4.0 + + + + POT_ON_HYBRID_LVL + POT + 1. 2. + 4.0 + + + + DPT_ON_HYBRID_LVL + DPT + 1. 2. + 5.0 + + + + SPFH_ON_HYBRID_LVL + SPFH + 1. + 7.0 + + + + RH_ON_HYBRID_LVL + RH + 1. + 4.0 + + + + UGRD_ON_HYBRID_LVL + UGRD + 1. 2. + 4.0 + + + + VGRD_ON_HYBRID_LVL + VGRD + 1. 2. + 4.0 + + + + VVEL_ON_HYBRID_LVL + VVEL + 1. + 5.0 + + + + DZDT_ON_HYBRID_LVL + DZDT + 1. + -5.0 + + + + TKE_ON_HYBRID_LVL + TKE + 1. 2. + 3.0 + + + + RWMR_ON_HYBRID_LVL + RWMR + 1. 2. + 3.0 + + + + SNMR_ON_HYBRID_LVL + SNMR + 1. 2. + 3.0 + + + + TCOND_ON_HYBRID_LVL + TCOND + NCEP + 1. 2. + 3.0 + + + + REFD_ON_HYBRID_LVL + REFD + NCEP + 1. 2. + 4.0 + + + + BMIXL_ON_HYBRID_LVL + BMIXL + NCEP + 1. + 3.0 + + + + HGT_ON_ISOBARIC_SFC + HGT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + DPT_ON_ISOBARIC_SFC + DPT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + RH_ON_ISOBARIC_SFC + RH + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 2.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + -5.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. + 4.0 + + + + STRM_ON_ISOBARIC_SFC + STRM + 25000. 50000. + 3.0 + + + + ICMR_ON_ISOBARIC_SFC + ICMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + CLMR_ON_ISOBARIC_SFC + CLMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + RWMR_ON_ISOBARIC_SFC + RWMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + GRLE_ON_ISOBARIC_SFC + GRLE + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + SNMR_ON_ISOBARIC_SFC + SNMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + 25500. + 0. + 6.0 + + + + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + 10. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + 10. + 3.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + POT_ON_SURFACE + POT + 5.0 + + + + SPFH_ON_SURFACE + SPFH + 3.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 4.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + SNOWC_ON_SURFACE + SNOWC + NCEP + 3.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + VGTYP_ON_SURFACE + VGTYP + NCEP + 3.0 + + + + SOTYP_ON_SURFACE + SOTYP + 3.0 + + + + SNFALB_ON_SURFACE + SNFALB + NCEP + 3.0 + + + + MXSALB_ON_SURFACE + MXSALB + NCEP + 3.0 + + + + CCOND_ON_SURFACE + CCOND + NCEP + 3.0 + + + + RCS_ON_SURFACE + RCS + NCEP + 3.0 + + + + RCT_ON_SURFACE + RCT + NCEP + 5.0 + + + + RCQ_ON_SURFACE + RCQ + NCEP + 3.0 + + + + RCSOL_ON_SURFACE + RCSOL + NCEP + 3.0 + + + + SMREF_ON_SURFACE + SMREF + NCEP + 3.0 + + + + POROS_ON_SURFACE + POROS + NCEP + 3.0 + + + + RLYRS_ON_SURFACE + RLYRS + NCEP + 3.0 + + + + RSMIN_ON_SURFACE + RSMIN + NCEP + 3.0 + + + + SNOD_ON_SURFACE + SNOD + 6.0 + + + + GSD_ACM_SNOD_ON_SURFACE + 5.0 + + + + SMDRY_ON_SURFACE + SMDRY + NCEP + 3.0 + + + + WILT_ON_SURFACE + WILT + NCEP + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + NCEP + 2 + 0. + 2 + 100. + 3.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + NCEP + 50000. + 100000. + 3.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + NCEP + 18000. + 0. + 3.0 + + + + PLI_ON_SPEC_PRES_ABOVE_GRND + PLI + 3000. + 0. + 3.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 9000. + 0. + 4.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 25500. + 0. + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 9000. + 0. + 4.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 25500. + 0. + 4.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 3.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. 1000. + 4.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + NCEP + 6000. + 4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + NCEP + 6000. + 4.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + BUCKET_GRAUPEL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_FRAIN_ON_SURFACE + 6.0 + + + + ACM_SNOWFALL_ON_SURFACE + 6.0 + + + + BUCKET_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + APCP + -4.0 + + + + CACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + NCEP + 6.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + NCEP + 6.0 + + + + ACM_WATR_ON_SURFACE + WATR + 6.0 + + + + GSD_INST_CRAIN_ON_SURFACE + CRAIN + NCEP + 1.0 + + + + GSD_CSNOW_ON_SURFACE + CSNOW + NCEP + 1.0 + + + + GSD_CICEP_ON_SURFACE + CICEP + NCEP + 1.0 + + + + GSD_CFRZR_ON_SURFACE + CFRZR + NCEP + 1.0 + + + + INST_PRATE_ON_SURFACE + PRATE + 3.0 + + + + CPOFP_ON_SURFACE + CPOFP + NCEP + 4.0 + + + + CLMR_ON_HYBRID_LVL + CLMR + 1. 2. + 3.0 + + + + ICMR_ON_HYBRID_LVL + ICMR + 1. 2. + 3.0 + + + + GRLE_ON_HYBRID_LVL + GRLE + 1. 2. + 3.0 + + + + TCDC_ON_HYBRID_LVL + TCDC + 1. 2. + 3.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + GSD_VIS_ON_SURFACE + VIS + 6.0 + + + + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + HGT + 5.0 + + + + PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC + PRES + 6.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 3.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 3.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + BRTMP_ON_TOP_OF_ATMOS + BRTMP + 3.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 4.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 2.7 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + CD_ON_SURFACE + CD + NCEP + 3.0 + + + + UFLX_ON_SURFACE + UFLX + 3.0 + + + + VFLX_ON_SURFACE + VFLX + 3.0 + + + + AVE_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + AVE_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + ACM_PEVAP_ON_SURFACE + PEVAP + NCEP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + ICEC_ON_SURFACE + ICEC + 3.0 + + + + ALBDO_ON_SURFACE + ALBDO + 3.0 + + + + WTMP_ON_SURFACE + WTMP + 5.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 3.0 + + + + POT_ON_TROPOPAUSE + POT + 5.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + VUCSH + 3.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + VVCSH + 3.0 + + + + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 3.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + TMP + 30. 50. 80. 100. 160. 320. + 3.0 + + + + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + UGRD + 30. 50. 80. 100. 160. 320. + 4.0 + + + + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + VGRD + 30. 50. 80. 100. 160. 320. + 4.0 + + + + SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + SPFH + 305. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + SPFH + 30. 50. 80. 100. 160. 320. + 5.0 + + + + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + PRES + 30. 50. 80. 100. 160. 320. + 3.0 + + + + HGT_ON_0C_ISOTHERM + HGT + 6.0 + + + + RH_ON_0C_ISOTHERM + RH + 2.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + 6.0 + + + + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + -5.0 + + + + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 6.0 + + + + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 3.0 + + + + POT_ON_SPEC_PRES_ABOVE_GRND + POT + 3000. + 0. + 4.0 + + + + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + 3000. + 0. + 3.0 + + + + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 5.0 + + + + RH_ON_SPEC_PRES_ABOVE_GRND + RH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 2.0 + + + + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + 3000. + 0. + 3.0 + + + + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VVEL_ON_SPEC_PRES_ABOVE_GRND + VVEL + 3000. 9000. 18000. + 0. 6000. 15000. + 5.0 + + + + PRES_ON_CLOUD_BASE + PRES + 6.0 + + + + PRES_ON_CLOUD_TOP + PRES + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + HGT_ON_CLOUD_BASE + HGT + 6.0 + + + + HGT_ON_CLOUD_TOP + HGT + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + PRES_ON_MAX_WIND + PRES + 6.0 + + + + HGT_ON_MAX_WIND + HGT + 6.0 + + + + UGRD_ON_MAX_WIND + UGRD + 4.0 + + + + VGRD_ON_MAX_WIND + VGRD + 4.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + REFZR_ON_ENTIRE_ATMOS + REFZR + NCEP + -4.0 + + + + REFZI_ON_ENTIRE_ATMOS + REFZI + NCEP + -4.0 + + + + REFD_ON_SPEC_HGT_LVL_ABOVE_GRND + REFD + NCEP + 4000. 1000. + 4.0 + + + + REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZR + NCEP + 4000. 1000. + -4.0 + + + + REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZI + NCEP + 4000. 1000. + -4.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + EFSH_ON_EFBL + -1.0 + + + + EFSH_ON_EFTL + -1.0 + + + + ELMELT_ON_EFTL + -1.0 + + + + UESH_ON_EFL + -1.0 + + + + VESH_ON_EFL + -1.0 + + + + ESHR_ON_EFL + -1.0 + + + + UEID_ON_EFL + -1.0 + + + + VEID_ON_EFL + -1.0 + + + + E3KH_ON_EFL + -1.0 + + + + STPC_ON_EFL + -1.0 + + + + SIGT_ON_EFL + -1.0 + + + + SCCP_ON_EFL + -1.0 + + + + SIGH_ON_EFL + -1.0 + + + + MLFC_ON_EFL + -1.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + TCOLG_ON_ENTIRE_ATMOS + TCOLG + 5.0 + + + + TCLSW_ON_ENTIRE_ATMOS + TCLSW + NCEP + 5.0 + + + + TCOLM_ON_ENTIRE_ATMOS + TCOLM + NCEP + 5.0 + + + + HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + 6.0 + + + + HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + 5.0 + + + + GSD_HGT_ON_CLOUD_CEILING + HGT + -3.0 + + + + GSD_EXP_CEILING + CEIL + -3.0 + + + + GSD_EXP_CEILING_2 + CEIL + -3.0 + + + + ACM_LSPA_ON_SURFACE + LSPA + NCEP + 3.0 + + + + PRES_ON_TOP_OF_ATMOS + PRES + 3.0 + + + + SWHR_ON_ENTIRE_ATMOS + SWHR + NCEP + 5.0 + + + + LWHR_ON_ENTIRE_ATMOS + LWHR + NCEP + 5.0 + + + + TMP_ON_SIGMA_LVL_HPC + TMP + 4 + 9000. 8500. 8000. 7500. 7000. + -4.0 + + + + PBLREG_ON_SURFACE + PBLREG + 2.0 + + + + UGRD_ON_PLANETARY_BOUND_LYR + UGRD + -4.0 + + + + VGRD_ON_PLANETARY_BOUND_LYR + VGRD + -4.0 + + + + HGT_ON_PLANETARY_BOUND_LYR + HGT + -4.0 + + + + MIXHT_ON_SURFACE + MIXHT + -4.0 + + + + RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR + RETOP + NCEP + 6.0 + + + + VRATE_ON_PLANETARY_BOUND_LYR + VRATE + NCEP + 3.0 + + + + HINDEX_ON_SURFACE + HINDEX + 3.0 + + + + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMAX + 4.0 + + + + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMIN + 4.0 + + + + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MAXRH + -2.0 + + + + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MINRH + NCEP + -2.0 + + + + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXUW + NCEP + 10. + -4.0 + + + + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXVW + NCEP + 10. + -4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + MAXREF + NCEP + -3.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa + MAXUVV + NCEP + -3.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa + MAXDVV + NCEP + -3.0 + + + + MAX_PRATE_ON_SURFACE + PRATE + 4.0 + + + + MAX_SRWEQ_ON_SURFACE + SRWEQ + 4.0 + + + + VIL_ON_ENTIRE_ATMOS + VIL + 7.0 + + + + UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + UPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MNUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MNUPHL + NCEP + -3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + MAXREF + NCEP + -3.0 + + + + REFD_ON_ISOTHERMAL + REFD + NCEP + isothermal + 263. + -4.0 + + + + 1H_FFG_EXCEEDANCE + 5.0 + + + + ACM_FFG_EXCEEDANCE + 5.0 + + + + 1H_2YARI_EXCEEDANCE + 5.0 + + + + ACM_2YARI_EXCEEDANCE + 5.0 + + + + 1H_5YARI_EXCEEDANCE + 5.0 + + + + ACM_5YARI_EXCEEDANCE + 5.0 + + + 1H_10YARI_EXCEEDANCE + 5.0 + + + + ACM_10YARI_EXCEEDANCE + 5.0 + + + 1H_100YARI_EXCEEDANCE + 5.0 + + + + ACM_100YARI_EXCEEDANCE + 5.0 + + + + BIOMASS_BURNING_EMISSIONS + 5.0 + + + + SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + DUST_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + AOD_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + HWP_ON_SURFACE + FWINX + 5.0 + + + + + + NATLEV + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + rrfs + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + HGT + 25000. 50000. 70000. 85000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 25000. 50000. 70000. 85000. 95000. + 3.0 + + + + RH_ON_ISOBARIC_SFC + RH + 25000. 50000. 70000. 85000. + 2.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 25000. 50000. 70000. 85000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 25000. 50000. 70000. 85000. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 25000. 50000. 70000. 85000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 25000. 50000. 70000. 85000. + 4.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 25000. 50000. 70000. 85000. + 4.0 + + + + PRES_ON_HYBRID_LVL + PRES + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 6.0 + + + + HGT_ON_HYBRID_LVL + HGT + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + TMP_ON_HYBRID_LVL + TMP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + SPFH_ON_HYBRID_LVL + SPFH + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 7.0 + + + + UGRD_ON_HYBRID_LVL + UGRD + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + VGRD_ON_HYBRID_LVL + VGRD + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + VVEL_ON_HYBRID_LVL + VVEL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 5.0 + + + + DZDT_ON_HYBRID_LVL + DZDT + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + -5.0 + + + + TKE_ON_HYBRID_LVL + TKE + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + 10. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + 10. + 3.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + POT_ON_SURFACE + POT + 5.0 + + + + SPFH_ON_SURFACE + SPFH + 3.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa + MAXUVV + NCEP + -3.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa + MAXDVV + NCEP + -3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MNUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MNUPHL + NCEP + -3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXUW + NCEP + 10. + -4.0 + + + + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXVW + NCEP + 10. + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + MAXREF + NCEP + -3.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + MAXREF + NCEP + -3.0 + + + + REFD_ON_ISOTHERMAL + REFD + NCEP + isothermal + 263. + -4.0 + + + + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMAX + 4.0 + + + + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMIN + 4.0 + + + + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MAXRH + -2.0 + + + + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MINRH + NCEP + -2.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 4.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 3.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + NCEP + 2 + 0. + 2 + 100. + 3.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + NCEP + 18000. + 0. + 3.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 3.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + APCP + -4.0 + + + + CACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + ACM_SNOWFALL_ON_SURFACE + TSNOWP + 4.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + NCEP + 4.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + NCEP + 4.0 + + + + INST_CRAIN_ON_SURFACE + CRAIN + NCEP + 1.0 + + + + CSNOW_ON_SURFACE + CSNOW + NCEP + 1.0 + + + + CICEP_ON_SURFACE + CICEP + NCEP + 1.0 + + + + CFRZR_ON_SURFACE + CFRZR + NCEP + 1.0 + + + + INST_PRATE_ON_SURFACE + PRATE + 3.0 + + + + CPOFP_ON_SURFACE + CPOFP + NCEP + 4.0 + + + + CLMR_ON_HYBRID_LVL + CLMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + ICMR_ON_HYBRID_LVL + ICMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GRLE_ON_HYBRID_LVL + GRLE + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + TCDC_ON_HYBRID_LVL + TCDC + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + RWMR_ON_HYBRID_LVL + RWMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + SNMR_ON_HYBRID_LVL + SNMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GSD_NCWFA_ON_HYBRID_LVL + PMTF + NCEP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GSD_NCIFA_ON_HYBRID_LVL + PMTC + NCEP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + SMOKE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 6.0 + + + + DUST_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 6.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 3.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 3.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 4.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 2.7 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + CD_ON_SURFACE + CD + NCEP + 3.0 + + + + UFLX_ON_SURFACE + UFLX + 3.0 + + + + VFLX_ON_SURFACE + VFLX + 3.0 + + + + AVE_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + AVE_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + ACM_PEVAP_ON_SURFACE + PEVAP + NCEP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + ICEC_ON_SURFACE + ICEC + 3.0 + + + + LMH_ON_SURFACE + LMH + NCEP + 2.0 + + + + LMV_ON_SURFACE + LMV + NCEP + 2.0 + + + + ALBDO_ON_SURFACE + ALBDO + 3.0 + + + + WTMP_ON_SURFACE + WTMP + 5.0 + + + + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 6.0 + + + + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 3.0 + + + + POT_ON_SPEC_PRES_ABOVE_GRND + POT + 3000. + 0. + 4.0 + + + + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + 3000. + 0. + 3.0 + + + + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 5.0 + + + + RH_ON_SPEC_PRES_ABOVE_GRND + RH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 2.0 + + + + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + 3000. + 0. + 3.0 + + + + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + ACM_LSPA_ON_SURFACE + LSPA + NCEP + 3.0 + + + + PRES_ON_TOP_OF_ATMOS + PRES + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + NCEP + 50000. + 100000. + 3.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 9000. + 0. + 4.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 25500. + 0. + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 9000. + 0. + 4.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 25500. + 0. + 4.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + 25500. + 0. + 6.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. 1000. + 4.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + NCEP + 6000. + 4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + NCEP + 6000. + 4.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + PRES_ON_CLOUD_BASE + PRES + 6.0 + + + + PRES_ON_CLOUD_TOP + PRES + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 3.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 3.0 + + + + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + HGT_ON_0C_ISOTHERM + HGT + 6.0 + + + + RH_ON_0C_ISOTHERM + RH + 2.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + 6.0 + + + + PRES_ON_MAX_WIND + PRES + 6.0 + + + + HGT_ON_MAX_WIND + HGT + 6.0 + + + + UGRD_ON_MAX_WIND + UGRD + 4.0 + + + + VGRD_ON_MAX_WIND + VGRD + 4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + HGT_ON_CLOUD_BASE + HGT + 6.0 + + + + HGT_ON_CLOUD_TOP + HGT + 6.0 + + + + GSD_VIS_ON_SURFACE + VIS + 6.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + TCOLG_ON_ENTIRE_ATMOS + TCOLG + 5.0 + + + + VGTYP_ON_SURFACE + VGTYP + NCEP + 3.0 + + + + SOTYP_ON_SURFACE + SOTYP + 3.0 + + + + CCOND_ON_SURFACE + CCOND + NCEP + 3.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + SNOD_ON_SURFACE + SNOD + 6.0 + + + + SBSNO_ON_SURFACE + SBSNO + NCEP + 3.0 + + + + SMDRY_ON_SURFACE + SMDRY + NCEP + 3.0 + + + + POROS_ON_SURFACE + POROS + NCEP + 3.0 + + + + RSMIN_ON_SURFACE + RSMIN + NCEP + 3.0 + + + + RLYRS_ON_SURFACE + RLYRS + NCEP + 3.0 + + + + WILT_ON_SURFACE + WILT + NCEP + 3.0 + + + + SMREF_ON_SURFACE + SMREF + NCEP + 3.0 + + + + RCS_ON_SURFACE + RCS + NCEP + 3.0 + + + + RCT_ON_SURFACE + RCT + NCEP + 5.0 + + + + RCQ_ON_SURFACE + RCQ + NCEP + 3.0 + + + + RCSOL_ON_SURFACE + RCSOL + NCEP + 3.0 + + + + PEVPR_ON_SURFACE + PEVPR + NCEP + 6.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + -5.0 + + + + LAI_ON_SURFACE + LAI + NCEP + -3.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + TCDC_ON_SIGMA_LVLS + TCDC + 4 + 9975. 9915. 9835. 9745. 9650. 9490. 9260. 9015. 8755. 8480. 8190. 7890. 7585. 7185. 6690. 6180. 5470. 4550. 3595. 2605. 1580. 530. + 3.0 + + + + HGT_ON_PLANETARY_BOUND_LYR + HGT + -4.0 + + + + MIXHT_ON_SURFACE + MIXHT + -4.0 + + + + AVE_SNOWC_ON_SURFACE + SNOWC + NCEP + 3.0 + + + + SBTA167_ON_TOP_OF_ATMOS + SBTA167 + 4.0 + + + + SBTA168_ON_TOP_OF_ATMOS + SBTA168 + 4.0 + + + + SBTA169_ON_TOP_OF_ATMOS + SBTA169 + 4.0 + + + + SBTA1610_ON_TOP_OF_ATMOS + SBTA1610 + 4.0 + + + + SBTA1611_ON_TOP_OF_ATMOS + SBTA1611 + 4.0 + + + + SBTA1612_ON_TOP_OF_ATMOS + SBTA1612 + 4.0 + + + + SBTA1613_ON_TOP_OF_ATMOS + SBTA1613 + 4.0 + + + + SBTA1614_ON_TOP_OF_ATMOS + SBTA1614 + 4.0 + + + + SBTA1615_ON_TOP_OF_ATMOS + SBTA1615 + 4.0 + + + + SBTA1616_ON_TOP_OF_ATMOS + SBTA1616 + 4.0 + + + + SBTA188_ON_TOP_OF_ATMOS + SBTA188 + 4.0 + + + + SBTA189_ON_TOP_OF_ATMOS + SBTA189 + 4.0 + + + + SBTA1810_ON_TOP_OF_ATMOS + SBTA1810 + 4.0 + + + + SBTA1811_ON_TOP_OF_ATMOS + SBTA1811 + 4.0 + + + + SBTA1812_ON_TOP_OF_ATMOS + SBTA1812 + 4.0 + + + + SBTA1813_ON_TOP_OF_ATMOS + SBTA1813 + 4.0 + + + + SBTA1814_ON_TOP_OF_ATMOS + SBTA1814 + 4.0 + + + + SBTA1815_ON_TOP_OF_ATMOS + SBTA1815 + 4.0 + + + + SBTA1816_ON_TOP_OF_ATMOS + SBTA1816 + 4.0 + + + + GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND + 4.0 + + + + GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND + 4.0 + + + + GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS + LTNG + 4.0 + + + + SDEN_ON_SURFACE + SDEN + 6.0 + + + + + + IFIFIP + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + + + ICE_PROB_IFI_FLIGHT_LEVEL + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + SLD_IFI_FLIGHT_LEVEL + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + ICE_SEV_CAT_IFI_FLIGHT_LEVEL + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + diff --git a/fix/upp/fv3lam_rtma_NOAHLSM.xml b/fix/upp/fv3lam_rtma_NOAHLSM.xml new file mode 100755 index 000000000..64f04c8bc --- /dev/null +++ b/fix/upp/fv3lam_rtma_NOAHLSM.xml @@ -0,0 +1,3376 @@ + + + + + BGDAWP + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + noaa_fsl_boulder + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + PRES_ON_HYBRID_LVL + PRES + 1. 2. + 6.0 + + + + HGT_ON_HYBRID_LVL + HGT + 1. 2. + 4.0 + + + + TMP_ON_HYBRID_LVL + TMP + 1. 2. + 4.0 + + + + POT_ON_HYBRID_LVL + POT + 1. 2. + 4.0 + + + + DPT_ON_HYBRID_LVL + DPT + 1. 2. + 5.0 + + + + SPFH_ON_HYBRID_LVL + SPFH + 1. + 7.0 + + + + RH_ON_HYBRID_LVL + RH + 1. + 4.0 + + + + UGRD_ON_HYBRID_LVL + UGRD + 1. 2. + 4.0 + + + + VGRD_ON_HYBRID_LVL + VGRD + 1. 2. + 4.0 + + + + VVEL_ON_HYBRID_LVL + VVEL + 1. + 5.0 + + + + DZDT_ON_HYBRID_LVL + DZDT + 1. + -5.0 + + + + TKE_ON_HYBRID_LVL + TKE + 1. 2. + 3.0 + + + + RWMR_ON_HYBRID_LVL + RWMR + 1. 2. + 3.0 + + + + SNMR_ON_HYBRID_LVL + SNMR + 1. 2. + 3.0 + + + + RIME_ON_HYBRID_LVL + RIME + NCEP + 1. 2. + 3.0 + + + + TCOND_ON_HYBRID_LVL + TCOND + NCEP + 1. 2. + 3.0 + + + + REFD_ON_HYBRID_LVL + REFD + NCEP + 1. 2. + 4.0 + + + + BMIXL_ON_HYBRID_LVL + BMIXL + NCEP + 1. + 3.0 + + + + HGT_ON_ISOBARIC_SFC + HGT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + DPT_ON_ISOBARIC_SFC + DPT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + RH_ON_ISOBARIC_SFC + RH + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 2.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + -5.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. + 4.0 + + + + STRM_ON_ISOBARIC_SFC + STRM + 25000. 50000. + 3.0 + + + + ICMR_ON_ISOBARIC_SFC + ICMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + CLMR_ON_ISOBARIC_SFC + CLMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + RWMR_ON_ISOBARIC_SFC + RWMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + GRLE_ON_ISOBARIC_SFC + GRLE + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + SNMR_ON_ISOBARIC_SFC + SNMR + 200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. +47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + MAPS_PRMSL_ON_MEAN_SEA_LVL + PRMSL + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + 25500. + 0. + 6.0 + + + + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + 10. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + 10. + 3.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + POT_ON_SURFACE + POT + 5.0 + + + + SPFH_ON_SURFACE + SPFH + 3.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC_3m + TSOIL + 3. + 3.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + 2 2 2 2 + 0. 10. 40. 100. + 2 2 2 2 + 10. 40. 100. 200. + 4.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + NCEP + 2 2 2 2 + 0. 10. 40. 100. + 2 2 2 2 + 10. 40. 100. 200. + 3.0 + + + + SOILL_ON_DEPTH_BEL_LAND_SFC + SOILL + NCEP + 2 2 2 2 + 0. 10. 40. 100. + 2 2 2 2 + 10. 40. 100. 200. + 3.0 + + + + SOILM_ON_DEPTH_BEL_LAND_SFC + SOILM + 2 + 0. + 2 + 200. + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + SNOWC_ON_SURFACE + SNOWC + NCEP + 3.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + VGTYP_ON_SURFACE + VGTYP + NCEP + 3.0 + + + + SOTYP_ON_SURFACE + SOTYP + 3.0 + + + + SNFALB_ON_SURFACE + SNFALB + NCEP + 3.0 + + + + MXSALB_ON_SURFACE + MXSALB + NCEP + 3.0 + + + + CCOND_ON_SURFACE + CCOND + NCEP + 3.0 + + + + RCS_ON_SURFACE + RCS + NCEP + 3.0 + + + + RCT_ON_SURFACE + RCT + NCEP + 5.0 + + + + RCQ_ON_SURFACE + RCQ + NCEP + 3.0 + + + + RCSOL_ON_SURFACE + RCSOL + NCEP + 3.0 + + + + SMREF_ON_SURFACE + SMREF + NCEP + 3.0 + + + + POROS_ON_SURFACE + POROS + NCEP + 3.0 + + + + RLYRS_ON_SURFACE + RLYRS + NCEP + 3.0 + + + + RSMIN_ON_SURFACE + RSMIN + NCEP + 3.0 + + + + SNOD_ON_SURFACE + SNOD + 6.0 + + + + SMDRY_ON_SURFACE + SMDRY + NCEP + 3.0 + + + + WILT_ON_SURFACE + WILT + NCEP + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + NCEP + 2 + 0. + 2 + 100. + 3.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + NCEP + 50000. + 100000. + 3.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + NCEP + 18000. + 0. + 3.0 + + + + PLI_ON_SPEC_PRES_ABOVE_GRND + PLI + 3000. + 0. + 3.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 9000. + 0. + 4.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 25500. + 0. + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 9000. + 0. + 4.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 25500. + 0. + 4.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 3.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. 1000. + 4.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + NCEP + 6000. + 4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + NCEP + 6000. + 4.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + APCP + -4.0 + + + + CACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + ACM_WEASD_ON_SURFACE + WEASD + 4.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + NCEP + 6.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + NCEP + 6.0 + + + + ACM_WATR_ON_SURFACE + WATR + 6.0 + + + + INST_CRAIN_ON_SURFACE + CRAIN + NCEP + 1.0 + + + + CSNOW_ON_SURFACE + CSNOW + NCEP + 1.0 + + + + CICEP_ON_SURFACE + CICEP + NCEP + 1.0 + + + + CFRZR_ON_SURFACE + CFRZR + NCEP + 1.0 + + + + INST_PRATE_ON_SURFACE + PRATE + 3.0 + + + + CPOFP_ON_SURFACE + CPOFP + NCEP + 4.0 + + + + CLMR_ON_HYBRID_LVL + CLMR + 1. 2. + 3.0 + + + + ICMR_ON_HYBRID_LVL + ICMR + 1. 2. + 3.0 + + + + GRLE_ON_HYBRID_LVL + GRLE + 1. 2. + 3.0 + + + + TCDC_ON_HYBRID_LVL + TCDC + 1. 2. + 3.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + GSD_VIS_ON_SURFACE + VIS + 6.0 + + + + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + HGT + 5.0 + + + + PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC + PRES + 6.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 3.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 3.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + BRTMP_ON_TOP_OF_ATMOS + BRTMP + 3.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 4.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 2.7 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + CD_ON_SURFACE + CD + NCEP + 3.0 + + + + UFLX_ON_SURFACE + UFLX + 3.0 + + + + VFLX_ON_SURFACE + VFLX + 3.0 + + + + AVE_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + AVE_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + ACM_PEVAP_ON_SURFACE + PEVAP + NCEP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + ICEC_ON_SURFACE + ICEC + 3.0 + + + + ALBDO_ON_SURFACE + ALBDO + 3.0 + + + + WTMP_ON_SURFACE + WTMP + 5.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 3.0 + + + + POT_ON_TROPOPAUSE + POT + 5.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + VUCSH + 3.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + VVCSH + 3.0 + + + + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 3.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + TMP + 30. 50. 80. 100. + 3.0 + + + + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + UGRD + 30. 50. 80. 100. + 4.0 + + + + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + VGRD + 30. 50. 80. 100. + 4.0 + + + + SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + SPFH + 305. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + SPFH + 30. 50. 80. 100. + 5.0 + + + + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + PRES + 30. 50. 80. 100. + 3.0 + + + + HGT_ON_0C_ISOTHERM + HGT + 6.0 + + + + RH_ON_0C_ISOTHERM + RH + 2.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + 6.0 + + + + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + -5.0 + + + + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 6.0 + + + + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 3.0 + + + + POT_ON_SPEC_PRES_ABOVE_GRND + POT + 3000. + 0. + 4.0 + + + + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + 3000. + 0. + 3.0 + + + + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 5.0 + + + + RH_ON_SPEC_PRES_ABOVE_GRND + RH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 2.0 + + + + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + 3000. + 0. + 3.0 + + + + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VVEL_ON_SPEC_PRES_ABOVE_GRND + VVEL + 3000. 9000. 18000. + 0. 6000. 15000. + 5.0 + + + + PRES_ON_CLOUD_BASE + PRES + 6.0 + + + + PRES_ON_CLOUD_TOP + PRES + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + HGT_ON_CLOUD_BASE + HGT + 6.0 + + + + HGT_ON_CLOUD_TOP + HGT + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + PRES_ON_MAX_WIND + PRES + 6.0 + + + + HGT_ON_MAX_WIND + HGT + 6.0 + + + + UGRD_ON_MAX_WIND + UGRD + 4.0 + + + + VGRD_ON_MAX_WIND + VGRD + 4.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + REFZR_ON_ENTIRE_ATMOS + REFZR + NCEP + -4.0 + + + + REFZI_ON_ENTIRE_ATMOS + REFZI + NCEP + -4.0 + + + + REFD_ON_SPEC_HGT_LVL_ABOVE_GRND + REFD + NCEP + 4000. 1000. + 4.0 + + + + REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZR + NCEP + 4000. 1000. + -4.0 + + + + REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZI + NCEP + 4000. 1000. + -4.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + TCOLG_ON_ENTIRE_ATMOS + TCOLG + 5.0 + + + + TCLSW_ON_ENTIRE_ATMOS + TCLSW + NCEP + 5.0 + + + + TCOLM_ON_ENTIRE_ATMOS + TCOLM + NCEP + 5.0 + + + + HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + 6.0 + + + + HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + 5.0 + + + + GSD_HGT_ON_CLOUD_CEILING + HGT + -3.0 + + + + GSD_EXP_CEILING + CEIL + -3.0 + + + + GSD_EXP_CEILING_2 + CEIL + -3.0 + + + + ACM_LSPA_ON_SURFACE + LSPA + NCEP + 3.0 + + + + PRES_ON_TOP_OF_ATMOS + PRES + 3.0 + + + + SWHR_ON_ENTIRE_ATMOS + SWHR + NCEP + 5.0 + + + + LWHR_ON_ENTIRE_ATMOS + LWHR + NCEP + 5.0 + + + + AVE_LRGHR_ON_ENTIRE_ATMOS + LRGHR + NCEP + 5.0 + + + + TMP_ON_SIGMA_LVL_HPC + TMP + 4 + 9000. 8500. 8000. 7500. 7000. + -4.0 + + + + PBLREG_ON_SURFACE + PBLREG + 2.0 + + + + UGRD_ON_PLANETARY_BOUND_LYR + UGRD + -4.0 + + + + VGRD_ON_PLANETARY_BOUND_LYR + VGRD + -4.0 + + + + HGT_ON_PLANETARY_BOUND_LYR + HGT + -4.0 + + + + MIXHT_ON_SURFACE + MIXHT + -4.0 + + + + RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR + RETOP + NCEP + 6.0 + + + + VRATE_ON_PLANETARY_BOUND_LYR + VRATE + NCEP + 3.0 + + + + HINDEX_ON_SURFACE + HINDEX + 3.0 + + + + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMAX + 4.0 + + + + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMIN + 4.0 + + + + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MAXRH + -2.0 + + + + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MINRH + NCEP + -2.0 + + + + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXUW + NCEP + 10. + -4.0 + + + + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXVW + NCEP + 10. + -4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + MAXREF + NCEP + -3.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa + MAXUVV + NCEP + -3.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa + MAXDVV + NCEP + -3.0 + + + + MAX_PRATE_ON_SURFACE + PRATE + 4.0 + + + + MAX_SRWEQ_ON_SURFACE + SRWEQ + 4.0 + + + + LTNG_ON_SURFACE + LTNG + NCEP + 1.0 + + + + VIL_ON_ENTIRE_ATMOS + VIL + 4.0 + + + + UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + UPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MNUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MNUPHL + NCEP + -3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + MAXREF + NCEP + -3.0 + + + + REFD_ON_ISOTHERMAL + REFD + NCEP + isothermal + 263. + -4.0 + + + + 1H_FFG_EXCEEDANCE + 5.0 + + + + 3H_FFG_EXCEEDANCE + 5.0 + + + + 6H_FFG_EXCEEDANCE + 5.0 + + + + 12H_FFG_EXCEEDANCE + 5.0 + + + + + + BGRD3D + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + noaa_fsl_boulder + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + HGT + 25000. 50000. 70000. 85000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 25000. 50000. 70000. 85000. 95000. + 3.0 + + + + RH_ON_ISOBARIC_SFC + RH + 25000. 50000. 70000. 85000. + 2.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 25000. 50000. 70000. 85000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 25000. 50000. 70000. 85000. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 25000. 50000. 70000. 85000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 25000. 50000. 70000. 85000. + 4.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 25000. 50000. 70000. 85000. + 4.0 + + + + PRES_ON_HYBRID_LVL + PRES + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 6.0 + + + + HGT_ON_HYBRID_LVL + HGT + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + TMP_ON_HYBRID_LVL + TMP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + SPFH_ON_HYBRID_LVL + SPFH + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 7.0 + + + + UGRD_ON_HYBRID_LVL + UGRD + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + VGRD_ON_HYBRID_LVL + VGRD + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 4.0 + + + + VVEL_ON_HYBRID_LVL + VVEL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 5.0 + + + + DZDT_ON_HYBRID_LVL + DZDT + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + -5.0 + + + + TKE_ON_HYBRID_LVL + TKE + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + MAPS_PRMSL_ON_MEAN_SEA_LVL + PRMSL + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + 10. + 5.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + 10. + 3.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + POT_ON_SURFACE + POT + 5.0 + + + + SPFH_ON_SURFACE + SPFH + 3.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa + MAXUVV + NCEP + -3.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa + MAXDVV + NCEP + -3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MNUPHL + NCEP + -3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MNUPHL + NCEP + -3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXUW + NCEP + 10. + -4.0 + + + + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + MAXVW + NCEP + 10. + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + MAXREF + NCEP + -3.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + MAXREF + NCEP + -3.0 + + + + REFD_ON_ISOTHERMAL + REFD + NCEP + isothermal + 263. + -4.0 + + + + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMAX + 4.0 + + + + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMIN + 4.0 + + + + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MAXRH + -2.0 + + + + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MINRH + NCEP + -2.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + 2 2 2 2 + 0. 10. 40. 100. + 2 2 2 2 + 10. 40. 100. 200. + 4.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + NCEP + 2 2 2 2 + 0. 10. 40. 100. + 2 2 2 2 + 10. 40. 100. 200. + 3.0 + + + + SOILM_ON_DEPTH_BEL_LAND_SFC + SOILM + 2 + 0. + 2 + 200. + 3.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + NCEP + 2 + 0. + 2 + 100. + 3.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC_3m + TSOIL + 3. + 3.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + NCEP + 18000. + 0. + 3.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 3.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + APCP + -4.0 + + + + CACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + ACM_WEASD_ON_SURFACE + WEASD + 4.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + NCEP + 4.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + NCEP + 4.0 + + + + INST_CRAIN_ON_SURFACE + CRAIN + NCEP + 1.0 + + + + CSNOW_ON_SURFACE + CSNOW + NCEP + 1.0 + + + + CICEP_ON_SURFACE + CICEP + NCEP + 1.0 + + + + CFRZR_ON_SURFACE + CFRZR + NCEP + 1.0 + + + + INST_PRATE_ON_SURFACE + PRATE + 3.0 + + + + CPOFP_ON_SURFACE + CPOFP + NCEP + 4.0 + + + + CLMR_ON_HYBRID_LVL + CLMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + ICMR_ON_HYBRID_LVL + ICMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GRLE_ON_HYBRID_LVL + GRLE + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + TCDC_ON_HYBRID_LVL + TCDC + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + RWMR_ON_HYBRID_LVL + RWMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + SNMR_ON_HYBRID_LVL + SNMR + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GSD_NCWFA_ON_HYBRID_LVL + PMTF + NCEP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + GSD_NCIFA_ON_HYBRID_LVL + PMTC + NCEP + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. +25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. +49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + 3.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 3.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 3.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 3.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 3.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 4.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 2.7 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + CD_ON_SURFACE + CD + NCEP + 3.0 + + + + UFLX_ON_SURFACE + UFLX + 3.0 + + + + VFLX_ON_SURFACE + VFLX + 3.0 + + + + AVE_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + AVE_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + ACM_PEVAP_ON_SURFACE + PEVAP + NCEP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + ICEC_ON_SURFACE + ICEC + 3.0 + + + + LMH_ON_SURFACE + LMH + NCEP + 2.0 + + + + LMV_ON_SURFACE + LMV + NCEP + 2.0 + + + + ALBDO_ON_SURFACE + ALBDO + 3.0 + + + + WTMP_ON_SURFACE + WTMP + 5.0 + + + + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 6.0 + + + + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 3.0 + + + + POT_ON_SPEC_PRES_ABOVE_GRND + POT + 3000. + 0. + 4.0 + + + + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + 3000. + 0. + 3.0 + + + + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 5.0 + + + + RH_ON_SPEC_PRES_ABOVE_GRND + RH + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 2.0 + + + + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + 3000. + 0. + 3.0 + + + + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + 3000. 6000. 9000. 12000. 15000. 18000. + 0. 3000. 6000. 9000. 12000. 15000. + 4.0 + + + + ACM_LSPA_ON_SURFACE + LSPA + NCEP + 3.0 + + + + PRES_ON_TOP_OF_ATMOS + PRES + 3.0 + + + + PRES_ON_HYBRID_LVL_1L + PRES + 1. + 21. + 3.0 + + + + PRES_ON_HYBRID_LVL_LLM + PRES + 1. + 61. + 3.0 + + + + CNWAT_ON_SURFACE + CNWAT + NCEP + 1.0 + + + + INST_GFLUX_ON_SURFACE + GFLUX + NCEP + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + NCEP + 50000. + 100000. + 3.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 9000. + 0. + 4.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + 25500. + 0. + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 18000. + 0. + 4.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 9000. + 0. + 4.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + 25500. + 0. + 4.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + 25500. + 0. + 6.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. 1000. + 4.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + NCEP + 6000. + 4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + NCEP + 6000. + 4.0 + + + + LCDC_ON_LOW_CLOUD_LYR + LCDC + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + MCDC + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + HCDC + 3.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 3.0 + + + + AVE_CDLYR_ON_ENTIRE_ATMOS + CDLYR + NCEP + 3.0 + + + + PRES_ON_CLOUD_BASE + PRES + 6.0 + + + + PRES_ON_CLOUD_TOP + PRES + 6.0 + + + + TMP_ON_CLOUD_TOP + TMP + 5.0 + + + + AVE_GFLUX_ON_SURFACE + GFLUX + NCEP + 4.0 + + + + AVE_SNOHF_ON_SURFACE + SNOHF + NCEP + 4.0 + + + + ACM_EVP_ON_SURFACE + EVP + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 3.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 3.0 + + + + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + 305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. + 4.0 + + + + HGT_ON_0C_ISOTHERM + HGT + 6.0 + + + + RH_ON_0C_ISOTHERM + RH + 2.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + 6.0 + + + + PRES_ON_MAX_WIND + PRES + 6.0 + + + + HGT_ON_MAX_WIND + HGT + 6.0 + + + + UGRD_ON_MAX_WIND + UGRD + 4.0 + + + + VGRD_ON_MAX_WIND + VGRD + 4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + HGT_ON_CLOUD_BASE + HGT + 6.0 + + + + HGT_ON_CLOUD_TOP + HGT + 6.0 + + + + GSD_VIS_ON_SURFACE + VIS + 6.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + 6.0 + + + + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + TCOLG_ON_ENTIRE_ATMOS + TCOLG + 5.0 + + + + VGTYP_ON_SURFACE + VGTYP + NCEP + 3.0 + + + + SOTYP_ON_SURFACE + SOTYP + 3.0 + + + + CCOND_ON_SURFACE + CCOND + NCEP + 3.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + SNOD_ON_SURFACE + SNOD + 6.0 + + + + SBSNO_ON_SURFACE + SBSNO + NCEP + 3.0 + + + + SMDRY_ON_SURFACE + SMDRY + NCEP + 3.0 + + + + POROS_ON_SURFACE + POROS + NCEP + 3.0 + + + + RSMIN_ON_SURFACE + RSMIN + NCEP + 3.0 + + + + RLYRS_ON_SURFACE + RLYRS + NCEP + 3.0 + + + + WILT_ON_SURFACE + WILT + NCEP + 3.0 + + + + SMREF_ON_SURFACE + SMREF + NCEP + 3.0 + + + + RCS_ON_SURFACE + RCS + NCEP + 3.0 + + + + RCT_ON_SURFACE + RCT + NCEP + 5.0 + + + + RCQ_ON_SURFACE + RCQ + NCEP + 3.0 + + + + RCSOL_ON_SURFACE + RCSOL + NCEP + 3.0 + + + + PEVPR_ON_SURFACE + PEVPR + NCEP + 6.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + -5.0 + + + + LAI_ON_SURFACE + LAI + NCEP + -3.0 + + + + INST_CSDSF_ON_SURFACE + CSDSF + NCEP + 4.0 + + + + TCDC_ON_SIGMA_LVLS + TCDC + 4 + 9975. 9915. 9835. 9745. 9650. 9490. 9260. 9015. 8755. 8480. 8190. 7890. 7585. 7185. 6690. 6180. 5470. 4550. 3595. 2605. 1580. 530. + 3.0 + + + + HGT_ON_PLANETARY_BOUND_LYR + HGT + -4.0 + + + + MIXHT_ON_SURFACE + MIXHT + -4.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + TMP + 10. + -4.0 + + + + AVE_SNOWC_ON_SURFACE + SNOWC + NCEP + 3.0 + + + + AVE_PRES_ON_SURFACE + PRES + 5.0 + + + + AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + TMP + 10. + -4.0 + + + + AVE_AKHS_ON_SURFACE + AKHS + NCEP + 3.0 + + + + AVE_AKMS_ON_SURFACE + AKMS + NCEP + 3.0 + + + + diff --git a/fix/upp/nam_micro_lookup.dat b/fix/upp/nam_micro_lookup.dat new file mode 120000 index 000000000..21e29f1b0 --- /dev/null +++ b/fix/upp/nam_micro_lookup.dat @@ -0,0 +1 @@ +../.agent/upp/nam_micro_lookup.dat_Ben \ No newline at end of file diff --git a/fix/upp/nam_nests.hiresf_nn.txt b/fix/upp/nam_nests.hiresf_nn.txt new file mode 100755 index 000000000..efa35fc2c --- /dev/null +++ b/fix/upp/nam_nests.hiresf_nn.txt @@ -0,0 +1,865 @@ +MSLET:mean sea level: +PRMSL:mean sea level: +VIS:surface: +VIS:cloud top: +ABSV:250 mb: +ABSV:500 mb: +ABSV:700 mb: +ABSV:850 mb: +ABSV:1000 mb: +PRES:surface: +HGT:surface: +TMP:2 m above ground: +RH:2 m above ground: +DPT:2 m above ground: +UGRD:10 m above ground: +VGRD:10 m above ground: +CSNOW:surface: +CICEP:surface: +CFRZR:surface: +CRAIN:surface: +CAPE:surface: +CIN:surface: +PWAT:entire atmosphere (considered as a single layer): +DSWRF:surface: +HLCY:3000-0 m above ground: +USTM:6000-0 m above ground: +VSTM:6000-0 m above ground: +PLI:30-0 mb above ground: +4LFTX:180-0 mb above ground: +CAPE:180-0 mb above ground: +CIN:180-0 mb above ground: +LFTX:500-1000 mb: +PRES:1 hybrid level: +HGT:1 hybrid level: +TMP:1 hybrid level: +RH:1 hybrid level: +SPFH:1 hybrid level: +UGRD:1 hybrid level: +VGRD:1 hybrid level: +VVEL:1 hybrid level: +TKE:1 hybrid level: +TKE:2 hybrid level: +CLWMR:1 hybrid level: +CICE:1 hybrid level: +HGT:50 mb: +TMP:50 mb: +RH:50 mb: +SPFH:50 mb: +UGRD:50 mb: +VGRD:50 mb: +HGT:75 mb: +TMP:75 mb: +RH:75 mb: +SPFH:75 mb: +UGRD:75 mb: +VGRD:75 mb: +HGT:100 mb: +TMP:100 mb: +RH:100 mb: +SPFH:100 mb: +UGRD:100 mb: +VGRD:100 mb: +HGT:125 mb: +TMP:125 mb: +RH:125 mb: +SPFH:125 mb: +UGRD:125 mb: +VGRD:125 mb: +HGT:150 mb: +TMP:150 mb: +RH:150 mb: +SPFH:150 mb: +UGRD:150 mb: +VGRD:150 mb: +HGT:175 mb: +TMP:175 mb: +RH:175 mb: +SPFH:175 mb: +UGRD:175 mb: +VGRD:175 mb: +HGT:200 mb: +TMP:200 mb: +RH:200 mb: +SPFH:200 mb: +UGRD:200 mb: +VGRD:200 mb: +HGT:225 mb: +TMP:225 mb: +RH:225 mb: +SPFH:225 mb: +UGRD:225 mb: +VGRD:225 mb: +HGT:250 mb: +TMP:250 mb: +RH:250 mb: +SPFH:250 mb: +UGRD:250 mb: +VGRD:250 mb: +HGT:275 mb: +TMP:275 mb: +RH:275 mb: +SPFH:275 mb: +UGRD:275 mb: +VGRD:275 mb: +HGT:300 mb: +TMP:300 mb: +RH:300 mb: +DPT:300 mb: +SPFH:300 mb: +UGRD:300 mb: +VGRD:300 mb: +HGT:325 mb: +TMP:325 mb: +RH:325 mb: +SPFH:325 mb: +UGRD:325 mb: +VGRD:325 mb: +HGT:350 mb: +TMP:350 mb: +RH:350 mb: +SPFH:350 mb: +UGRD:350 mb: +VGRD:350 mb: +HGT:375 mb: +TMP:375 mb: +RH:375 mb: +SPFH:375 mb: +UGRD:375 mb: +VGRD:375 mb: +HGT:400 mb: +TMP:400 mb: +RH:400 mb: +DPT:400 mb: +SPFH:400 mb: +UGRD:400 mb: +VGRD:400 mb: +HGT:425 mb: +TMP:425 mb: +RH:425 mb: +SPFH:425 mb: +UGRD:425 mb: +VGRD:425 mb: +HGT:450 mb: +TMP:450 mb: +RH:450 mb: +SPFH:450 mb: +UGRD:450 mb: +VGRD:450 mb: +HGT:475 mb: +TMP:475 mb: +RH:475 mb: +SPFH:475 mb: +UGRD:475 mb: +VGRD:475 mb: +HGT:500 mb: +TMP:500 mb: +RH:500 mb: +DPT:500 mb: +SPFH:500 mb: +UGRD:500 mb: +VGRD:500 mb: +HGT:525 mb: +TMP:525 mb: +RH:525 mb: +SPFH:525 mb: +UGRD:525 mb: +VGRD:525 mb: +HGT:550 mb: +TMP:550 mb: +RH:550 mb: +SPFH:550 mb: +UGRD:550 mb: +VGRD:550 mb: +HGT:575 mb: +TMP:575 mb: +RH:575 mb: +SPFH:575 mb: +UGRD:575 mb: +VGRD:575 mb: +HGT:600 mb: +TMP:600 mb: +RH:600 mb: +SPFH:600 mb: +UGRD:600 mb: +VGRD:600 mb: +HGT:625 mb: +TMP:625 mb: +RH:625 mb: +SPFH:625 mb: +UGRD:625 mb: +VGRD:625 mb: +HGT:650 mb: +TMP:650 mb: +RH:650 mb: +SPFH:650 mb: +UGRD:650 mb: +VGRD:650 mb: +HGT:675 mb: +TMP:675 mb: +RH:675 mb: +SPFH:675 mb: +UGRD:675 mb: +VGRD:675 mb: +HGT:700 mb: +TMP:700 mb: +RH:700 mb: +DPT:700 mb: +SPFH:700 mb: +UGRD:700 mb: +VGRD:700 mb: +HGT:725 mb: +TMP:725 mb: +RH:725 mb: +SPFH:725 mb: +UGRD:725 mb: +VGRD:725 mb: +HGT:750 mb: +TMP:750 mb: +RH:750 mb: +SPFH:750 mb: +UGRD:750 mb: +VGRD:750 mb: +HGT:775 mb: +TMP:775 mb: +RH:775 mb: +SPFH:775 mb: +UGRD:775 mb: +VGRD:775 mb: +HGT:800 mb: +TMP:800 mb: +RH:800 mb: +SPFH:800 mb: +UGRD:800 mb: +VGRD:800 mb: +HGT:825 mb: +TMP:825 mb: +RH:825 mb: +SPFH:825 mb: +UGRD:825 mb: +VGRD:825 mb: +HGT:850 mb: +TMP:850 mb: +RH:850 mb: +DPT:850 mb: +SPFH:850 mb: +MCONV:850 mb: +UGRD:850 mb: +VGRD:850 mb: +HGT:875 mb: +TMP:875 mb: +RH:875 mb: +SPFH:875 mb: +UGRD:875 mb: +VGRD:875 mb: +HGT:900 mb: +TMP:900 mb: +RH:900 mb: +SPFH:900 mb: +UGRD:900 mb: +VGRD:900 mb: +HGT:925 mb: +TMP:925 mb: +RH:925 mb: +SPFH:925 mb: +UGRD:925 mb: +VGRD:925 mb: +HGT:950 mb: +TMP:950 mb: +RH:950 mb: +SPFH:950 mb: +MCONV:950 mb: +UGRD:950 mb: +VGRD:950 mb: +HGT:975 mb: +TMP:975 mb: +RH:975 mb: +SPFH:975 mb: +UGRD:975 mb: +VGRD:975 mb: +HGT:1000 mb: +TMP:1000 mb: +RH:1000 mb: +DPT:1000 mb: +SPFH:1000 mb: +UGRD:1000 mb: +VGRD:1000 mb: +TMP:surface: +TSOIL:0-0.1 m below ground: +SOILW:0-0.1 m below ground: +TSOIL:0.1-0.4 m below ground: +SOILW:0.1-0.4 m below ground: +TSOIL:0.4-1 m below ground: +SOILW:0.4-1 m below ground: +TSOIL:1-2 m below ground: +SOILW:1-2 m below ground: +TSOIL:3 m underground: +MSTAV:0-1 m below ground: +SOILM:0-2 m below ground: +CNWAT:surface: +SPFH:2 m above ground: +POT:10 m above ground: +SPFH:10 m above ground: +NCPCP:surface: +SNOM:surface: +SSRUN:surface: +BGRUN:surface: +LHTFL:surface: +SHTFL:surface: +GFLUX:surface: +GFLUX:surface: +SNOHF:surface: +EVP:surface: +PEVAP:surface: +SFCR:surface: +CD:surface: +UFLX:surface: +VFLX:surface: +SHTFL:surface: +LHTFL:surface: +SFEXC:surface: +VEG:surface: +LCDC:low cloud layer: +MCDC:middle cloud layer: +HCDC:high cloud layer: +DLWRF:surface: +USWRF:surface: +ULWRF:surface: +USWRF:top of atmosphere: +ULWRF:top of atmosphere: +ULWRF:top of atmosphere: +BRTMP:top of atmosphere: +DSWRF:surface: +DLWRF:surface: +USWRF:surface: +ULWRF:surface: +UGRD:2 hybrid level: +VGRD:2 hybrid level: +STRM:250 mb: +ABSV:400 mb: +ABSV:750 mb: +SPFH:surface: +BMIXL:1 hybrid level: +FRICV:surface: +CAPE:90-0 mb above ground: +CIN:90-0 mb above ground: +HLCY:1000-0 m above ground: +CAPE:255-0 mb above ground: +CIN:255-0 mb above ground: +PLPL:255-0 mb above ground: +RWMR:1 hybrid level: +SNMR:1 hybrid level: +CPOFP:surface: +PRATE:surface: +SRWEQ:surface: +TCOND:1 hybrid level: +RIME:1 hybrid level: +MXSALB:surface: +SOILL:0-0.1 m below ground: +SOILL:0.1-0.4 m below ground: +SOILL:0.4-1 m below ground: +SOILL:1-2 m below ground: +SNFALB:surface: +RLYRS:surface: +CCOND:surface: +RSMIN:surface: +WILT:surface: +SOTYP:surface: +VGTYP:surface: +SMREF:surface: +SMDRY:surface: +SNOWC:surface: +POROS:surface: +RCS:surface: +RCT:surface: +RCQ:surface: +RCSOL:surface: +PRES:level of adiabatic condensation from sfc: +HGT:level of adiabatic condensation from sfc: +GUST:surface: +HGT:10 mb: +TMP:10 mb: +UGRD:10 mb: +VGRD:10 mb: +HGT:20 mb: +TMP:20 mb: +UGRD:20 mb: +VGRD:20 mb: +HGT:30 mb: +TMP:30 mb: +UGRD:30 mb: +VGRD:30 mb: +RH:10 mb: +SPFH:10 mb: +RH:20 mb: +SPFH:20 mb: +RH:30 mb: +SPFH:30 mb: +REFD:1 hybrid level: +CSDSF:surface: +LTNG:surface: +DPT:925 mb: +VUCSH:0-6000 m above ground: +VVCSH:0-6000 m above ground: +TMP:30-0 mb above ground: +RH:30-0 mb above ground: +UGRD:30-0 mb above ground: +VGRD:30-0 mb above ground: +TMP:60-30 mb above ground: +RH:60-30 mb above ground: +UGRD:60-30 mb above ground: +VGRD:60-30 mb above ground: +TMP:90-60 mb above ground: +RH:90-60 mb above ground: +UGRD:90-60 mb above ground: +VGRD:90-60 mb above ground: +TMP:120-90 mb above ground: +RH:120-90 mb above ground: +UGRD:120-90 mb above ground: +VGRD:120-90 mb above ground: +TMP:150-120 mb above ground: +RH:150-120 mb above ground: +UGRD:150-120 mb above ground: +VGRD:150-120 mb above ground: +LAND:surface: +VVEL:50 mb: +VVEL:75 mb: +VVEL:100 mb: +VVEL:125 mb: +VVEL:150 mb: +VVEL:175 mb: +VVEL:200 mb: +VVEL:225 mb: +VVEL:250 mb: +VVEL:275 mb: +VVEL:300 mb: +VVEL:325 mb: +VVEL:350 mb: +VVEL:375 mb: +VVEL:400 mb: +VVEL:425 mb: +VVEL:450 mb: +VVEL:475 mb: +VVEL:500 mb: +VVEL:525 mb: +VVEL:550 mb: +VVEL:575 mb: +VVEL:600 mb: +VVEL:625 mb: +VVEL:650 mb: +VVEL:675 mb: +VVEL:700 mb: +VVEL:725 mb: +VVEL:750 mb: +VVEL:775 mb: +VVEL:800 mb: +VVEL:825 mb: +VVEL:850 mb: +VVEL:875 mb: +VVEL:900 mb: +VVEL:925 mb: +VVEL:950 mb: +VVEL:975 mb: +VVEL:1000 mb: +TKE:30 mb: +TKE:50 mb: +TKE:75 mb: +TKE:100 mb: +TKE:125 mb: +TKE:150 mb: +TKE:175 mb: +CLWMR:50 mb: +CICE:50 mb: +CLWMR:75 mb: +CICE:75 mb: +CLWMR:100 mb: +CICE:100 mb: +CLWMR:125 mb: +CICE:125 mb: +CLWMR:150 mb: +CICE:150 mb: +CLWMR:175 mb: +CICE:175 mb: +TKE:200 mb: +CLWMR:200 mb: +CICE:200 mb: +TKE:225 mb: +CLWMR:225 mb: +CICE:225 mb: +TKE:250 mb: +CLWMR:250 mb: +CICE:250 mb: +TKE:275 mb: +CLWMR:275 mb: +CICE:275 mb: +TKE:300 mb: +CLWMR:300 mb: +CICE:300 mb: +TKE:325 mb: +CLWMR:325 mb: +CICE:325 mb: +TKE:350 mb: +CLWMR:350 mb: +CICE:350 mb: +TKE:375 mb: +CLWMR:375 mb: +CICE:375 mb: +TKE:400 mb: +CLWMR:400 mb: +CICE:400 mb: +TKE:425 mb: +CLWMR:425 mb: +CICE:425 mb: +TKE:450 mb: +CLWMR:450 mb: +CICE:450 mb: +TKE:475 mb: +CLWMR:475 mb: +CICE:475 mb: +TKE:500 mb: +CLWMR:500 mb: +CICE:500 mb: +TKE:525 mb: +CLWMR:525 mb: +CICE:525 mb: +TKE:550 mb: +CLWMR:550 mb: +CICE:550 mb: +TKE:575 mb: +CLWMR:575 mb: +CICE:575 mb: +TKE:600 mb: +CLWMR:600 mb: +CICE:600 mb: +TKE:625 mb: +CLWMR:625 mb: +CICE:625 mb: +TKE:650 mb: +CLWMR:650 mb: +CICE:650 mb: +TKE:675 mb: +CLWMR:675 mb: +CICE:675 mb: +TKE:700 mb: +CLWMR:700 mb: +CICE:700 mb: +TKE:725 mb: +CLWMR:725 mb: +CICE:725 mb: +TKE:750 mb: +CLWMR:750 mb: +CICE:750 mb: +TKE:775 mb: +CLWMR:775 mb: +CICE:775 mb: +TKE:800 mb: +CLWMR:800 mb: +CICE:800 mb: +TKE:825 mb: +CLWMR:825 mb: +CICE:825 mb: +TKE:850 mb: +CLWMR:850 mb: +CICE:850 mb: +TKE:875 mb: +CLWMR:875 mb: +CICE:875 mb: +TKE:900 mb: +CLWMR:900 mb: +CICE:900 mb: +TKE:925 mb: +CLWMR:925 mb: +CICE:925 mb: +TKE:950 mb: +CLWMR:950 mb: +CICE:950 mb: +TKE:975 mb: +CLWMR:975 mb: +CICE:975 mb: +TKE:1000 mb: +CLWMR:1000 mb: +CICE:1000 mb: +PRES:tropopause: +TMP:tropopause: +UGRD:tropopause: +VGRD:tropopause: +VWSH:tropopause: +HGT:0C isotherm: +RH:0C isotherm: +HGT:highest tropospheric freezing level: +PRES:30-0 mb above ground: +POT:30-0 mb above ground: +DPT:30-0 mb above ground: +SPFH:30-0 mb above ground: +MCONV:30-0 mb above ground: +VVEL:30-0 mb above ground: +PWAT:30-0 mb above ground: +PRES:60-30 mb above ground: +SPFH:60-30 mb above ground: +PRES:90-60 mb above ground: +SPFH:90-60 mb above ground: +VVEL:90-60 mb above ground: +PRES:120-90 mb above ground: +SPFH:120-90 mb above ground: +PRES:150-120 mb above ground: +SPFH:150-120 mb above ground: +PRES:180-150 mb above ground: +TMP:180-150 mb above ground: +SPFH:180-150 mb above ground: +UGRD:180-150 mb above ground: +VGRD:180-150 mb above ground: +VVEL:180-150 mb above ground: +ALBDO:surface: +WTMP:surface: +RH:180-150 mb above ground: +ICEC:surface: +TMP:914 m above mean sea level: +UGRD:914 m above mean sea level: +VGRD:914 m above mean sea level: +TMP:1524 m above mean sea level: +UGRD:1524 m above mean sea level: +VGRD:1524 m above mean sea level: +TMP:1829 m above mean sea level: +UGRD:1829 m above mean sea level: +VGRD:1829 m above mean sea level: +TMP:2134 m above mean sea level: +UGRD:2134 m above mean sea level: +VGRD:2134 m above mean sea level: +TMP:2743 m above mean sea level: +UGRD:2743 m above mean sea level: +VGRD:2743 m above mean sea level: +TMP:3658 m above mean sea level: +UGRD:3658 m above mean sea level: +VGRD:3658 m above mean sea level: +PRES:max wind: +HGT:max wind: +UGRD:max wind: +VGRD:max wind: +PRES:cloud base: +HGT:cloud base: +PRES:cloud top: +HGT:cloud top: +TMP:cloud top: +TCOLW:entire atmosphere (considered as a single layer): +TCOLI:entire atmosphere (considered as a single layer): +TCOLR:entire atmosphere (considered as a single layer): +TCOLS:entire atmosphere (considered as a single layer): +TCOLC:entire atmosphere (considered as a single layer): +PRES:grid scale cloud bottom level: +PRES:grid scale cloud top level: +RWMR:30 mb: +SNMR:30 mb: +RWMR:50 mb: +SNMR:50 mb: +RWMR:75 mb: +SNMR:75 mb: +RWMR:100 mb: +SNMR:100 mb: +RWMR:125 mb: +SNMR:125 mb: +RWMR:150 mb: +SNMR:150 mb: +RWMR:175 mb: +SNMR:175 mb: +RWMR:200 mb: +SNMR:200 mb: +RWMR:225 mb: +SNMR:225 mb: +RWMR:250 mb: +SNMR:250 mb: +RWMR:275 mb: +SNMR:275 mb: +RWMR:300 mb: +SNMR:300 mb: +RWMR:325 mb: +SNMR:325 mb: +RWMR:350 mb: +SNMR:350 mb: +RWMR:375 mb: +SNMR:375 mb: +RWMR:400 mb: +SNMR:400 mb: +RWMR:425 mb: +SNMR:425 mb: +RWMR:450 mb: +SNMR:450 mb: +RWMR:475 mb: +SNMR:475 mb: +RWMR:500 mb: +SNMR:500 mb: +RWMR:525 mb: +SNMR:525 mb: +RWMR:550 mb: +SNMR:550 mb: +RWMR:575 mb: +SNMR:575 mb: +RWMR:600 mb: +SNMR:600 mb: +RWMR:625 mb: +SNMR:625 mb: +RWMR:650 mb: +SNMR:650 mb: +RWMR:675 mb: +SNMR:675 mb: +RWMR:700 mb: +SNMR:700 mb: +RWMR:725 mb: +SNMR:725 mb: +RWMR:750 mb: +SNMR:750 mb: +RWMR:775 mb: +SNMR:775 mb: +RWMR:800 mb: +SNMR:800 mb: +RWMR:825 mb: +SNMR:825 mb: +RWMR:850 mb: +SNMR:850 mb: +RWMR:875 mb: +SNMR:875 mb: +RWMR:900 mb: +SNMR:900 mb: +RWMR:925 mb: +SNMR:925 mb: +RWMR:950 mb: +SNMR:950 mb: +RWMR:975 mb: +SNMR:975 mb: +RWMR:1000 mb: +SNMR:1000 mb: +HPBL:surface: +TMP:305 m above mean sea level: +UGRD:305 m above mean sea level: +VGRD:305 m above mean sea level: +TMP:457 m above mean sea level: +UGRD:457 m above mean sea level: +VGRD:457 m above mean sea level: +TMP:610 m above mean sea level: +UGRD:610 m above mean sea level: +VGRD:610 m above mean sea level: +TMP:4572 m above mean sea level: +UGRD:4572 m above mean sea level: +VGRD:4572 m above mean sea level: +HGT:lowest level of the wet bulb zero: +RIME:30 mb: +RIME:50 mb: +RIME:75 mb: +RIME:100 mb: +RIME:125 mb: +RIME:150 mb: +RIME:175 mb: +RIME:200 mb: +RIME:225 mb: +RIME:250 mb: +RIME:275 mb: +RIME:300 mb: +RIME:325 mb: +RIME:350 mb: +RIME:375 mb: +RIME:400 mb: +RIME:425 mb: +RIME:450 mb: +RIME:475 mb: +RIME:500 mb: +RIME:525 mb: +RIME:550 mb: +RIME:575 mb: +RIME:600 mb: +RIME:625 mb: +RIME:650 mb: +RIME:675 mb: +RIME:700 mb: +RIME:725 mb: +RIME:750 mb: +RIME:775 mb: +RIME:800 mb: +RIME:825 mb: +RIME:850 mb: +RIME:875 mb: +RIME:900 mb: +RIME:925 mb: +RIME:950 mb: +RIME:975 mb: +RIME:1000 mb: +VVEL:10 mb: +VVEL:20 mb: +VVEL:30 mb: +CLWMR:30 mb: +CICE:30 mb: +REFC:entire atmosphere (considered as a single layer): +REFD:1000 m above ground: +REFD:4000 m above ground: +RETOP:entire atmosphere (considered as a single layer): +HGT:cloud ceiling: +TCLSW:entire atmosphere (considered as a single layer): +TCOLM:entire atmosphere (considered as a single layer): +HGT:lowest bottom level of supercooled liquid water layer: +HGT:highest top level of supercooled liquid water layer: +DZDT:10 mb: +DZDT:20 mb: +DZDT:30 mb: +DZDT:50 mb: +DZDT:75 mb: +DZDT:100 mb: +DZDT:125 mb: +DZDT:150 mb: +DZDT:175 mb: +DZDT:200 mb: +DZDT:225 mb: +DZDT:250 mb: +DZDT:275 mb: +DZDT:300 mb: +DZDT:325 mb: +DZDT:350 mb: +DZDT:375 mb: +DZDT:400 mb: +DZDT:425 mb: +DZDT:450 mb: +DZDT:475 mb: +DZDT:500 mb: +DZDT:525 mb: +DZDT:550 mb: +DZDT:575 mb: +DZDT:600 mb: +DZDT:625 mb: +DZDT:650 mb: +DZDT:675 mb: +DZDT:700 mb: +DZDT:725 mb: +DZDT:750 mb: +DZDT:775 mb: +DZDT:800 mb: +DZDT:825 mb: +DZDT:850 mb: +DZDT:875 mb: +DZDT:900 mb: +DZDT:925 mb: +DZDT:950 mb: +DZDT:975 mb: +DZDT:1000 mb: +SWHR:entire atmosphere (considered as a single layer): +LWHR:entire atmosphere (considered as a single layer): +LRGHR:entire atmosphere (considered as a single layer): +MCONV:entire atmosphere (considered as a single layer): +UGRD:planetary boundary layer: +VGRD:planetary boundary layer: +HGT:planetary boundary layer: +PRES:80 m above ground: +TMP:80 m above ground: +UGRD:80 m above ground: +VGRD:80 m above ground: +SPFH:80 m above ground: +VRATE:planetary boundary layer: +HINDEX:surface: +TMAX:2 m above ground: +TMIN:2 m above ground: +MAXRH:2 m above ground: +MINRH:2 m above ground: +MAXUW:10 m above ground: +MAXVW:10 m above ground: +MXUPHL:5000-2000 m above ground: +UPHL:5000-2000 m above ground: +MAXREF:1000 m above ground: +MAXUVV:400-1000 mb: +MAXDVV:400-1000 mb: +VIL:entire atmosphere (considered as a single layer): diff --git a/fix/upp/params_grib2_tbl_new b/fix/upp/params_grib2_tbl_new new file mode 100755 index 000000000..514fc5fa9 --- /dev/null +++ b/fix/upp/params_grib2_tbl_new @@ -0,0 +1,1292 @@ + 0 7 11 0 4LFTX + 0 7 193 1 4LFTX + 0 3 19 0 5WAVA + 0 3 197 1 5WAVA + 0 3 15 0 5WAVH + 0 3 193 1 5WAVH + 0 20 106 0 AACOEF + 0 2 11 0 ABSD + 4 2 5 0 ABSFRQ + 0 1 18 0 ABSH + 4 2 6 0 ABSRB + 0 2 10 0 ABSV + 0 18 0 0 ACCES + 0 18 1 0 ACIOD + 2 0 228 1 ACOND + 0 1 224 1 ACPCPN + 0 1 10 0 ACPCP + 0 18 2 0 ACRADP + 10 4 13 0 ACWSRD + 1 2 11 0 ACWSR + 0 20 105 0 AECOEF + 0 20 3 0 AEMFLX + 0 13 0 0 AEROT + 0 2 36 0 AFRWE + 0 20 50 0 AIA + 0 18 10 0 AIRCON + 2 0 208 1 AKHS + 2 0 209 1 AKMS + 0 19 1 0 ALBDO + 0 20 108 0 ALBGRD + 0 20 107 0 ALBSAT + 10 0 38 0 ALCWH + 0 14 204 1 ALD2 + 0 20 110 0 ALEGRD + 0 20 109 0 ALESAT + 10 0 39 0 ALRRC + 0 3 11 0 ALTS + 10 0 37 0 ALTWH + 2 0 219 1 AMIXL + 3 192 11 0 AMSRE10 + 3 192 12 0 AMSRE11 + 3 192 13 0 AMSRE12 + 3 192 10 0 AMSRE9 + 0 20 59 0 ANCON + 3 1 23 0 ANGCOE + 0 20 111 0 ANGSTEXP + 0 20 5 0 ANPEMFLX + 0 20 4 0 ANPMFLX + 10 3 197 1 AOHFLX + 0 3 21 0 AOSGSO + 3 1 20 0 AOT06 + 3 1 21 0 AOT08 + 3 1 22 0 AOT16 + 0 20 102 0 AOTK + 0 1 223 1 APCPN + 0 1 8 0 APCP + 0 0 21 0 APTMP + 0 1 221 1 ARAIN + 0 20 8 0 AREMFLX + 0 3 24 0 ASGSO + 10 3 198 1 ASHFL + 0 20 60 0 ASNCON + 0 1 29 0 ASNOW + 0 20 104 0 ASYSFK + 0 190 0 0 ATEXT + 3 1 13 0 ATMDIV + 0 20 101 0 ATMTK + 2 3 201 1 AVSFT + 2 3 200 1 BARET + 10 4 7 0 BATHY + 10 0 44 0 BENINX + 1 0 5 0 BGRUN + 1 0 192 1 BGRUN + 10 4 194 1 BKENG + 0 7 1 0 BLI + 0 7 16 0 BLKRN + 0 2 20 0 BLYDP + 2 0 14 0 BMIXL + 2 0 197 1 BMIXL + 0 7 201 1 BNEGELAY + 2 3 4 0 BOTLST + 0 7 202 1 BPOSELAY + 0 15 1 0 BREF + 3 1 27 0 BRFLF + 0 5 7 0 BRTEMP + 0 4 4 0 BRTMP + 0 15 2 0 BRVEL + 0 15 0 0 BSWID + 4 3 0 0 BTOT + 4 3 1 0 BVEC1 + 4 3 2 0 BVEC2 + 4 3 3 0 BVEC3 + 0 18 18 0 CAACL + 4 8 4 0 CAIIRAD + 0 7 206 1 CANGLE + 2 1 192 1 CANL + 0 7 6 0 CAPE + 0 1 88 0 CATCP + 0 19 29 0 CATEDR + 0 19 22 0 CAT + 0 20 63 0 CAVEMDL + 0 20 70 0 CBECSLSP + 0 6 25 0 CBHE + 0 20 67 0 CBLCLDSP + 0 20 73 0 CBLCSRCP + 3 1 14 0 CBTMP + 3 1 98 0 CCMPEMRR + 2 0 15 0 CCOND + 2 0 199 1 CCOND + 0 6 7 0 CDCA + 0 6 11 0 CDCB + 0 6 22 0 CDCC + 0 17 3 0 CDCDLTFD + 0 6 23 0 CDCIMR + 0 6 2 0 CDCON + 0 6 12 0 CDCTOP + 0 6 8 0 CDCT + 0 17 2 0 CDGDLTFD + 0 6 14 0 CDLYR + 0 6 192 1 CDLYR + 0 4 195 1 CDUVB + 10 0 16 0 CDWW + 0 2 29 0 CD + 0 2 196 1 CD + 0 6 13 0 CEIL + 0 5 197 1 CFNLF + 0 4 199 1 CFNSF + 0 1 34 0 CFRZR + 0 1 193 1 CFRZR + 0 20 54 0 CGDRC + 0 20 53 0 CGPRC + 10 3 2 0 CH + 0 18 17 0 CIAIRC + 0 19 206 1 CICEL + 0 1 35 0 CICEP + 0 1 194 1 CICEP + 10 2 12 0 CICES + 0 6 0 0 CICE + 0 19 208 1 CIFLT + 0 1 82 0 CIMIXR + 0 20 66 0 CINCLDSP + 0 20 69 0 CINCSLSP + 0 20 72 0 CINCSRCP + 0 7 7 0 CIN + 0 20 68 0 CIRELREP + 0 20 74 0 CIRERECP + 2 3 22 0 CISICE + 2 3 20 0 CISOILM + 2 0 23 0 CISOILW + 0 19 207 1 CIVIS + 3 2 9 0 CLDALB + 3 2 10 0 CLDEMISS + 3 2 8 0 CLDIWP + 3 2 7 0 CLDLWP + 3 2 5 0 CLDODEP + 3 2 6 0 CLDPER + 3 2 4 0 CLDPHAS + 3 1 16 0 CLDRAD + 3 2 3 0 CLDTYPE + 0 1 235 1 CLLMR + 0 1 22 0 CLMR + 3 0 7 0 CLOUDM + 0 2 216 1 CNGWDU + 0 2 217 1 CNGWDV + 0 3 209 1 CNVDEMF + 0 3 208 1 CNVDMF + 0 0 196 1 CNVHR + 0 1 213 1 CNVMR + 0 3 207 1 CNVUMF + 0 2 212 1 CNVU + 0 2 213 1 CNVV + 2 0 13 0 CNWAT + 2 0 196 1 CNWAT + 0 20 56 0 COAIA + 0 20 1 0 COLMD + 0 20 51 0 CONAIR + 0 7 19 0 CONAPES + 0 1 216 1 CONDP + 0 19 16 0 CONTB + 0 19 14 0 CONTET + 0 19 13 0 CONTI + 0 19 24 0 CONTKE + 0 19 15 0 CONTT + 0 19 26 0 CONVO + 0 19 222 1 CONVP + 0 192 6 0 COVMM + 0 192 1 0 COVMZ + 0 2 205 1 COVMZ + 0 192 11 0 COVPSPS + 0 192 8 0 COVQM + 0 192 12 0 COVQQ + 0 192 10 0 COVQVV + 0 192 7 0 COVQZ + 0 192 3 0 COVTM + 0 2 207 1 COVTM + 0 192 14 0 COVTT + 0 192 9 0 COVTVV + 0 192 4 0 COVTW + 0 192 2 0 COVTZ + 0 2 206 1 COVTZ + 0 192 13 0 COVVVVV + 0 192 5 0 COVZZ + 0 1 39 0 CPOFP + 1 1 193 1 CPOFP + 1 1 192 1 CPOZP + 1 1 0 0 CPPOP + 0 1 37 0 CPRAT + 0 1 196 1 CPRAT + 0 1 33 0 CRAIN + 0 1 192 1 CRAIN + 0 20 71 0 CRERELSP + 0 1 76 0 CRRATE + 4 2 9 0 CRTFRQ + 1 2 13 0 CSAFC + 3 1 15 0 CSBTMP + 0 5 196 1 CSDLF + 0 4 196 1 CSDSF + 3 2 0 0 CSKPROB + 3 1 17 0 CSKYRAD + 0 1 36 0 CSNOW + 0 1 195 1 CSNOW + 0 1 58 0 CSRATE + 0 1 55 0 CSRWE + 0 5 195 1 CSULF + 0 4 198 1 CSUSF + 3 1 3 0 CTOPHQI + 3 1 2 0 CTOPH + 3 2 2 0 CTOPRES + 3 2 1 0 CTOPTMP + 0 19 21 0 CTP + 0 6 16 0 CUEFI + 0 6 194 1 CUEFI + 0 6 6 0 CWAT + 0 7 195 1 CWDI + 0 6 15 0 CWORK + 0 6 193 1 CWORK + 0 1 48 0 CWP + 1 1 195 1 CWR + 10 4 195 1 DBSS + 0 7 203 1 DCAPE + 0 20 12 0 DDMFLX + 0 3 30 0 DDRATE + 0 20 15 0 DDVEL + 2 0 30 0 DECF + 0 3 14 0 DENALT + 0 3 10 0 DEN + 0 0 7 0 DEPR + 1 0 13 0 DEPWSS + 10 2 2 0 DICED + 4 4 2 0 DIFEFLUX + 4 4 4 0 DIFIFLUX + 4 4 0 0 DIFPFLUX + 3 6 5 0 DIFSOLEX + 3 6 4 0 DIFSOLIR + 0 4 14 0 DIFSWRF + 10 1 0 0 DIRC + 2 3 14 0 DIREC + 10 0 10 0 DIRPW + 3 6 3 0 DIRSOLEX + 3 6 2 0 DIRSOLIR + 10 0 12 0 DIRSW + 10 0 33 0 DIRWTS + 10 0 32 0 DIRWWW + 1 0 7 0 DISRS + 0 3 6 0 DIST + 0 5 8 0 DLWRFCS + 0 5 3 0 DLWRF + 0 5 192 1 DLWRF + 0 3 28 0 DMFLX + 0 0 6 0 DPT + 2 4 8 0 DRTCODE + 0 18 12 0 DRYDEP + 0 19 237 1 DRYTPROB + 4 7 2 0 DSKDAY + 4 7 1 0 DSKINT + 4 7 3 0 DSKNGT + 10 3 1 0 DSLM + 10 191 3 0 DSLOBSO + 0 191 3 0 DSLOBS + 0 4 52 0 DSWRFCS + 0 4 13 0 DSWRFLX + 0 4 7 0 DSWRF + 0 4 192 1 DSWRF + 0 4 204 1 DTRF + 2 4 7 0 DUFMCODE + 0 4 194 1 DUVB + 0 4 12 0 DWUVR + 0 2 9 0 DZDT + 0 7 207 1 E3KH + 3 2 11 0 EAODR + 3 5 5 0 EBSDSSTS + 3 5 4 0 EBSSTSTD + 0 19 30 0 EDPARM + 0 7 204 1 EFHL + 0 3 222 1 EFSH + 0 7 9 0 EHLX + 2 0 237 1 EIWATER + 4 2 1 0 ELCDEN + 4 0 1 0 ELECTMP + 10 3 194 1 ELEV + 0 19 238 1 ELLINX + 0 0 205 1 ELMELT + 0 191 197 1 ELONN + 0 191 193 1 ELON + 0 1 211 1 EMNP + 0 0 3 0 EPOT + 0 19 218 1 EPSR + 10 3 252 1 EROSNP + 1 0 3 0 ESCT + 0 2 233 1 ESHR + 0 7 205 1 ESP + 3 1 0 0 ESTP + 3 1 4 0 ESTUGRD + 3 1 5 0 ESTVGRD + 0 2 32 0 ETACVV + 10 3 250 1 ETCWL + 4 3 4 0 ETOT + 10 3 193 1 ETSRG + 0 2 38 0 ETSS + 4 6 3 0 EUVIRR + 4 8 1 0 EUVRAD + 2 0 6 0 EVAPT + 0 1 79 0 EVARATE + 2 3 198 1 EVBS + 2 0 229 1 EVCW + 4 3 5 0 EVEC1 + 4 3 6 0 EVEC2 + 4 3 7 0 EVEC3 + 2 0 29 0 EVERF + 0 1 6 0 EVP + 2 0 213 1 EWATR + 0 2 39 0 EWTPARM + 4 6 5 0 F107 + 2 4 3 0 FBAREA + 2 4 10 0 FBUPINX + 0 6 37 0 FCONPC + 3 5 3 0 FDNSSTMP + 2 4 11 0 FDSRTE + 1 0 0 0 FFLDG + 1 0 1 0 FFLDRO + 2 4 6 0 FFMCODE + 0 1 228 1 FICEAC + 0 6 21 0 FICE + 0 6 199 1 FICE + 3 0 9 0 FIREDI + 2 4 1 0 FIREODT + 2 4 0 0 FIREOLK + 2 3 203 1 FLDCP + 1 0 12 0 FLDPSW + 0 19 205 1 FLGHT + 0 7 18 0 FLXRN + 2 4 4 0 FOSINDX + 0 1 67 0 FPRATE + 0 6 32 0 FRACCC + 0 1 43 0 FRAIN + 0 1 202 1 FRAIN + 10 0 63 0 FREWWW + 10 0 17 0 FRICVW + 0 2 30 0 FRICV + 0 2 197 1 FRICV + 0 1 227 1 FROZR + 2 3 24 0 FRSTINX + 10 0 64 0 FRWWTSW + 0 1 225 1 FRZR + 10 3 204 1 FRZSPR + 0 1 121 0 FSNOWC + 0 6 36 0 FSTRPC + 2 4 5 0 FWINX + 0 1 95 0 FZPRATE + 0 18 3 0 GDCES + 0 18 4 0 GDIOD + 0 18 5 0 GDRADP + 0 191 1 0 GEOLAT + 0 191 2 0 GEOLON + 0 2 43 0 GEOWD + 0 2 44 0 GEOWS + 2 0 10 0 GFLUX + 2 0 193 1 GFLUX + 2 5 1 0 GLACTMP + 0 3 9 0 GPA + 0 1 75 0 GPRATE + 0 3 4 0 GP + 0 4 3 0 GRAD + 0 7 17 0 GRDRN + 0 1 32 0 GRLE + 3 6 1 0 GSOLEXP + 3 6 0 0 GSOLIRR + 0 2 22 0 GUST + 0 2 210 1 GWDU + 0 2 211 1 GWDV + 0 3 23 0 GWD + 1 0 9 0 GWLOWS + 2 0 214 1 GWREC + 1 0 8 0 GWUPS + 0 1 71 0 HAILMXR + 0 19 198 1 HAILPROB + 0 1 73 0 HAILPR + 0 1 31 0 HAIL + 4 8 2 0 HARAD + 0 19 210 1 HAVNI + 0 6 5 0 HCDC + 0 6 26 0 HCONCB + 0 6 27 0 HCONCT + 0 0 12 0 HEATX + 4 8 6 0 HELCOR + 2 0 24 0 HFLUX + 0 20 62 0 HGTMD + 0 3 211 1 HGTN + 0 3 203 1 HGTX + 0 3 204 1 HGTY + 0 3 5 0 HGT + 0 19 32 0 HIFREL + 2 4 2 0 HINDEX + 0 7 8 0 HLCY + 0 18 16 0 HMXACON + 0 3 18 0 HPBL + 0 3 196 1 HPBL + 4 2 8 0 HPRIMF + 0 19 196 1 HRCONO + 0 15 16 0 HSRHT + 0 15 15 0 HSR + 0 3 7 0 HSTDV + 10 0 3 0 HTSGW + 0 3 3 0 ICAHT + 1 2 7 0 ICECIL + 10 2 0 0 ICEC + 10 2 7 0 ICED + 10 2 6 0 ICEG + 10 2 9 0 ICEPRS + 0 19 27 0 ICESC + 0 19 37 0 ICESEV + 1 2 6 0 ICETIL + 10 2 1 0 ICETK + 10 2 8 0 ICETMP + 0 19 6 0 ICIB + 0 19 20 0 ICIP + 0 19 5 0 ICIT + 0 19 7 0 ICI + 0 1 23 0 ICMR + 0 19 233 1 ICPRB + 0 19 234 1 ICSEV + 1 2 5 0 ICTKIL + 2 0 207 1 ICWAT + 0 1 20 0 ILIQW + 10 0 27 0 IMFTSW + 10 0 26 0 IMFWW + 10 0 25 0 IMWF + 2 4 9 0 INFSINX + 4 4 3 0 INTEFLUX + 10 4 196 1 INTFD + 4 4 5 0 INTIFLUX + 4 4 1 0 INTPFLUX + 4 2 3 0 IONDEN + 4 0 3 0 IONTMP + 0 1 68 0 IPRATE + 3 1 1 0 IRRATE + 10 191 0 0 IRTSEC + 3 5 0 0 ISSTMP + 0 19 235 1 JFWPRB + 10 3 201 1 KENG + 0 7 3 0 KOX + 10 0 43 0 KSSEDW + 0 7 2 0 KX + 0 7 198 1 LAI + 2 0 234 1 LAKEFRC + 2 0 233 1 LANDFRC + 1 2 8 0 LANDIL + 2 0 218 1 LANDN + 2 0 8 0 LANDU + 2 0 0 0 LAND + 0 2 202 1 LAPP + 0 0 8 0 LAPR + 0 2 198 1 LAUV + 0 19 209 1 LAVNI + 0 2 200 1 LAVV + 0 3 205 1 LAYTH + 0 6 3 0 LCDC + 10 3 203 1 LCH + 2 0 28 0 LEAINX + 0 7 10 0 LFTX + 0 7 192 1 LFTX + 0 0 10 0 LHTFL + 0 1 229 1 LICEAC + 0 13 195 1 LIPMF + 2 3 10 0 LIQVSM + 0 15 4 0 LMAXBR + 4 7 0 0 LMBINT + 0 3 210 1 LMH + 0 2 218 1 LMV + 0 2 203 1 LOPP + 0 2 199 1 LOUV + 0 2 201 1 LOVV + 2 3 3 0 LOWLSM + 0 13 194 1 LPMTF + 0 3 201 1 LPSX + 0 3 202 1 LPSY + 0 0 195 1 LRGHR + 0 1 217 1 LRGMR + 2 0 212 1 LSOIL + 2 3 199 1 LSPA + 0 1 54 0 LSPRATE + 0 1 77 0 LSRRATE + 0 1 59 0 LSSRATE + 0 1 56 0 LSSRWE + 0 1 47 0 LSWP + 0 17 0 0 LTNGSD + 0 17 192 1 LTNG + 0 17 1 0 LTPINX + 0 5 2 0 LWAVR + 0 5 194 1 LWHR + 0 4 5 0 LWRAD + 2 3 23 0 LWSNWP + 4 8 7 0 MASK + 0 6 38 0 MASSDCD + 0 6 39 0 MASSDCI + 0 20 0 0 MASSDEN + 0 1 98 0 MASSDG + 0 1 99 0 MASSDH + 0 1 96 0 MASSDR + 0 1 97 0 MASSDS + 0 20 2 0 MASSMR + 0 18 15 0 MAXACON + 0 1 28 0 MAXAH + 0 2 221 1 MAXDVV + 0 2 21 0 MAXGUST + 0 16 198 1 MAXREF + 0 1 27 0 MAXRH + 0 2 220 1 MAXUVV + 0 2 222 1 MAXUW + 0 1 245 1 MAXVIG + 0 2 223 1 MAXVW + 10 0 24 0 MAXWH + 0 6 4 0 MCDC + 0 1 26 0 MCONV + 0 6 40 0 MDCCWD + 0 1 38 0 MDIVER + 0 1 197 1 MDIV + 0 1 112 0 MDLWGVA + 0 1 109 0 MDLWHVA + 0 1 115 0 MDLWSVA + 3 2 30 0 MEACST + 0 6 200 1 MFLUX + 0 2 26 0 MFLX + 0 2 193 1 MFLX + 0 0 14 0 MINDPD + 0 1 198 1 MINRH + 0 19 3 0 MIXHT + 0 19 204 1 MIXLY + 0 1 2 0 MIXR + 0 7 212 1 MLFC + 0 191 195 1 MLYNO + 0 1 114 0 MMLWGDA + 0 1 111 0 MMLWHDA + 0 1 117 0 MMLWSDA + 0 2 6 0 MNTSF + 0 7 200 1 MNUPHL + 10 0 40 0 MNWSOW + 0 20 64 0 MOLRDRYA + 0 20 65 0 MOLRWETA + 10 191 1 0 MOSF + 0 19 195 1 MRCONO + 0 3 192 1 MSLET + 0 3 198 1 MSLMA + 0 20 16 0 MSSRDRYA + 0 20 17 0 MSSRWETA + 10 0 20 0 MSSW + 2 0 11 0 MSTAV + 2 0 194 1 MSTAV + 2 0 7 0 MTERH + 10 4 1 0 MTHA + 10 4 0 0 MTHD + 10 2 11 0 MVCICEP + 10 0 53 0 MWDFSWEL + 10 0 41 0 MWDIRW + 10 0 54 0 MWDSSWEL + 10 0 55 0 MWDTSWEL + 10 0 50 0 MWPFSWEL + 10 0 51 0 MWPSSWEL + 10 0 52 0 MWPTSWEL + 10 0 15 0 MWSPER + 0 19 28 0 MWTURB + 0 19 31 0 MXEDPRM + 0 20 61 0 MXMASSD + 0 19 17 0 MXSALB + 0 19 192 1 MXSALB + 0 7 199 1 MXUPHL + 10 0 30 0 MZPTSW + 10 0 29 0 MZPWW + 10 0 28 0 MZWPER + 0 4 202 1 NBDSF + 0 19 213 1 NBSALB + 0 6 29 0 NCCICE + 0 1 207 1 NCIP + 0 6 28 0 NCONCD + 0 1 9 0 NCPCP + 0 6 31 0 NDCICE + 0 4 203 1 NDDSF + 0 6 30 0 NDENCD + 2 0 31 0 NDVINX + 2 0 217 1 NDVI + 0 191 196 1 NLATN + 0 191 192 1 NLAT + 0 3 206 1 NLGSP + 0 3 25 0 NLPRES + 0 5 6 0 NLWRCS + 0 5 5 0 NLWRF + 0 5 0 0 NLWRS + 0 5 1 0 NLWRT + 3 1 6 0 NPIXU + 0 4 11 0 NSWRFCS + 0 4 9 0 NSWRF + 0 4 0 0 NSWRS + 0 4 1 0 NSWRT + 4 4 6 0 NTRNFLUX + 0 2 37 0 NTSS + 0 1 106 0 NUMDG + 0 1 107 0 NUMDH + 0 1 104 0 NUMDR + 0 1 105 0 NUMDS + 0 2 34 0 NWIND + 0 19 214 1 NWSALB + 10 0 19 0 NWSTR + 0 2 40 0 NWTPARM + 0 14 1 0 O3MR + 0 14 192 1 O3MR + 10 4 197 1 OHC + 0 2 215 1 OMGALF + 10 1 192 1 OMLU + 10 1 193 1 OMLV + 0 3 217 1 ORASNW + 0 3 216 1 ORASSW + 0 3 215 1 ORASS + 0 3 214 1 ORASW + 0 3 213 1 ORCONV + 0 3 221 1 ORLSNW + 0 3 220 1 ORLSSW + 0 3 219 1 ORLSS + 0 3 218 1 ORLSW + 10 4 4 0 OVHD + 10 4 6 0 OVMD + 10 4 5 0 OVSD + 10 3 253 1 OWASHP + 0 14 194 1 OZCAT + 0 14 193 1 OZCON + 0 14 200 1 OZMAX1 + 0 14 201 1 OZMAX8 + 10 3 196 1 P2OMLT + 2 0 235 1 PAHFLX + 3 3 2 0 PBINFRC + 3 3 1 0 PBLIFRC + 0 19 12 0 PBLREG + 3 3 0 0 PBMVFRC + 0 1 234 1 PCPDUR + 0 14 202 1 PDMAX1 + 0 14 203 1 PDMAX24 + 10 0 11 0 PERPW + 1 0 16 0 PERRATE + 10 0 13 0 PERSW + 0 1 40 0 PEVAP + 0 1 199 1 PEVAP + 0 1 41 0 PEVPR + 0 1 200 1 PEVPR + 0 4 10 0 PHOTAR + 3 0 8 0 PIXST + 2 0 238 1 PLANTTR + 0 7 0 0 PLI + 0 3 200 1 PLPL + 4 2 0 0 PLSMDEN + 10 0 23 0 PMAXWH + 0 13 192 1 PMTC + 0 13 193 1 PMTF + 1 1 2 0 POP + 2 3 9 0 POROS + 2 3 197 1 POROS + 0 0 2 0 POT + 0 14 199 1 POZO + 0 14 198 1 POZT + 0 14 196 1 POZ + 10 0 36 0 PPERTS + 10 0 35 0 PPERWW + 1 1 194 1 PPFFG + 0 1 231 1 PPINDX + 1 1 1 0 PPOSP + 0 1 7 0 PRATE + 4 0 4 0 PRATMP + 0 15 5 0 PREC + 0 3 13 0 PRESALT + 0 3 8 0 PRESA + 0 3 212 1 PRESN + 0 3 0 0 PRES + 0 3 1 0 PRMSL + 0 1 232 1 PROBCIP + 0 19 221 1 PROCON + 4 2 2 0 PROTDEN + 4 0 2 0 PROTTMP + 4 0 5 0 PRPTMP + 0 19 216 1 PRSIGSVR + 0 19 215 1 PRSVR + 10 4 21 0 PRTSAL + 0 19 36 0 PSNOWS + 0 3 2 0 PTEND + 0 1 19 0 PTYPE + 0 2 219 1 PVMWW + 0 2 14 0 PVORT + 0 1 3 0 PWAT + 10 0 46 0 PWAVEDIR + 0 1 30 0 PWCAT + 10 0 34 0 PWPER + 0 1 226 1 PWTHER + 0 1 219 1 QMAX + 0 1 220 1 QMIN + 2 0 215 1 QREC + 0 1 218 1 QZ0 + 0 16 201 1 RADARVIL + 2 3 202 1 RADT + 3 1 8 0 RAZA + 2 0 21 0 RCQ + 2 0 204 1 RCQ + 2 0 20 0 RCSOL + 2 0 205 1 RCSOL + 2 0 18 0 RCS + 2 0 202 1 RCS + 2 0 19 0 RCT + 2 0 203 1 RCT + 2 0 206 1 RDRIP + 0 15 6 0 RDSP1 + 0 15 7 0 RDSP2 + 0 15 8 0 RDSP3 + 2 0 32 0 RDVEG + 0 16 5 0 REFC + 0 16 196 1 REFC + 0 16 4 0 REFD + 0 16 195 1 REFD + 0 16 2 0 REFZC + 0 16 194 1 REFZC + 0 16 1 0 REFZI + 0 16 193 1 REFZI + 0 16 0 0 REFZR + 0 16 192 1 REFZR + 0 2 13 0 RELD + 0 2 12 0 RELV + 0 16 3 0 RETOP + 0 16 197 1 RETOP + 0 0 194 1 REV + 0 15 9 0 RFCD + 0 15 10 0 RFCI + 0 15 13 0 RFGRPL + 0 15 14 0 RFHAIL + 3 1 9 0 RFL06 + 3 1 10 0 RFL08 + 3 1 11 0 RFL16 + 3 1 12 0 RFL39 + 0 15 12 0 RFRAIN + 0 15 11 0 RFSNOW + 0 1 94 0 RHICE + 0 1 242 1 RHPW + 0 1 93 0 RHWATER + 0 1 1 0 RH + 0 1 44 0 RIME + 0 1 203 1 RIME + 10 1 4 0 RIPCOP + 0 7 12 0 RI + 0 7 194 1 RI + 2 3 6 0 RLYRS + 2 3 193 1 RLYRS + 0 1 65 0 RPRATE + 2 0 16 0 RSMIN + 2 0 200 1 RSMIN + 1 0 2 0 RSSC + 0 191 194 1 RTSEC + 10 3 206 1 RUNUP + 1 0 11 0 RVERSW + 0 1 24 0 RWMR + 0 18 14 0 SACON + 0 20 100 0 SADEN + 0 19 19 0 SALBD + 3 0 1 0 SALBEDO + 10 4 193 1 SALIN + 1 2 12 0 SALTIL + 10 4 3 0 SALTY + 0 1 5 0 SATD + 2 3 17 0 SATOSM + 3 192 4 0 SBC123 + 3 192 5 0 SBC124 + 0 19 211 1 SBSALB + 0 1 212 1 SBSNO + 3 192 6 0 SBT112 + 3 192 7 0 SBT113 + 3 192 8 0 SBT114 + 3 192 9 0 SBT115 + 3 192 0 0 SBT122 + 3 192 1 0 SBT123 + 3 192 2 0 SBT124 + 3 192 3 0 SBT126 + 3 192 23 0 SBTA1610 + 3 192 24 0 SBTA1611 + 3 192 25 0 SBTA1612 + 3 192 26 0 SBTA1613 + 3 192 27 0 SBTA1614 + 3 192 28 0 SBTA1615 + 3 192 29 0 SBTA1616 + 3 192 20 0 SBTA167 + 3 192 21 0 SBTA168 + 3 192 22 0 SBTA169 + 3 192 39 0 SBTA1710 + 3 192 40 0 SBTA1711 + 3 192 41 0 SBTA1712 + 3 192 42 0 SBTA1713 + 3 192 43 0 SBTA1714 + 3 192 44 0 SBTA1715 + 3 192 45 0 SBTA1716 + 3 192 36 0 SBTA177 + 3 192 37 0 SBTA178 + 3 192 38 0 SBTA179 + 3 192 79 0 SBTA1810 + 3 192 80 0 SBTA1811 + 3 192 81 0 SBTA1812 + 3 192 82 0 SBTA1813 + 3 192 83 0 SBTA1814 + 3 192 84 0 SBTA1815 + 3 192 85 0 SBTA1816 + 3 192 76 0 SBTA187 + 3 192 77 0 SBTA188 + 3 192 78 0 SBTA189 + 3 192 55 0 SBTAGR10 + 3 192 56 0 SBTAGR11 + 3 192 57 0 SBTAGR12 + 3 192 58 0 SBTAGR13 + 3 192 59 0 SBTAGR14 + 3 192 60 0 SBTAGR15 + 3 192 61 0 SBTAGR16 + 3 192 52 0 SBTAGR7 + 3 192 53 0 SBTAGR8 + 3 192 54 0 SBTAGR9 + 3 192 69 0 SBTAHI10 + 3 192 70 0 SBTAHI11 + 3 192 71 0 SBTAHI12 + 3 192 72 0 SBTAHI13 + 3 192 73 0 SBTAHI14 + 3 192 74 0 SBTAHI15 + 3 192 75 0 SBTAHI16 + 3 192 66 0 SBTAHI7 + 3 192 67 0 SBTAHI8 + 3 192 68 0 SBTAHI9 + 3 0 2 0 SBTMP + 0 7 210 1 SCCP + 4 2 10 0 SCINT + 0 1 84 0 SCLIWC + 0 1 83 0 SCLLWC + 3 1 29 0 SCRAD + 0 20 112 0 SCTAOTK + 3 0 5 0 SCTPRES + 0 20 6 0 SDDMFLX + 0 1 61 0 SDEN + 3 1 99 0 SDMPEMRR + 0 3 20 0 SDSGSO + 0 1 60 0 SDWE + 0 20 11 0 SEDMFLX + 1 2 3 0 SEDTK + 1 2 4 0 SEDTMP + 10 3 207 1 SETUP + 0 1 62 0 SEVAP + 2 0 216 1 SFCRH + 2 0 1 0 SFCR + 2 0 34 0 SFCWRO + 2 0 12 0 SFEXC + 2 0 195 1 SFEXC + 1 0 10 0 SFLORC + 0 20 55 0 SFLUX + 3 192 14 0 SFRA161 + 3 192 15 0 SFRA162 + 3 192 16 0 SFRA163 + 3 192 17 0 SFRA164 + 3 192 18 0 SFRA165 + 3 192 19 0 SFRA166 + 3 192 30 0 SFRA171 + 3 192 31 0 SFRA172 + 3 192 32 0 SFRA173 + 3 192 33 0 SFRA174 + 3 192 34 0 SFRA175 + 3 192 35 0 SFRA176 + 10 4 11 0 SFSALP + 1 2 9 0 SFSAL + 10 4 12 0 SFTMPP + 1 2 10 0 SFTMP + 0 2 7 0 SGCVV + 0 0 201 1 SHAHR + 0 19 201 1 SHAILPRO + 0 1 214 1 SHAMR + 2 3 26 0 SHFLX + 0 0 11 0 SHTFL + 0 1 108 0 SHTPRM + 0 7 13 0 SHWINX + 10 2 3 0 SICED + 4 9 1 0 SIGHAL + 0 7 209 1 SIGH + 4 9 2 0 SIGPAR + 4 9 0 0 SIGPED + 0 7 211 1 SIGT + 0 19 217 1 SIPD + 0 0 17 0 SKINT + 3 5 1 0 SKSSTMP + 0 1 230 1 SLACC + 0 19 23 0 SLDP + 3 0 4 0 SLFTI + 10 3 202 1 SLTFL + 2 3 194 1 SLTYP + 0 6 34 0 SLWTC + 2 3 8 0 SMDRY + 2 3 196 1 SMDRY + 0 1 113 0 SMLWGMA + 0 1 110 0 SMLWHMA + 0 1 116 0 SMLWSMA + 2 3 7 0 SMREF + 2 3 195 1 SMREF + 0 19 18 0 SNFALB + 0 19 193 1 SNFALB + 0 1 25 0 SNMR + 0 1 17 0 SNOAG + 0 1 14 0 SNOC + 0 1 11 0 SNOD + 0 0 16 0 SNOHF + 0 0 192 1 SNOHF + 0 1 15 0 SNOL + 0 1 16 0 SNOM + 0 0 18 0 SNOT + 0 1 208 1 SNOT + 0 1 42 0 SNOWC + 0 1 201 1 SNOWC + 0 1 233 1 SNOWLR + 0 19 236 1 SNOWLVL + 0 1 222 1 SNOWT + 2 3 25 0 SNWDEB + 2 3 27 0 SOILDEP + 2 3 21 0 SOILICE + 2 3 5 0 SOILL + 2 3 192 1 SOILL + 2 3 19 0 SOILMOI + 2 0 22 0 SOILM + 2 3 15 0 SOILP + 2 0 239 1 SOILSE + 2 3 18 0 SOILTMP + 2 0 38 0 SOILVIC + 2 0 192 1 SOILW + 4 6 6 0 SOLRF + 3 1 7 0 SOLZA + 2 3 0 0 SOTYP + 3 1 28 0 SPBRT + 10 1 1 0 SPC + 4 6 4 0 SPECIRR + 4 1 0 0 SPEED + 0 1 0 0 SPFH + 10 0 45 0 SPFTR + 0 1 102 0 SPNCG + 0 1 103 0 SPNCH + 0 1 100 0 SPNCR + 0 1 101 0 SPNCS + 0 1 66 0 SPRATE + 4 2 7 0 SPRDF + 3 0 3 0 SPWAT + 3 0 0 0 SRAD + 0 1 85 0 SRAINC + 0 19 194 1 SRCONO + 3 192 46 0 SRFAGR1 + 3 192 47 0 SRFAGR2 + 3 192 48 0 SRFAGR3 + 3 192 49 0 SRFAGR4 + 3 192 50 0 SRFAGR5 + 3 192 51 0 SRFAGR6 + 0 1 12 0 SRWEQ + 0 20 103 0 SSALBK + 0 3 22 0 SSGSO + 10 3 195 1 SSHG + 3 5 2 0 SSKSSTMP + 3 192 62 0 SSMS1715 + 3 192 63 0 SSMS1716 + 3 192 64 0 SSMS1717 + 3 192 65 0 SSMS1718 + 0 1 86 0 SSNOWW + 1 0 6 0 SSRUN + 1 0 193 1 SSRUN + 10 3 200 1 SSST + 3 0 6 0 SSTMP + 2 0 211 1 SSTOR + 10 3 199 1 SSTT + 0 6 35 0 SSWTC + 0 19 200 1 STORPROB + 0 7 208 1 STPC + 0 2 4 0 STRM + 0 1 87 0 STRPRATE + 0 6 33 0 SUNSD + 0 6 201 1 SUNSD + 0 6 24 0 SUNS + 10 3 192 1 SURGE + 0 19 220 1 SVRTS + 10 3 208 1 SWASH + 0 4 2 0 SWAVR + 10 0 7 0 SWDIR + 0 20 7 0 SWDMFLX + 0 7 5 0 SWEATX + 10 0 8 0 SWELL + 1 0 4 0 SWEPON + 10 0 47 0 SWHFSWEL + 0 4 197 1 SWHR + 10 0 48 0 SWHSSWEL + 10 0 49 0 SWHTSWEL + 0 19 202 1 SWINDPRO + 10 0 9 0 SWPER + 3 1 194 1 SWQI + 0 4 6 0 SWRAD + 0 19 212 1 SWSALB + 0 6 1 0 TCDC + 0 0 204 1 TCHP + 0 1 81 0 TCICON + 0 14 2 0 TCIOZ + 0 1 64 0 TCIWV + 2 0 35 0 TCLASS + 0 1 209 1 TCLSW + 0 6 20 0 TCOLC + 0 6 198 1 TCOLC + 0 1 74 0 TCOLG + 0 1 72 0 TCOLH + 0 6 19 0 TCOLIO + 0 1 70 0 TCOLI + 0 6 197 1 TCOLI + 0 1 210 1 TCOLM + 0 1 45 0 TCOLR + 0 1 204 1 TCOLR + 0 1 46 0 TCOLS + 0 1 205 1 TCOLS + 0 1 78 0 TCOLWA + 0 6 18 0 TCOLWO + 0 1 69 0 TCOLW + 0 6 196 1 TCOLW + 0 6 17 0 TCONDO + 0 1 21 0 TCOND + 0 6 195 1 TCOND + 10 3 242 1 TCSRG20 + 10 3 243 1 TCSRG30 + 10 3 244 1 TCSRG40 + 10 3 245 1 TCSRG50 + 10 3 246 1 TCSRG60 + 10 3 247 1 TCSRG70 + 10 3 248 1 TCSRG80 + 10 3 249 1 TCSRG90 + 0 1 51 0 TCWAT + 0 0 20 0 TDCHT + 0 2 31 0 TDCMOM + 2 0 36 0 TFRCT + 0 0 197 1 THFLX + 0 3 12 0 THICK + 0 6 10 0 THUNC + 0 0 203 1 THZ0 + 0 18 6 0 TIACCP + 0 18 7 0 TIACIP + 0 18 8 0 TIACRP + 10 3 251 1 TIDE + 0 1 206 1 TIPD + 0 19 11 0 TKE + 0 1 90 0 TKMFLX + 0 17 4 0 TLGTFD + 0 6 9 0 TMAXT + 0 0 4 0 TMAX + 0 0 5 0 TMIN + 0 0 29 0 TMPADV + 0 0 9 0 TMPA + 4 0 0 0 TMPSWP + 0 0 0 0 TMP + 0 2 227 1 TOA10 + 0 2 228 1 TOA50 + 0 2 229 1 TOD50 + 0 2 230 1 TOD90 + 0 19 197 1 TORPROB + 0 7 4 0 TOTALX + 0 1 80 0 TOTCON + 0 18 13 0 TOTLWD + 0 14 0 0 TOZNE + 0 14 197 1 TOZ + 2 0 37 0 TPERCT + 0 19 219 1 TPFI + 0 1 52 0 TPRATE + 0 20 13 0 TRANHH + 2 3 12 0 TRANSO + 2 0 230 1 TRANS + 0 20 14 0 TRSDS + 0 2 226 1 TRWDIR + 0 2 225 1 TRWSPD + 0 0 200 1 TSD1D + 0 191 0 0 TSEC + 4 6 0 0 TSI + 0 3 199 1 TSLSA + 0 1 50 0 TSNOWP + 0 1 241 1 TSNOW + 2 0 2 0 TSOIL + 0 1 57 0 TSRATE + 0 1 53 0 TSRWE + 0 19 203 1 TSTMC + 0 19 2 0 TSTM + 0 0 19 0 TTCHT + 0 0 198 1 TTDIA + 10 4 2 0 TTHDP + 0 0 25 0 TTLWRCS + 0 0 23 0 TTLWR + 0 0 26 0 TTPARM + 0 0 199 1 TTPHY + 0 0 193 1 TTRAD + 0 0 24 0 TTSWRCS + 0 0 22 0 TTSWR + 0 19 9 0 TURBB + 0 19 8 0 TURBT + 0 19 10 0 TURB + 0 1 49 0 TWATP + 0 2 35 0 TWIND + 10 3 210 1 TWLDC + 10 3 209 1 TWLDT + 10 3 205 1 TWLWAV + 0 20 58 0 TYAAL + 0 20 57 0 TYABA + 0 3 16 0 U-GWD + 0 3 194 1 U-GWD + 10 1 194 1 UBARO + 0 3 31 0 UCLSPRS + 0 1 120 0 UCSCIW + 0 1 119 0 UCSCLW + 0 0 28 0 UCTMP + 0 3 29 0 UDRATE + 0 2 236 1 UEID + 0 2 234 1 UESH + 0 2 17 0 UFLX + 0 2 2 0 UGRD + 0 2 23 0 UGUST + 0 2 41 0 UGWIND + 10 2 4 0 UICE + 0 1 91 0 UKMFLX + 0 5 4 0 ULWRF + 0 5 193 1 ULWRF + 0 3 27 0 UMFLX + 0 1 118 0 UNCSH + 0 2 45 0 UNDIV + 10 1 2 0 UOGRD + 1 0 14 0 UPAPCP + 1 0 15 0 UPASM + 0 7 15 0 UPHL + 0 7 197 1 UPHL + 2 3 2 0 UPLSM + 2 3 1 0 UPLST + 3 1 192 1 USCT + 10 0 21 0 USSD + 0 2 27 0 USTM + 0 2 194 1 USTM + 0 4 53 0 USWRFCS + 0 4 8 0 USWRF + 0 4 193 1 USWRF + 0 4 205 1 UTRF + 0 4 50 0 UVIUCS + 0 4 51 0 UVI + 0 7 196 1 UVI + 0 3 17 0 V-GWD + 0 3 195 1 V-GWD + 0 19 232 1 VAFTD + 0 1 4 0 VAPP + 10 1 195 1 VBARO + 0 4 200 1 VBDSF + 0 4 201 1 VDDSF + 0 0 202 1 VDFHR + 0 1 215 1 VDFMR + 0 14 195 1 VDFOZ + 0 2 208 1 VDFUA + 0 2 209 1 VDFVA + 0 2 204 1 VEDH + 2 0 232 1 VEGMAX + 2 0 231 1 VEGMIN + 2 0 210 1 VEGT + 2 0 4 0 VEG + 0 2 237 1 VEID + 4 1 1 0 VEL1 + 4 1 2 0 VEL2 + 4 1 3 0 VEL3 + 0 2 235 1 VESH + 0 2 18 0 VFLX + 0 6 48 0 VFRCICE + 0 6 49 0 VFRCIW + 0 6 47 0 VFRCWD + 0 2 3 0 VGRD + 2 0 198 1 VGTYP + 0 2 24 0 VGUST + 0 2 42 0 VGWIND + 10 2 5 0 VICE + 0 15 3 0 VIL + 0 19 35 0 VISBSN + 0 19 34 0 VISIFOG + 0 19 33 0 VISLFOG + 0 19 0 0 VIS + 0 1 92 0 VKMFLX + 0 20 52 0 VMXR + 10 1 3 0 VOGRD + 3 4 4 0 VOLACDEM + 3 4 7 0 VOLACDEN + 3 4 6 0 VOLACDOD + 3 4 3 0 VOLACDTH + 3 4 2 0 VOLACDTP + 3 4 1 0 VOLACDTT + 3 4 5 0 VOLAEADR + 3 4 8 0 VOLAPER + 3 4 0 0 VOLAPROB + 0 19 4 0 VOLASH + 2 3 13 0 VOLDEC + 2 3 11 0 VOLTSO + 0 2 46 0 VORTADV + 0 2 5 0 VPOT + 0 0 15 0 VPTMP + 0 2 224 1 VRATE + 3 1 193 1 VSCT + 2 0 25 0 VSOILM + 2 3 16 0 VSOSM + 10 0 22 0 VSSD + 0 2 28 0 VSTM + 0 2 195 1 VSTM + 4 2 4 0 VTEC + 0 0 1 0 VTMP + 0 2 15 0 VUCSH + 0 2 16 0 VVCSH + 0 2 8 0 VVEL + 2 0 27 0 VWILTM + 0 2 25 0 VWSH + 0 2 192 1 VWSH + 10 4 17 0 WATDENA + 10 4 16 0 WATERDEN + 2 0 236 1 WATERSA + 10 4 20 0 WATPDENA + 10 4 19 0 WATPDEN + 10 4 18 0 WATPTEMP + 2 0 5 0 WATR + 10 0 62 0 WAVEFREW + 2 0 223 1 WCCONV + 0 0 13 0 WCF + 2 0 221 1 WCINC + 2 0 226 1 WCUFLX + 2 0 227 1 WCVFLX + 0 20 10 0 WDCPMFLX + 10 4 14 0 WDEPTH + 10 0 31 0 WDIRW + 0 2 0 0 WDIR + 1 2 0 0 WDPTHIL + 10 0 56 0 WDWFSWEL + 10 0 57 0 WDWSSWEL + 10 0 58 0 WDWTSWEL + 0 1 13 0 WEASD + 10 0 42 0 WESP + 0 0 27 0 WETBT + 0 18 11 0 WETDEP + 0 20 75 0 WFIREFLX + 1 2 2 0 WFRACT + 10 0 59 0 WFWFSWEL + 10 0 60 0 WFWSSWEL + 10 0 61 0 WFWTSWEL + 4 8 5 0 WHTCOR + 4 8 3 0 WHTRAD + 2 0 26 0 WILT + 2 0 201 1 WILT + 0 2 33 0 WINDF + 0 19 199 1 WINDPROB + 3 1 19 0 WINDS + 0 2 1 0 WIND + 0 19 25 0 WIWW + 10 0 193 1 WLENG + 0 20 9 0 WLSMFLX + 0 2 19 0 WMIXE + 2 0 33 0 WROD + 10 0 192 1 WSTP + 10 0 18 0 WSTR + 0 2 214 1 WTEND + 10 4 192 1 WTMPC + 1 2 1 0 WTMPIL + 10 4 15 0 WTMPSS + 10 3 0 0 WTMP + 2 0 222 1 WVCONV + 10 0 4 0 WVDIR + 10 0 5 0 WVHGT + 2 0 220 1 WVINC + 10 0 6 0 WVPER + 10 0 0 0 WVSP1 + 10 0 1 0 WVSP2 + 10 0 2 0 WVSP3 + 2 0 224 1 WVUFLX + 2 0 225 1 WVVFLX + 10 0 14 0 WWSDIR + 4 6 1 0 XLONG + 0 3 26 0 XPRES + 4 8 0 0 XRAYRAD + 4 6 2 0 XSHRT + 10 2 10 0 ZVCICEP diff --git a/fix/upp/params_grib2_tbl_new_rtma b/fix/upp/params_grib2_tbl_new_rtma new file mode 100755 index 000000000..af3b34150 --- /dev/null +++ b/fix/upp/params_grib2_tbl_new_rtma @@ -0,0 +1,1262 @@ + 0 7 11 0 4LFTX + 0 7 193 1 4LFTX + 0 3 19 0 5WAVA + 0 3 197 1 5WAVA + 0 3 15 0 5WAVH + 0 3 193 1 5WAVH + 0 20 106 0 AACOEF + 0 2 11 0 ABSD + 4 2 5 0 ABSFRQ + 0 1 18 0 ABSH + 4 2 6 0 ABSRB + 0 2 10 0 ABSV + 0 18 0 0 ACCES + 0 18 1 0 ACIOD + 2 0 228 1 ACOND + 0 1 224 1 ACPCPN + 0 1 10 0 ACPCP + 0 18 2 0 ACRADP + 10 4 13 0 ACWSRD + 1 2 11 0 ACWSR + 0 20 105 0 AECOEF + 0 20 3 0 AEMFLX + 0 13 0 0 AEROT + 0 2 36 0 AFRWE + 0 20 50 0 AIA + 0 18 10 0 AIRCON + 2 0 208 1 AKHS + 2 0 209 1 AKMS + 0 19 1 0 ALBDO + 0 20 108 0 ALBGRD + 0 20 107 0 ALBSAT + 10 0 38 0 ALCWH + 0 20 110 0 ALEGRD + 0 20 109 0 ALESAT + 10 0 39 0 ALRRC + 0 3 11 0 ALTS + 10 0 37 0 ALTWH + 2 0 219 1 AMIXL + 3 192 11 0 AMSRE10 + 3 192 12 0 AMSRE11 + 3 192 13 0 AMSRE12 + 3 192 10 0 AMSRE9 + 0 20 59 0 ANCON + 3 1 23 0 ANGCOE + 0 20 111 0 ANGSTEXP + 0 20 5 0 ANPEMFLX + 0 20 4 0 ANPMFLX + 10 3 197 1 AOHFLX + 3 1 20 0 AOT06 + 3 1 21 0 AOT08 + 3 1 22 0 AOT16 + 0 20 102 0 AOTK + 0 1 223 1 APCPN + 0 1 8 0 APCP + 0 0 21 0 APTMP + 0 1 221 1 ARAIN + 0 20 8 0 AREMFLX + 0 3 21 0 ASGSO + 0 3 24 0 ASGSO + 10 3 198 1 ASHFL + 0 20 60 0 ASNCON + 0 1 29 0 ASNOW + 0 20 104 0 ASYSFK + 0 190 0 0 ATEXT + 3 1 13 0 ATMDIV + 0 20 101 0 ATMTK + 2 3 201 1 AVSFT + 2 3 200 1 BARET + 10 4 7 0 BATHY + 10 0 44 0 BENINX + 1 0 5 0 BGRUN + 1 0 192 1 BGRUN + 10 4 194 1 BKENG + 0 7 1 0 BLI + 0 7 16 0 BLKRN + 0 2 20 0 BLYDP + 2 0 14 0 BMIXL + 2 0 197 1 BMIXL + 0 7 201 1 BNEGELAY + 2 3 4 0 BOTLST + 0 7 202 1 BPOSELAY + 0 15 1 0 BREF + 3 1 27 0 BRFLF + 0 5 7 0 BRTEMP + 0 4 4 0 BRTMP + 0 15 2 0 BRVEL + 0 15 0 0 BSWID + 4 3 0 0 BTOT + 4 3 1 0 BVEC1 + 4 3 2 0 BVEC2 + 4 3 3 0 BVEC3 + 0 18 18 0 CAACL + 4 8 4 0 CAIIRAD + 0 7 206 1 CANGLE + 2 1 192 1 CANL + 0 7 6 0 CAPE + 0 1 88 0 CATCP + 0 19 29 0 CATEDR + 0 19 22 0 CAT + 0 20 63 0 CAVEMDL + 0 20 70 0 CBECSLSP + 0 6 25 0 CBHE + 0 20 67 0 CBLCLDSP + 0 20 73 0 CBLCSRCP + 3 1 14 0 CBTMP + 3 1 98 0 CCMPEMRR + 2 0 15 0 CCOND + 2 0 199 1 CCOND + 0 6 7 0 CDCA + 0 6 11 0 CDCB + 0 6 22 0 CDCC + 0 17 3 0 CDCDLTFD + 0 6 23 0 CDCIMR + 0 6 2 0 CDCON + 0 6 12 0 CDCTOP + 0 6 8 0 CDCT + 0 17 2 0 CDGDLTFD + 0 6 14 0 CDLYR + 0 6 192 1 CDLYR + 0 4 195 1 CDUVB + 10 0 16 0 CDWW + 0 2 29 0 CD + 0 2 196 1 CD + 0 6 13 0 CEIL + 0 5 197 1 CFNLF + 0 4 199 1 CFNSF + 0 1 34 0 CFRZR + 0 1 193 1 CFRZR + 0 20 54 0 CGDRC + 0 20 53 0 CGPRC + 10 3 2 0 CH + 0 18 17 0 CIAIRC + 0 19 206 1 CICEL + 0 1 35 0 CICEP + 0 1 194 1 CICEP + 10 2 12 0 CICES + 0 6 0 0 CICE + 0 19 208 1 CIFLT + 0 1 82 0 CIMIXR + 0 20 66 0 CINCLDSP + 0 20 69 0 CINCSLSP + 0 20 72 0 CINCSRCP + 0 7 7 0 CIN + 0 20 68 0 CIRELREP + 0 20 74 0 CIRERECP + 2 3 22 0 CISICE + 2 3 20 0 CISOILM + 2 0 23 0 CISOILW + 0 19 207 1 CIVIS + 3 2 9 0 CLDALB + 3 2 10 0 CLDEMISS + 3 2 8 0 CLDIWP + 3 2 7 0 CLDLWP + 3 2 5 0 CLDODEP + 3 2 6 0 CLDPER + 3 2 4 0 CLDPHAS + 3 1 16 0 CLDRAD + 3 2 3 0 CLDTYPE + 0 1 235 1 CLLMR + 3 0 7 0 CLOUDM + 0 1 22 0 CLWMR + 0 2 216 1 CNGWDU + 0 2 217 1 CNGWDV + 0 3 209 1 CNVDEMF + 0 3 208 1 CNVDMF + 0 0 196 1 CNVHR + 0 1 213 1 CNVMR + 0 3 207 1 CNVUMF + 0 2 212 1 CNVU + 0 2 213 1 CNVV + 2 0 13 0 CNWAT + 2 0 196 1 CNWAT + 0 20 56 0 COAIA + 0 20 1 0 COLMD + 0 20 51 0 CONAIR + 0 7 19 0 CONAPES + 0 1 216 1 CONDP + 0 19 16 0 CONTB + 0 19 14 0 CONTET + 0 19 13 0 CONTI + 0 19 24 0 CONTKE + 0 19 15 0 CONTT + 0 19 26 0 CONVO + 0 19 222 1 CONVP + 0 192 6 0 COVMM + 0 192 1 0 COVMZ + 0 2 205 1 COVMZ + 0 192 11 0 COVPSPS + 0 192 8 0 COVQM + 0 192 12 0 COVQQ + 0 192 10 0 COVQVV + 0 192 7 0 COVQZ + 0 192 3 0 COVTM + 0 2 207 1 COVTM + 0 192 14 0 COVTT + 0 192 9 0 COVTVV + 0 192 4 0 COVTW + 0 192 2 0 COVTZ + 0 2 206 1 COVTZ + 0 192 13 0 COVVVVV + 0 192 5 0 COVZZ + 0 1 39 0 CPOFP + 1 1 193 1 CPOFP + 1 1 192 1 CPOZP + 1 1 0 0 CPPOP + 0 1 37 0 CPRAT + 0 1 196 1 CPRAT + 0 1 33 0 CRAIN + 0 1 192 1 CRAIN + 0 20 71 0 CRERELSP + 0 1 76 0 CRRATE + 4 2 9 0 CRTFRQ + 1 2 13 0 CSAFC + 3 1 15 0 CSBTMP + 0 5 196 1 CSDLF + 0 4 196 1 CSDSF + 3 2 0 0 CSKPROB + 3 1 17 0 CSKYRAD + 0 1 36 0 CSNOW + 0 1 195 1 CSNOW + 0 1 58 0 CSRATE + 0 1 55 0 CSRWE + 0 5 195 1 CSULF + 0 4 198 1 CSUSF + 3 1 3 0 CTOPHQI + 3 1 2 0 CTOPH + 3 2 2 0 CTOPRES + 3 2 1 0 CTOPTMP + 0 19 21 0 CTP + 0 6 16 0 CUEFI + 0 6 194 1 CUEFI + 0 6 6 0 CWAT + 0 7 195 1 CWDI + 0 6 15 0 CWORK + 0 6 193 1 CWORK + 0 1 48 0 CWP + 1 1 195 1 CWR + 10 4 195 1 DBSS + 0 7 203 1 DCAPE + 0 20 12 0 DDMFLX + 0 3 30 0 DDRATE + 0 20 15 0 DDVEL + 2 0 30 0 DECF + 0 3 14 0 DENALT + 0 3 10 0 DEN + 0 0 7 0 DEPR + 1 0 13 0 DEPWSS + 10 2 2 0 DICED + 4 4 2 0 DIFEFLUX + 4 4 4 0 DIFIFLUX + 4 4 0 0 DIFPFLUX + 3 6 5 0 DIFSOLEX + 3 6 4 0 DIFSOLIR + 0 4 14 0 DIFSWRF + 10 1 0 0 DIRC + 2 3 14 0 DIREC + 10 0 10 0 DIRPW + 3 6 3 0 DIRSOLEX + 3 6 2 0 DIRSOLIR + 10 0 12 0 DIRSW + 10 0 33 0 DIRWTS + 10 0 32 0 DIRWWW + 1 0 7 0 DISRS + 0 3 6 0 DIST + 0 5 8 0 DLWRFCS + 0 5 3 0 DLWRF + 0 5 192 1 DLWRF + 0 3 28 0 DMFLX + 0 0 6 0 DPT + 2 4 8 0 DRTCODE + 0 18 12 0 DRYDEP + 0 19 237 1 DRYTPROB + 4 7 2 0 DSKDAY + 4 7 1 0 DSKINT + 4 7 3 0 DSKNGT + 10 3 1 0 DSLM + 10 191 3 0 DSLOBSO + 0 191 3 0 DSLOBS + 0 4 52 0 DSWRFCS + 0 4 13 0 DSWRFLX + 0 4 7 0 DSWRF + 0 4 192 1 DSWRF + 0 4 204 1 DTRF + 2 4 7 0 DUFMCODE + 0 4 194 1 DUVB + 0 4 12 0 DWUVR + 0 2 9 0 DZDT + 0 7 207 1 E3KH + 3 2 11 0 EAODR + 3 5 5 0 EBSDSSTS + 3 5 4 0 EBSSTSTD + 0 19 30 0 EDPARM + 0 7 204 1 EFHL + 0 3 222 1 EFSH + 0 7 9 0 EHLX + 4 2 1 0 ELCDEN + 4 0 1 0 ELECTMP + 10 3 194 1 ELEV + 0 19 238 1 ELLINX + 0 0 205 1 ELMELT + 0 191 197 1 ELONN + 0 191 193 1 ELON + 0 1 211 1 EMNP + 0 0 3 0 EPOT + 0 19 218 1 EPSR + 10 3 252 1 EROSNP + 1 0 3 0 ESCT + 0 2 233 1 ESHR + 0 7 205 1 ESP + 3 1 0 0 ESTP + 3 1 4 0 ESTUGRD + 3 1 5 0 ESTVGRD + 0 2 32 0 ETACVV + 10 3 250 1 ETCWL + 4 3 4 0 ETOT + 10 3 193 1 ETSRG + 0 2 38 0 ETSS + 4 6 3 0 EUVIRR + 4 8 1 0 EUVRAD + 2 0 6 0 EVAPT + 0 1 79 0 EVARATE + 2 3 198 1 EVBS + 2 0 229 1 EVCW + 4 3 5 0 EVEC1 + 4 3 6 0 EVEC2 + 4 3 7 0 EVEC3 + 2 0 29 0 EVERF + 0 1 6 0 EVP + 2 0 213 1 EWATR + 0 2 39 0 EWTPARM + 4 6 5 0 F107 + 2 4 3 0 FBAREA + 2 4 10 0 FBUPINX + 0 6 37 0 FCONPC + 3 5 3 0 FDNSSTMP + 2 4 11 0 FDSRTE + 1 0 0 0 FFLDG + 1 0 1 0 FFLDRO + 2 4 6 0 FFMCODE + 0 1 228 1 FICEAC + 0 6 21 0 FICE + 0 6 199 1 FICE + 3 0 9 0 FIREDI + 2 4 1 0 FIREODT + 2 4 0 0 FIREOLK + 2 3 203 1 FLDCP + 1 0 12 0 FLDPSW + 0 19 205 1 FLGHT + 0 7 18 0 FLXRN + 2 4 4 0 FOSINDX + 0 1 67 0 FPRATE + 0 6 32 0 FRACCC + 0 1 43 0 FRAIN + 0 1 202 1 FRAIN + 10 0 63 0 FREWWW + 0 2 30 0 FRICV + 10 0 17 0 FRICV + 0 2 197 1 FRICV + 0 1 227 1 FROZR + 2 3 24 0 FRSTINX + 10 0 64 0 FRWWTSW + 0 1 225 1 FRZR + 10 3 204 1 FRZSPR + 0 1 121 0 FSNOWC + 0 6 36 0 FSTRPC + 2 4 5 0 FWINX + 0 1 95 0 FZPRATE + 0 18 3 0 GDCES + 0 18 4 0 GDIOD + 0 18 5 0 GDRADP + 0 191 1 0 GEOLAT + 0 191 2 0 GEOLON + 0 2 43 0 GEOWD + 0 2 44 0 GEOWS + 2 0 10 0 GFLUX + 2 0 193 1 GFLUX + 2 5 1 0 GLACTMP + 0 3 9 0 GPA + 0 1 75 0 GPRATE + 0 3 4 0 GP + 0 4 3 0 GRAD + 0 7 17 0 GRDRN + 0 1 32 0 GRLE + 3 6 1 0 GSOLEXP + 3 6 0 0 GSOLIRR + 0 2 22 0 GUST + 0 2 210 1 GWDU + 0 2 211 1 GWDV + 0 3 23 0 GWD + 1 0 9 0 GWLOWS + 2 0 214 1 GWREC + 1 0 8 0 GWUPS + 0 1 71 0 HAILMXR + 0 19 198 1 HAILPROB + 0 1 73 0 HAILPR + 0 1 31 0 HAIL + 4 8 2 0 HARAD + 0 19 210 1 HAVNI + 0 6 5 0 HCDC + 0 6 26 0 HCONCB + 0 6 27 0 HCONCT + 0 0 12 0 HEATX + 4 8 6 0 HELCOR + 2 0 24 0 HFLUX + 0 20 62 0 HGTMD + 0 3 211 1 HGTN + 0 3 203 1 HGTX + 0 3 204 1 HGTY + 0 3 5 0 HGT + 0 19 32 0 HIFREL + 2 4 2 0 HINDEX + 0 7 8 0 HLCY + 0 18 16 0 HMXACON + 0 3 18 0 HPBL + 0 3 196 1 HPBL + 4 2 8 0 HPRIMF + 0 19 196 1 HRCONO + 0 15 16 0 HSRHT + 0 15 15 0 HSR + 0 3 7 0 HSTDV + 10 0 3 0 HTSGW + 0 3 3 0 ICAHT + 1 2 7 0 ICECIL + 10 2 0 0 ICEC + 10 2 7 0 ICED + 10 2 6 0 ICEG + 10 2 9 0 ICEPRS + 0 19 27 0 ICESC + 0 19 37 0 ICESEV + 1 2 6 0 ICETIL + 10 2 1 0 ICETK + 10 2 8 0 ICETMP + 0 19 6 0 ICIB + 0 19 20 0 ICIP + 0 19 5 0 ICIT + 0 19 7 0 ICI + 0 1 23 0 ICMR + 0 19 233 1 ICPRB + 0 19 234 1 ICSEV + 1 2 5 0 ICTKIL + 2 0 207 1 ICWAT + 0 1 20 0 ILIQW + 10 0 27 0 IMFTSW + 10 0 26 0 IMFWW + 10 0 25 0 IMWF + 2 4 9 0 INFSINX + 4 4 3 0 INTEFLUX + 10 4 196 1 INTFD + 4 4 5 0 INTIFLUX + 4 4 1 0 INTPFLUX + 4 2 3 0 IONDEN + 4 0 3 0 IONTMP + 0 1 68 0 IPRATE + 3 1 1 0 IRRATE + 10 191 0 0 IRTSEC + 3 5 0 0 ISSTMP + 0 19 235 1 JFWPRB + 10 3 201 1 KENG + 0 7 3 0 KOX + 10 0 43 0 KSSEDW + 0 7 2 0 KX + 0 7 198 1 LAI + 1 2 8 0 LANDIL + 2 0 218 1 LANDN + 2 0 8 0 LANDU + 2 0 0 0 LAND + 0 2 202 1 LAPP + 0 0 8 0 LAPR + 0 2 198 1 LAUV + 0 19 209 1 LAVNI + 0 2 200 1 LAVV + 0 3 205 1 LAYTH + 0 6 3 0 LCDC + 10 3 203 1 LCH + 2 0 28 0 LEAINX + 0 7 10 0 LFTX + 0 7 192 1 LFTX + 0 0 10 0 LHTFL + 0 1 229 1 LICEAC + 0 13 195 1 LIPMF + 2 3 10 0 LIQVSM + 0 15 4 0 LMAXBR + 4 7 0 0 LMBINT + 0 3 210 1 LMH + 0 2 218 1 LMV + 0 2 203 1 LOPP + 0 2 199 1 LOUV + 0 2 201 1 LOVV + 2 3 3 0 LOWLSM + 0 13 194 1 LPMTF + 0 3 201 1 LPSX + 0 3 202 1 LPSY + 0 0 195 1 LRGHR + 0 1 217 1 LRGMR + 2 0 212 1 LSOIL + 2 3 199 1 LSPA + 0 1 54 0 LSPRATE + 0 1 77 0 LSRRATE + 0 1 59 0 LSSRATE + 0 1 56 0 LSSRWE + 0 1 47 0 LSWP + 0 17 0 0 LTNGSD + 0 17 192 1 LTNG + 0 17 1 0 LTPINX + 0 5 2 0 LWAVR + 0 5 194 1 LWHR + 0 4 5 0 LWRAD + 2 3 23 0 LWSNWP + 4 8 7 0 MASK + 0 6 38 0 MASSDCD + 0 6 39 0 MASSDCI + 0 20 0 0 MASSDEN + 0 1 98 0 MASSDG + 0 1 99 0 MASSDH + 0 1 96 0 MASSDR + 0 1 97 0 MASSDS + 0 20 2 0 MASSMR + 0 18 15 0 MAXACON + 0 1 28 0 MAXAH + 0 2 221 1 MAXDVV + 0 2 21 0 MAXGUST + 0 16 198 1 MAXREF + 0 1 27 0 MAXRH + 0 2 220 1 MAXUVV + 0 2 222 1 MAXUW + 0 1 245 1 MAXVIG + 0 2 223 1 MAXVW + 10 0 24 0 MAXWH + 0 6 4 0 MCDC + 0 1 26 0 MCONV + 0 1 197 1 MCONV + 0 6 40 0 MDCCWD + 0 1 38 0 MDIVER + 0 1 112 0 MDLWGVA + 0 1 109 0 MDLWHVA + 0 1 115 0 MDLWSVA + 3 2 30 0 MEACST + 0 6 200 1 MFLUX + 0 2 26 0 MFLX + 0 2 193 1 MFLX + 0 0 14 0 MINDPD + 0 1 198 1 MINRH + 0 19 3 0 MIXHT + 0 19 204 1 MIXLY + 0 1 2 0 MIXR + 0 7 212 1 MLFC + 0 191 195 1 MLYNO + 0 1 114 0 MMLWGDA + 0 1 111 0 MMLWHDA + 0 1 117 0 MMLWSDA + 0 2 6 0 MNTSF + 0 7 200 1 MNUPHL + 10 0 40 0 MNWSOW + 0 20 64 0 MOLRDRYA + 0 20 65 0 MOLRWETA + 10 191 1 0 MOSF + 0 19 195 1 MRCONO + 0 3 192 1 MSLET + 0 3 198 1 MSLMA + 0 20 16 0 MSSRDRYA + 0 20 17 0 MSSRWETA + 10 0 20 0 MSSW + 0 11 1 0 MSTAV + 2 0 11 0 MSTAV + 2 0 194 1 MSTAV + 2 0 7 0 MTERH + 10 4 1 0 MTHA + 10 4 0 0 MTHD + 10 2 11 0 MVCICEP + 10 0 53 0 MWDFSWEL + 10 0 41 0 MWDIRW + 10 0 54 0 MWDSSWEL + 10 0 55 0 MWDTSWEL + 10 0 50 0 MWPFSWEL + 10 0 51 0 MWPSSWEL + 10 0 52 0 MWPTSWEL + 10 0 15 0 MWSPER + 0 19 28 0 MWTURB + 0 19 31 0 MXEDPRM + 0 20 61 0 MXMASSD + 0 19 17 0 MXSALB + 0 19 192 1 MXSALB + 0 7 199 1 MXUPHL + 10 0 30 0 MZPTSW + 10 0 29 0 MZPWW + 10 0 28 0 MZWPER + 0 4 202 1 NBDSF + 0 19 213 1 NBSALB + 0 6 29 0 NCCICE + 0 1 207 1 NCIP + 0 6 28 0 NCONCD + 0 1 9 0 NCPCP + 0 6 31 0 NDCICE + 0 4 203 1 NDDSF + 0 6 30 0 NDENCD + 2 0 31 0 NDVINX + 2 0 217 1 NDVI + 0 191 196 1 NLATN + 0 191 192 1 NLAT + 0 3 206 1 NLGSP + 0 3 25 0 NLPRES + 0 5 6 0 NLWRCS + 0 5 5 0 NLWRF + 0 5 0 0 NLWRS + 0 5 1 0 NLWRT + 3 1 6 0 NPIXU + 0 4 11 0 NSWRFCS + 0 4 9 0 NSWRF + 0 4 0 0 NSWRS + 0 4 1 0 NSWRT + 4 4 6 0 NTRNFLUX + 0 2 37 0 NTSS + 0 1 106 0 NUMDG + 0 1 107 0 NUMDH + 0 1 104 0 NUMDR + 0 1 105 0 NUMDS + 0 2 34 0 NWIND + 0 19 214 1 NWSALB + 10 0 19 0 NWSTR + 0 2 40 0 NWTPARM + 0 14 1 0 O3MR + 0 14 192 1 O3MR + 10 4 197 1 OHC + 0 2 215 1 OMGALF + 10 1 192 1 OMLU + 10 1 193 1 OMLV + 0 3 217 1 ORASNW + 0 3 216 1 ORASSW + 0 3 215 1 ORASS + 0 3 214 1 ORASW + 0 3 213 1 ORCONV + 0 3 221 1 ORLSNW + 0 3 220 1 ORLSSW + 0 3 219 1 ORLSS + 0 3 218 1 ORLSW + 10 4 4 0 OVHD + 10 4 6 0 OVMD + 10 4 5 0 OVSD + 10 3 253 1 OWASHP + 0 14 194 1 OZCAT + 0 14 193 1 OZCON + 0 14 200 1 OZMAX1 + 0 14 201 1 OZMAX8 + 10 3 196 1 P2OMLT + 3 3 2 0 PBINFRC + 3 3 1 0 PBLIFRC + 0 19 12 0 PBLREG + 3 3 0 0 PBMVFRC + 0 1 234 1 PCPDUR + 0 14 202 1 PDMAX1 + 0 14 203 1 PDMAX24 + 10 0 11 0 PERPW + 1 0 16 0 PERRATE + 10 0 13 0 PERSW + 0 1 40 0 PEVAP + 0 1 199 1 PEVAP + 0 1 41 0 PEVPR + 0 1 200 1 PEVPR + 0 4 10 0 PHOTAR + 3 0 8 0 PIXST + 0 7 0 0 PLI + 0 3 200 1 PLPL + 4 2 0 0 PLSMDEN + 10 0 23 0 PMAXWH + 0 13 192 1 PMTC + 0 13 193 1 PMTF + 1 1 2 0 POP + 2 3 9 0 POROS + 2 3 197 1 POROS + 0 0 2 0 POT + 0 14 199 1 POZO + 0 14 198 1 POZT + 0 14 196 1 POZ + 10 0 36 0 PPERTS + 10 0 35 0 PPERWW + 1 1 194 1 PPFFG + 0 1 231 1 PPINDX + 1 1 1 0 PPOSP + 0 1 7 0 PRATE + 4 0 4 0 PRATMP + 0 15 5 0 PREC + 0 3 13 0 PRESALT + 0 3 8 0 PRESA + 0 3 212 1 PRESN + 0 3 0 0 PRES + 0 3 1 0 PRMSL + 0 1 232 1 PROBCIP + 0 19 221 1 PROCON + 4 2 2 0 PROTDEN + 4 0 2 0 PROTTMP + 4 0 5 0 PRPTMP + 0 19 216 1 PRSIGSVR + 0 19 215 1 PRSVR + 10 4 21 0 PRTSAL + 0 19 36 0 PSNOWS + 0 3 2 0 PTEND + 0 1 19 0 PTYPE + 0 2 219 1 PVMWW + 0 2 14 0 PVORT + 0 1 3 0 PWAT + 10 0 46 0 PWAVEDIR + 0 1 30 0 PWCAT + 10 0 34 0 PWPER + 0 1 226 1 PWTHER + 0 1 219 1 QMAX + 0 1 220 1 QMIN + 2 0 215 1 QREC + 0 1 218 1 QZ0 + 0 16 201 1 RADARVIL + 2 3 202 1 RADT + 3 1 8 0 RAZA + 2 0 21 0 RCQ + 2 0 204 1 RCQ + 2 0 20 0 RCSOL + 2 0 205 1 RCSOL + 2 0 18 0 RCS + 2 0 202 1 RCS + 2 0 19 0 RCT + 2 0 203 1 RCT + 2 0 206 1 RDRIP + 0 15 6 0 RDSP1 + 0 15 7 0 RDSP2 + 0 15 8 0 RDSP3 + 2 0 32 0 RDVEG + 0 16 5 0 REFC + 0 16 196 1 REFC + 0 16 4 0 REFD + 0 16 195 1 REFD + 0 16 2 0 REFZC + 0 16 194 1 REFZC + 0 16 1 0 REFZI + 0 16 193 1 REFZI + 0 16 0 0 REFZR + 0 16 192 1 REFZR + 0 2 13 0 RELD + 0 2 12 0 RELV + 0 16 3 0 RETOP + 0 16 197 1 RETOP + 0 0 194 1 REV + 0 15 9 0 RFCD + 0 15 10 0 RFCI + 0 15 13 0 RFGRPL + 0 15 14 0 RFHAIL + 3 1 9 0 RFL06 + 3 1 10 0 RFL08 + 3 1 11 0 RFL16 + 3 1 12 0 RFL39 + 0 15 12 0 RFRAIN + 0 15 11 0 RFSNOW + 0 1 94 0 RHICE + 0 1 242 1 RHPW + 0 1 93 0 RHWATER + 0 1 1 0 RH + 0 1 44 0 RIME + 0 1 203 1 RIME + 10 1 4 0 RIPCOP + 0 7 12 0 RI + 0 7 194 1 RI + 2 3 6 0 RLYRS + 2 3 193 1 RLYRS + 0 1 65 0 RPRATE + 2 0 16 0 RSMIN + 2 0 200 1 RSMIN + 1 0 2 0 RSSC + 0 191 194 1 RTSEC + 10 3 206 1 RUNUP + 1 0 11 0 RVERSW + 0 1 24 0 RWMR + 0 18 14 0 SACON + 0 20 100 0 SADEN + 0 19 19 0 SALBD + 3 0 1 0 SALBEDO + 10 4 193 1 SALIN + 1 2 12 0 SALTIL + 10 4 3 0 SALTY + 0 1 5 0 SATD + 2 3 17 0 SATOSM + 3 192 4 0 SBC123 + 3 192 5 0 SBC124 + 0 19 211 1 SBSALB + 0 1 212 1 SBSNO + 3 192 6 0 SBT112 + 3 192 7 0 SBT113 + 3 192 8 0 SBT114 + 3 192 9 0 SBT115 + 3 192 0 0 SBT122 + 3 192 1 0 SBT123 + 3 192 2 0 SBT124 + 3 192 3 0 SBT126 + 3 192 23 0 SBTA1610 + 3 192 24 0 SBTA1611 + 3 192 25 0 SBTA1612 + 3 192 26 0 SBTA1613 + 3 192 27 0 SBTA1614 + 3 192 28 0 SBTA1615 + 3 192 29 0 SBTA1616 + 3 192 20 0 SBTA167 + 3 192 21 0 SBTA168 + 3 192 22 0 SBTA169 + 3 192 39 0 SBTA1710 + 3 192 40 0 SBTA1711 + 3 192 41 0 SBTA1712 + 3 192 42 0 SBTA1713 + 3 192 43 0 SBTA1714 + 3 192 44 0 SBTA1715 + 3 192 45 0 SBTA1716 + 3 192 36 0 SBTA177 + 3 192 37 0 SBTA178 + 3 192 38 0 SBTA179 + 3 192 55 0 SBTAGR10 + 3 192 56 0 SBTAGR11 + 3 192 57 0 SBTAGR12 + 3 192 58 0 SBTAGR13 + 3 192 59 0 SBTAGR14 + 3 192 60 0 SBTAGR15 + 3 192 61 0 SBTAGR16 + 3 192 52 0 SBTAGR7 + 3 192 53 0 SBTAGR8 + 3 192 54 0 SBTAGR9 + 3 0 2 0 SBTMP + 0 7 210 1 SCCP + 4 2 10 0 SCINT + 0 1 84 0 SCLIWC + 0 1 83 0 SCLLWC + 3 1 29 0 SCRAD + 0 20 112 0 SCTAOTK + 3 0 5 0 SCTPRES + 0 20 6 0 SDDMFLX + 0 1 61 0 SDEN + 3 1 99 0 SDMPEMRR + 0 3 20 0 SDSGSO + 0 1 60 0 SDWE + 0 20 11 0 SEDMFLX + 1 2 3 0 SEDTK + 1 2 4 0 SEDTMP + 10 3 207 1 SETUP + 0 1 62 0 SEVAP + 2 0 216 1 SFCRH + 2 0 1 0 SFCR + 2 0 34 0 SFCWRO + 2 0 12 0 SFEXC + 2 0 195 1 SFEXC + 1 0 10 0 SFLORC + 0 20 55 0 SFLUX + 3 192 14 0 SFRA161 + 3 192 15 0 SFRA162 + 3 192 16 0 SFRA163 + 3 192 17 0 SFRA164 + 3 192 18 0 SFRA165 + 3 192 19 0 SFRA166 + 3 192 30 0 SFRA171 + 3 192 31 0 SFRA172 + 3 192 32 0 SFRA173 + 3 192 33 0 SFRA174 + 3 192 34 0 SFRA175 + 3 192 35 0 SFRA176 + 10 4 11 0 SFSALP + 1 2 9 0 SFSAL + 10 4 12 0 SFTMPP + 1 2 10 0 SFTMP + 0 2 7 0 SGCVV + 0 0 201 1 SHAHR + 0 19 201 1 SHAILPRO + 0 1 214 1 SHAMR + 2 3 26 0 SHFLX + 0 0 11 0 SHTFL + 0 1 108 0 SHTPRM + 0 7 13 0 SHWINX + 10 2 3 0 SICED + 4 9 1 0 SIGHAL + 0 7 209 1 SIGH + 4 9 2 0 SIGPAR + 4 9 0 0 SIGPED + 0 7 211 1 SIGT + 0 19 217 1 SIPD + 0 0 17 0 SKINT + 3 5 1 0 SKSSTMP + 0 1 230 1 SLACC + 0 19 23 0 SLDP + 3 0 4 0 SLFTI + 10 3 202 1 SLTFL + 2 3 194 1 SLTYP + 0 6 34 0 SLWTC + 2 3 8 0 SMDRY + 2 3 196 1 SMDRY + 0 1 113 0 SMLWGMA + 0 1 110 0 SMLWHMA + 0 1 116 0 SMLWSMA + 2 3 7 0 SMREF + 2 3 195 1 SMREF + 0 19 18 0 SNFALB + 0 19 193 1 SNFALB + 0 1 25 0 SNMR + 0 1 17 0 SNOAG + 0 1 14 0 SNOC + 0 1 11 0 SNOD + 0 0 16 0 SNOHF + 0 0 192 1 SNOHF + 0 1 15 0 SNOL + 0 1 16 0 SNOM + 0 0 18 0 SNOT + 0 1 208 1 SNOT + 0 1 42 0 SNOWC + 0 1 201 1 SNOWC + 0 1 233 1 SNOWLR + 0 19 236 1 SNOWLVL + 0 1 222 1 SNOWT + 2 3 25 0 SNWDEB + 2 3 27 0 SOILDEP + 2 3 21 0 SOILICE + 2 3 5 0 SOILL + 2 3 192 1 SOILL + 2 3 19 0 SOILMOI + 2 0 3 0 SOILM + 2 0 22 0 SOILM + 2 3 15 0 SOILP + 2 3 18 0 SOILTMP + 2 0 38 0 SOILVIC + 2 0 192 1 SOILW + 4 6 6 0 SOLRF + 3 1 7 0 SOLZA + 2 3 0 0 SOTYP + 3 1 28 0 SPBRT + 10 1 1 0 SPC + 4 6 4 0 SPECIRR + 4 1 0 0 SPEED + 0 1 0 0 SPFH + 10 0 45 0 SPFTR + 0 1 102 0 SPNCG + 0 1 103 0 SPNCH + 0 1 100 0 SPNCR + 0 1 101 0 SPNCS + 0 1 66 0 SPRATE + 4 2 7 0 SPRDF + 3 0 3 0 SPWAT + 3 0 0 0 SRAD + 0 1 85 0 SRAINC + 0 19 194 1 SRCONO + 3 192 46 0 SRFAGR1 + 3 192 47 0 SRFAGR2 + 3 192 48 0 SRFAGR3 + 3 192 49 0 SRFAGR4 + 3 192 50 0 SRFAGR5 + 3 192 51 0 SRFAGR6 + 0 1 12 0 SRWEQ + 0 20 103 0 SSALBK + 0 3 22 0 SSGSO + 10 3 195 1 SSHG + 3 5 2 0 SSKSSTMP + 0 1 86 0 SSNOWW + 1 0 6 0 SSRUN + 1 0 193 1 SSRUN + 10 3 200 1 SSST + 3 0 6 0 SSTMP + 2 0 211 1 SSTOR + 10 3 199 1 SSTT + 0 6 35 0 SSWTC + 0 19 200 1 STORPROB + 0 7 208 1 STPC + 0 2 4 0 STRM + 0 1 87 0 STRPRATE + 0 6 33 0 SUNSD + 0 6 201 1 SUNSD + 0 6 24 0 SUNS + 10 3 192 1 SURGE + 0 19 220 1 SVRTS + 10 3 208 1 SWASH + 0 4 2 0 SWAVR + 10 0 7 0 SWDIR + 0 20 7 0 SWDMFLX + 0 7 5 0 SWEATX + 10 0 8 0 SWELL + 1 0 4 0 SWEPON + 10 0 47 0 SWHFSWEL + 0 4 197 1 SWHR + 10 0 48 0 SWHSSWEL + 10 0 49 0 SWHTSWEL + 0 19 202 1 SWINDPRO + 10 0 9 0 SWPER + 3 1 194 1 SWQI + 0 4 6 0 SWRAD + 0 19 212 1 SWSALB + 0 6 1 0 TCDC + 0 0 204 1 TCHP + 0 1 81 0 TCICON + 0 14 2 0 TCIOZ + 0 1 64 0 TCIWV + 2 0 35 0 TCLASS + 0 1 209 1 TCLSW + 0 6 20 0 TCOLC + 0 6 198 1 TCOLC + 0 1 74 0 TCOLG + 0 1 72 0 TCOLH + 0 6 19 0 TCOLIO + 0 1 70 0 TCOLI + 0 6 197 1 TCOLI + 0 1 210 1 TCOLM + 0 1 45 0 TCOLR + 0 1 204 1 TCOLR + 0 1 46 0 TCOLS + 0 1 205 1 TCOLS + 0 1 78 0 TCOLWA + 0 6 18 0 TCOLWO + 0 1 69 0 TCOLW + 0 6 196 1 TCOLW + 0 6 17 0 TCONDO + 0 1 21 0 TCOND + 0 6 195 1 TCOND + 10 3 242 1 TCSRG20 + 10 3 243 1 TCSRG30 + 10 3 244 1 TCSRG40 + 10 3 245 1 TCSRG50 + 10 3 246 1 TCSRG60 + 10 3 247 1 TCSRG70 + 10 3 248 1 TCSRG80 + 10 3 249 1 TCSRG90 + 0 1 51 0 TCWAT + 0 0 20 0 TDCHT + 0 2 31 0 TDCMOM + 2 0 36 0 TFRCT + 0 0 197 1 THFLX + 0 3 12 0 THICK + 0 6 10 0 THUNC + 0 0 203 1 THZ0 + 0 18 6 0 TIACCP + 0 18 7 0 TIACIP + 0 18 8 0 TIACRP + 10 3 251 1 TIDE + 0 1 206 1 TIPD + 0 19 11 0 TKE + 0 1 90 0 TKMFLX + 0 17 4 0 TLGTFD + 0 6 9 0 TMAXT + 0 0 4 0 TMAX + 0 0 5 0 TMIN + 0 0 29 0 TMPADV + 0 0 9 0 TMPA + 4 0 0 0 TMPSWP + 0 0 0 0 TMP + 0 2 227 1 TOA10 + 0 2 228 1 TOA50 + 0 2 229 1 TOD50 + 0 2 230 1 TOD90 + 0 19 197 1 TORPROB + 0 7 4 0 TOTALX + 0 1 80 0 TOTCON + 0 18 13 0 TOTLWD + 0 14 0 0 TOZNE + 0 14 197 1 TOZ + 2 0 37 0 TPERCT + 0 19 219 1 TPFI + 0 1 52 0 TPRATE + 0 20 13 0 TRANHH + 2 3 12 0 TRANSO + 2 0 230 1 TRANS + 0 20 14 0 TRSDS + 0 2 226 1 TRWDIR + 0 2 225 1 TRWSPD + 0 0 200 1 TSD1D + 0 191 0 0 TSEC + 4 6 0 0 TSI + 0 3 199 1 TSLSA + 0 1 50 0 TSNOWP + 0 1 241 1 TSNOW + 2 0 2 0 TSOIL + 0 1 57 0 TSRATE + 0 1 53 0 TSRWE + 0 19 203 1 TSTMC + 0 19 2 0 TSTM + 0 0 19 0 TTCHT + 0 0 198 1 TTDIA + 10 4 2 0 TTHDP + 0 0 25 0 TTLWRCS + 0 0 23 0 TTLWR + 0 0 26 0 TTPARM + 0 0 199 1 TTPHY + 0 0 193 1 TTRAD + 0 0 24 0 TTSWRCS + 0 0 22 0 TTSWR + 0 19 9 0 TURBB + 0 19 8 0 TURBT + 0 19 10 0 TURB + 0 1 49 0 TWATP + 0 2 35 0 TWIND + 10 3 210 1 TWLDC + 10 3 209 1 TWLDT + 10 3 205 1 TWLWAV + 0 20 58 0 TYAAL + 0 20 57 0 TYABA + 0 3 16 0 U-GWD + 0 3 194 1 U-GWD + 10 1 194 1 UBARO + 0 3 31 0 UCLSPRS + 0 1 120 0 UCSCIW + 0 1 119 0 UCSCLW + 0 0 28 0 UCTMP + 0 3 29 0 UDRATE + 0 2 236 1 UEID + 0 2 234 1 UESH + 0 2 17 0 UFLX + 0 2 2 0 UGRD + 0 2 23 0 UGUST + 0 2 41 0 UGWIND + 10 2 4 0 UICE + 0 1 91 0 UKMFLX + 0 5 4 0 ULWRF + 0 5 193 1 ULWRF + 0 3 27 0 UMFLX + 0 1 118 0 UNCSH + 0 2 45 0 UNDIV + 10 1 2 0 UOGRD + 1 0 14 0 UPAPCP + 1 0 15 0 UPASM + 0 7 15 0 UPHL + 0 7 197 1 UPHL + 2 3 2 0 UPLSM + 2 3 1 0 UPLST + 3 1 192 1 USCT + 10 0 21 0 USSD + 0 2 27 0 USTM + 0 2 194 1 USTM + 0 4 53 0 USWRFCS + 0 4 8 0 USWRF + 0 4 193 1 USWRF + 0 4 205 1 UTRF + 0 4 50 0 UVIUCS + 0 4 51 0 UVI + 0 7 196 1 UVI + 0 3 17 0 V-GWD + 0 3 195 1 V-GWD + 0 19 232 1 VAFTD + 0 1 4 0 VAPP + 10 1 195 1 VBARO + 0 4 200 1 VBDSF + 0 4 201 1 VDDSF + 0 0 202 1 VDFHR + 0 1 215 1 VDFMR + 0 14 195 1 VDFOZ + 0 2 208 1 VDFUA + 0 2 209 1 VDFVA + 0 2 204 1 VEDH + 2 0 232 1 VEGMAX + 2 0 231 1 VEGMIN + 2 0 210 1 VEGT + 2 0 4 0 VEG + 0 2 237 1 VEID + 4 1 1 0 VEL1 + 4 1 2 0 VEL2 + 4 1 3 0 VEL3 + 0 2 235 1 VESH + 0 2 18 0 VFLX + 0 6 48 0 VFRCICE + 0 6 49 0 VFRCIW + 0 6 47 0 VFRCWD + 0 2 3 0 VGRD + 2 0 198 1 VGTYP + 0 2 24 0 VGUST + 0 2 42 0 VGWIND + 10 2 5 0 VICE + 0 15 3 0 VIL + 0 19 35 0 VISBSN + 0 19 34 0 VISIFOG + 0 19 33 0 VISLFOG + 0 19 0 0 VIS + 0 1 92 0 VKMFLX + 0 20 52 0 VMXR + 10 1 3 0 VOGRD + 3 4 4 0 VOLACDEM + 3 4 7 0 VOLACDEN + 3 4 6 0 VOLACDOD + 3 4 3 0 VOLACDTH + 3 4 2 0 VOLACDTP + 3 4 1 0 VOLACDTT + 3 4 5 0 VOLAEADR + 3 4 8 0 VOLAPER + 3 4 0 0 VOLAPROB + 0 19 4 0 VOLASH + 2 3 13 0 VOLDEC + 2 3 11 0 VOLTSO + 0 2 46 0 VORTADV + 0 2 5 0 VPOT + 0 0 15 0 VPTMP + 0 2 224 1 VRATE + 3 1 193 1 VSCT + 2 0 25 0 VSOILM + 2 3 16 0 VSOSM + 10 0 22 0 VSSD + 0 2 28 0 VSTM + 0 2 195 1 VSTM + 4 2 4 0 VTEC + 0 0 1 0 VTMP + 0 2 15 0 VUCSH + 0 2 16 0 VVCSH + 0 2 8 0 VVEL + 2 0 27 0 VWILTM + 0 2 25 0 VWSH + 0 2 192 1 VWSH + 10 4 17 0 WATDENA + 10 4 16 0 WATERDEN + 10 4 20 0 WATPDENA + 10 4 19 0 WATPDEN + 10 4 18 0 WATPTEMP + 2 0 5 0 WATR + 10 0 62 0 WAVEFREW + 2 0 223 1 WCCONV + 0 0 13 0 WCF + 2 0 221 1 WCINC + 2 0 226 1 WCUFLX + 2 0 227 1 WCVFLX + 0 20 10 0 WDCPMFLX + 10 4 14 0 WDEPTH + 10 0 31 0 WDIRW + 0 2 0 0 WDIR + 1 2 0 0 WDPTHIL + 10 0 56 0 WDWFSWEL + 10 0 57 0 WDWSSWEL + 10 0 58 0 WDWTSWEL + 0 1 13 0 WEASD + 10 0 42 0 WESP + 0 0 27 0 WETBT + 0 18 11 0 WETDEP + 0 20 75 0 WFIREFLX + 1 2 2 0 WFRACT + 10 0 59 0 WFWFSWEL + 10 0 60 0 WFWSSWEL + 10 0 61 0 WFWTSWEL + 4 8 5 0 WHTCOR + 4 8 3 0 WHTRAD + 2 0 26 0 WILT + 2 0 201 1 WILT + 0 2 33 0 WINDF + 0 19 199 1 WINDPROB + 3 1 19 0 WINDS + 0 2 1 0 WIND + 0 19 25 0 WIWW + 10 0 193 1 WLENG + 0 20 9 0 WLSMFLX + 0 2 19 0 WMIXE + 2 0 33 0 WROD + 10 0 192 1 WSTP + 10 0 18 0 WSTR + 0 2 214 1 WTEND + 10 4 192 1 WTMPC + 1 2 1 0 WTMPIL + 10 4 15 0 WTMPSS + 10 3 0 0 WTMP + 2 0 222 1 WVCONV + 10 0 4 0 WVDIR + 10 0 5 0 WVHGT + 2 0 220 1 WVINC + 10 0 6 0 WVPER + 10 0 0 0 WVSP1 + 10 0 1 0 WVSP2 + 10 0 2 0 WVSP3 + 2 0 224 1 WVUFLX + 2 0 225 1 WVVFLX + 10 0 14 0 WWSDIR + 4 6 1 0 XLONG + 0 3 26 0 XPRES + 4 8 0 0 XRAYRAD + 4 6 2 0 XSHRT + 10 2 10 0 ZVCICEP diff --git a/fix/upp/post_avblflds.xml b/fix/upp/post_avblflds.xml new file mode 100755 index 000000000..e4a53526a --- /dev/null +++ b/fix/upp/post_avblflds.xml @@ -0,0 +1,8356 @@ + + + + + + + 1 + PRES_ON_HYBRID_LVL + PRES + hybrid_lvl + 6.0 + + + + 2 + TMP_ON_HYBRID_LVL + TMP + hybrid_lvl + 4.0 + + + + 3 + POT_ON_HYBRID_LVL + POT + hybrid_lvl + 4.0 + + + + 4 + DPT_ON_HYBRID_LVL + DPT + hybrid_lvl + 5.0 + + + + 5 + SPFH_ON_HYBRID_LVL + SPFH + hybrid_lvl + 7.0 + + + + 6 + RH_ON_HYBRID_LVL + RH + hybrid_lvl + 4.0 + + + + 7 + UGRD_ON_HYBRID_LVL + UGRD + hybrid_lvl + 4.0 + + + + 8 + VGRD_ON_HYBRID_LVL + VGRD + hybrid_lvl + 4.0 + + + + 9 + VVEL_ON_HYBRID_LVL + VVEL + hybrid_lvl + 5.0 + + + + 10 + ABSV_ON_HYBRID_LVL + ABSV + hybrid_lvl + 3.0 + + + + 11 + TKE_ON_HYBRID_LVL + TKE + hybrid_lvl + 3.0 + + + + 12 + HGT_ON_ISOBARIC_SFC + HGT + isobaric_sfc + 6.0 + + + + 13 + TMP_ON_ISOBARIC_SFC + TMP + isobaric_sfc + 3.0 + + + + 14 + POT_ON_ISOBARIC_SFC + POT + isobaric_sfc + 4.0 + + + + 15 + DPT_ON_ISOBARIC_SFC + DPT + isobaric_sfc + 5.0 + + + + 16 + SPFH_ON_ISOBARIC_SFC + SPFH + isobaric_sfc + 4.0 + + + + 17 + RH_ON_ISOBARIC_SFC + RH + isobaric_sfc + 2.0 + + + + 18 + UGRD_ON_ISOBARIC_SFC + UGRD + isobaric_sfc + 4.0 + + + + 19 + VGRD_ON_ISOBARIC_SFC + VGRD + isobaric_sfc + 4.0 + + + + 20 + VVEL_ON_ISOBARIC_SFC + VVEL + isobaric_sfc + 5.0 + + + + 21 + ABSV_ON_ISOBARIC_SFC + ABSV + isobaric_sfc + 4.0 + + + + 22 + TKE_ON_ISOBARIC_SFC + TKE + isobaric_sfc + 3.0 + + + + 23 + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + mean_sea_lvl + 6.0 + + + + 24 + PRES_ON_SURFACE + PRES + surface + 6.0 + + + + 25 + HGT_ON_SURFACE + HGT + surface + 6.0 + + + + 26 + TMP_ON_SURFACE + TMP + surface + 4.0 + + + + 27 + POT_ON_SURFACE + POT + surface + 5.0 + + + + 28 + SPFH_ON_SURFACE + SPFH + surface + 3.0 + + + + 29 + DPT_ON_SURFACE + DPT + surface + 4.0 + + + + 30 + LFTX_ON_ISOBARIC_SFC_500-1000hpa + LFTX + isobaric_sfc + 50000. + isobaric_sfc + 100000. + 3.0 + + + + 31 + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 4LFTX + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 32 + CAPE_ON_SURFACE + CAPE + surface + 4.0 + + + + 33 + ACM_ACPCP_ON_SURFACE + tmpl4_8 + ACPCP + ACM + surface + -4.0 + + + + 34 + ACM_NCPCP_ON_SURFACE + tmpl4_8 + NCPCP + ACM + surface + -4.0 + + + + 35 + ACM_WEASD_ON_SURFACE + tmpl4_8 + WEASD + ACM + surface + 4.0 + + + + 36 + SOILM_ON_DEPTH_BEL_LAND_SFC + SOILM + depth_bel_land_sfc + depth_bel_land_sfc + 3.0 + + + + 37 + LCDC_ON_LOW_CLOUD_LYR + LCDC + low_cloud_lyr + 3.0 + + + + 38 + MCDC_ON_MID_CLOUD_LYR + MCDC + mid_cloud_lyr + 3.0 + + + + 39 + HCDC_ON_HIGH_CLOUD_LYR + HCDC + high_cloud_lyr + 3.0 + + + + 40 + SWHR_ON_HYBRID_LVL + SWHR + hybrid_lvl + 3.0 + + + + 41 + LWHR_ON_HYBRID_LVL + LWHR + hybrid_lvl + 3.0 + + + + 42 + AVE_LHTFL_ON_SURFACE + tmpl4_8 + LHTFL + AVE + surface + 4.0 + + + + 43 + AVE_SHTFL_ON_SURFACE + tmpl4_8 + SHTFL + AVE + surface + 4.0 + + + + 44 + SFCR_ON_SURFACE + SFCR + surface + 2.7 + + + + 45 + FRICV_ON_SURFACE + FRICV + surface + 4.0 + + + + 46 + AVE_MFLX_ON_SURFACE + tmpl4_8 + MFLX + AVE + surface + -3.0 + + + + 47 + ACM_EVP_ON_SURFACE + tmpl4_8 + EVP + ACM + surface + 4.0 + + + + 48 + NLAT_ON_SURFACE + NLAT + surface + 4.0 + + + + 49 + ELON_ON_SURFACE + ELON + surface + 4.0 + + + + 50 + LAND_ON_SURFACE + LAND + surface + 1.0 + + + + 51 + ICEC_ON_SURFACE + ICEC + surface + 3.0 + + + + 52 + LMH_ON_SURFACE + LMH + surface + 2.0 + + + + 53 + LMV_ON_SURFACE + LMV + surface + 2.0 + + + + 54 + PRES_ON_TROPOPAUSE + PRES + tropopause + 6.0 + + + + 55 + TMP_ON_TROPOPAUSE + TMP + tropopause + 3.0 + + + + 56 + UGRD_ON_TROPOPAUSE + UGRD + tropopause + 4.0 + + + + 57 + VGRD_ON_TROPOPAUSE + VGRD + tropopause + 4.0 + + + + 58 + VWSH_ON_TROPOPAUSE + VWSH + tropopause + 3.0 + + + + 59 + TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + TMP + spec_alt_above_mean_sea_lvl + 3.0 + + + + 60 + UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + UGRD + spec_alt_above_mean_sea_lvl + 4.0 + + + + 61 + VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + VGRD + spec_alt_above_mean_sea_lvl + 4.0 + + + + 62 + HGT_ON_0C_ISOTHERM + HGT + 0C_isotherm + 6.0 + + + + 63 + RH_ON_0C_ISOTHERM + RH + 0C_isotherm + 2.0 + + + + 64 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 65 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 66 + RH_ON_SIGMA_LVL_0.33-1.0 + RH + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 100. + 2.0 + + + + 67 + PRES_ON_SPEC_PRES_ABOVE_GRND + PRES + spec_pres_above_grnd + spec_pres_above_grnd + 6.0 + + + + 68 + TMP_ON_SPEC_PRES_ABOVE_GRND + TMP + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 69 + POT_ON_SPEC_PRES_ABOVE_GRND + POT + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 70 + DPT_ON_SPEC_PRES_ABOVE_GRND + DPT + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 71 + SPFH_ON_SPEC_PRES_ABOVE_GRND + SPFH + spec_pres_above_grnd + spec_pres_above_grnd + 5.0 + + + + 72 + RH_ON_SPEC_PRES_ABOVE_GRND + RH + spec_pres_above_grnd + spec_pres_above_grnd + 2.0 + + + + 73 + UGRD_ON_SPEC_PRES_ABOVE_GRND + UGRD + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 74 + VGRD_ON_SPEC_PRES_ABOVE_GRND + VGRD + spec_pres_above_grnd + spec_pres_above_grnd + 4.0 + + + + 75 + PLI_ON_SPEC_PRES_ABOVE_GRND + PLI + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 76 + RH_ON_SURFACE + RH + surface + 4.0 + + + + 77 + HGT_ON_HYBRID_LVL + HGT + hybrid_lvl + 4.0 + + + + 78 + AVE_LRGHR_ON_HYBRID_LVL + tmpl4_8 + LRGHR + AVE + hybrid_lvl + 3.0 + + + + 79 + AVE_CNVHR_ON_HYBRID_LVL + tmpl4_8 + CNVHR + AVE + hybrid_lvl + 2.7 + + + + 80 + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + entire_atmos_single_lyr + 3.0 + + + + 81 + RH_ON_SIGMA_LVL_0.66-1.0 + RH + sigma_lvl + 2 + 66. + sigma_lvl + 2 + 100. + 2.0 + + + + 82 + RH_ON_SIGMA_LVL_0.33-0.66 + RH + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 66. + 2.0 + + + + 83 + MCONV_ON_HYBRID_LVL + MCONV + hybrid_lvl + 3.0 + + + + 84 + STRM_ON_HYBRID_LVL + STRM + hybrid_lvl + 3.0 + + + + 85 + MCONV_ON_ISOBARIC_SFC + MCONV + isobaric_sfc + 3.0 + + + + 86 + STRM_ON_ISOBARIC_SFC + STRM + isobaric_sfc + 3.0 + + + + 87 + ACM_APCP_ON_SURFACE + tmpl4_8 + APCP + ACM + surface + -4.0 + + + + 88 + MCONV_ON_SPEC_PRES_ABOVE_GRND + MCONV + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 89 + PWAT_ON_SPEC_PRES_ABOVE_GRND + PWAT + spec_pres_above_grnd + spec_pres_above_grnd + 3.0 + + + + 90 + VVEL_ON_SPEC_PRES_ABOVE_GRND + VVEL + spec_pres_above_grnd + spec_pres_above_grnd + 5.0 + + + + 91 + PRES_ON_SIGMA_LVL_0.98230 + PRES + sigma_lvl + 5 + 98230. + 6.0 + + + + 92 + TMP_ON_SIGMA_LVL_0.98230 + TMP + sigma_lvl + 5 + 98230. + 4.0 + + + + 93 + SPFH_ON_SIGMA_LVL_0.98230 + SPFH + sigma_lvl + 5 + 98230. + 3.0 + + + + 94 + RH_ON_SIGMA_LVL_0.98230 + RH + sigma_lvl + 5 + 98230. + 4.0 + + + + 95 + UGRD_ON_SIGMA_LVL_0.98230 + UGRD + sigma_lvl + 5 + 98230. + 5.0 + + + + 96 + VGRD_ON_SIGMA_LVL_0.98230 + VGRD + sigma_lvl + 5 + 98230. + 5.0 + + + + 97 + TMP_ON_SIGMA_LVL_0.89671 + TMP + sigma_lvl + 5 + 89671. + 4.0 + + + + 98 + TMP_ON_SIGMA_LVL_0.78483 + TMP + sigma_lvl + 5 + 78483. + 4.0 + + + + 99 + RH_ON_SIGMA_LVL_0.47_1.0 + RH + sigma_lvl + 2 + 47. + sigma_lvl + 2 + 100. + 2.0 + + + + 100 + RH_ON_SIGMA_LVL_0.47_0.96 + RH + sigma_lvl + 2 + 47. + sigma_lvl + 2 + 96. + 2.0 + + + + 101 + RH_ON_SIGMA_LVL_0.18_0.47 + RH + sigma_lvl + 2 + 18. + sigma_lvl + 2 + 47. + 2.0 + + + + 102 + RH_ON_SIGMA_LVL_0.84_0.98 + RH + sigma_lvl + 2 + 84. + sigma_lvl + 2 + 98. + 2.0 + + + + 103 + MCONV_ON_SIGMA_LVL_0.85_1.0 + MCONV + sigma_lvl + 2 + 85. + sigma_lvl + 2 + 100. + 3.0 + + + + 104 + PWAT_ON_SIGMA_LVL_0.33_1.0 + PWAT + sigma_lvl + 2 + 33. + sigma_lvl + 2 + 100. + 2.0 + + + + 105 + PRES_ON_MEAN_SEA_LVL + PRMSL + mean_sea_lvl + 6.0 + + + + 106 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 107 + CIN_ON_SURFACE + CIN + surface + 4.0 + + + + 108 + POT_ON_TROPOPAUSE + POT + tropopause + 5.0 + + + + 109 + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + HGT + lvl_of_adiab_cond_from_sfc + 5.0 + + + + 110 + PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC + PRES + lvl_of_adiab_cond_from_sfc + 6.0 + + + + 111 + RI_ON_HYBRID_LVL + RI + hybrid_lvl + 3.0 + + + + 112 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 113 + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 114 + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 115 + TSOIL_ON_DEPTH_BEL_LAND_SFC_3m + TSOIL + depth_bel_land_sfc + 3. + 3.0 + + + + 116 + TSOIL_ON_DEPTH_BEL_LAND_SFC + TSOIL + depth_bel_land_sfc + depth_bel_land_sfc + 4.0 + + + + 117 + SOILW_ON_DEPTH_BEL_LAND_SFC + SOILW + NCEP + depth_bel_land_sfc + depth_bel_land_sfc + 3.0 + + + + 118 + CNWAT_ON_SURFACE + CNWAT + surface + 1.0 + + + + 119 + WEASD_ON_SURFACE + WEASD + surface + 3.0 + + + + 120 + SNOWC_ON_SURFACE + SNOWC + surface + 3.0 + + + + 121 + ACM_SNOM_ON_SURFACE + tmpl4_8 + SNOM + ACM + surface + 4.0 + + + + 122 + ACM_SSRUN_ON_SURFACE + tmpl4_8 + SSRUN + ACM + surface + 4.0 + + + + 123 + ACM_BGRUN_ON_SURFACE + tmpl4_8 + BGRUN + ACM + surface + 4.0 + + + + 124 + CLMR_ON_HYBRID_LVL + CLMR + hybrid_lvl + 3.0 + + + + 125 + ICMR_ON_HYBRID_LVL + ICMR + hybrid_lvl + 3.0 + + + + 126 + AVE_DSWRF_ON_SURFACE + tmpl4_8 + DSWRF + AVE + surface + 3.0 + + + + 127 + AVE_DLWRF_ON_SURFACE + tmpl4_8 + DLWRF + AVE + surface + 3.0 + + + + 128 + AVE_USWRF_ON_SURFACE + tmpl4_8 + USWRF + AVE + surface + 3.0 + + + + 129 + AVE_ULWRF_ON_SURFACE + tmpl4_8 + ULWRF + AVE + surface + 3.0 + + + + 130 + AVE_USWRF_ON_TOP_OF_ATMOS + tmpl4_8 + USWRF + AVE + top_of_atmos + 3.0 + + + + 131 + AVE_ULWRF_ON_TOP_OF_ATMOS + tmpl4_8 + ULWRF + AVE + top_of_atmos + 3.0 + + + + 132 + CD_ON_SURFACE + CD + surface + 3.0 + + + + 133 + UFLX_ON_SURFACE + UFLX + surface + 3.0 + + + + 134 + VFLX_ON_SURFACE + VFLX + surface + 3.0 + + + + 135 + AVE_GFLUX_ON_SURFACE + tmpl4_8 + GFLUX + AVE + surface + 4.0 + + + + 136 + AVE_SNOHF_ON_SURFACE + tmpl4_8 + SNOHF + AVE + surface + 4.0 + + + + 137 + ACM_PEVAP_ON_SURFACE + tmpl4_8 + PEVAP + ACM + surface + 4.0 + + + + 138 + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + PRES + spec_hgt_lvl_above_grnd + 2. + 6.0 + + + + 139 + AVE_CDLYR_ON_ENTIRE_ATMOS + tmpl4_8 + CDLYR + AVE + entire_atmos_single_lyr + 3.0 + + + + 140 + TTRAD_ON_HYBRID_LVL + TTRAD + hybrid_lvl + 3.0 + + + + 141 + INST_USWRF_ON_SURFACE + USWRF + surface + 4.0 + + + + 142 + INST_ULWRF_ON_SURFACE + ULWRF + surface + 4.0 + + + + 143 + AVE_CDCON_ON_ENTIRE_ATMOS + tmpl4_8 + CDCON + AVE + entire_atmos_single_lyr + 3.0 + + + + 144 + AVE_TCDC_ON_ENTIRE_ATMOS + tmpl4_8 + TCDC + AVE + entire_atmos_single_lyr + 3.0 + + + + 145 + TCDC_ON_HYBRID_LVL + TCDC + hybrid_lvl + 3.0 + + + + 146 + BMIXL_ON_HYBRID_LVL + BMIXL + hybrid_lvl + 3.0 + + + + 147 + AMIXL_ON_HYBRID_LVL + AMIXL + hybrid_lvl + 3.0 + + + + 148 + PRES_ON_CLOUD_BASE + PRES + cloud_base + 6.0 + + + + 149 + PRES_ON_CLOUD_TOP + PRES + cloud_top + 6.0 + + + + 150 + ALBDO_ON_SURFACE + ALBDO + surface + 3.0 + + + + 151 + WTMP_ON_SURFACE + WTMP + surface + 5.0 + + + + 152 + INST_GFLUX_ON_SURFACE + GFLUX + surface + 3.0 + + + + 153 + CLMR_ON_ISOBARIC_SFC + CLMR + isobaric_sfc + 4.0 + + + + 154 + INST_SHTFL_ON_SURFACE + SHTFL + surface + 4.0 + + + + 155 + INST_LHTFL_ON_SURFACE + LHTFL + surface + 4.0 + + + + 156 + INST_DSWRF_ON_SURFACE + DSWRF + surface + 4.0 + + + + 157 + INST_DLWRF_ON_SURFACE + DLWRF + surface + 4.0 + + + + 158 + POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + POT + spec_hgt_lvl_above_grnd + 5.0 + + + + 159 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + SPFH + spec_hgt_lvl_above_grnd + 3.0 + + + + 160 + INST_CRAIN_ON_SURFACE + CRAIN + surface + 1.0 + + + + 161 + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + entire_atmos_single_lyr + 3.0 + + + + 162 + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 163 + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + USTM + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 164 + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + VSTM + spec_hgt_lvl_above_grnd + spec_hgt_lvl_above_grnd + 4.0 + + + + 165 + HGT_ON_HGHST_TROP_FRZ_LVL + HGT + hghst_trop_frz_lvl + 6.0 + + + + 166 + ICMR_ON_ISOBARIC_SFC + ICMR + isobaric_sfc + 6.0 + + + + 167 + INST_PRATE_ON_SURFACE + PRATE + surface + 3.0 + + + + 168 + TMP_ON_CLOUD_TOP + TMP + cloud_top + 5.0 + + + + 169 + SFEXC_ON_SURFACE + SFEXC + surface + 3.0 + + + + 170 + VEG_ON_SURFACE + VEG + surface + 3.0 + + + + 171 + MSTAV_ON_DEPTH_BEL_LAND_SFC + MSTAV + depth_bel_land_sfc + 2 + depth_bel_land_sfc + 2 + 3.0 + + + + 172 + CPOFP_ON_SURFACE + CPOFP + surface + 4.0 + + + + 173 + PRES_ON_MAX_WIND + PRES + max_wind + 6.0 + + + + 174 + HGT_ON_MAX_WIND + HGT + max_wind + 6.0 + + + + 175 + UGRD_ON_MAX_WIND + UGRD + max_wind + 4.0 + + + + 176 + VGRD_ON_MAX_WIND + VGRD + max_wind + 4.0 + + + + 177 + HGT_ON_TROPOPAUSE + HGT + tropopause + 6.0 + + + + 178 + HGT_ON_CLOUD_BASE + HGT + cloud_base + 6.0 + + + + 179 + HGT_ON_CLOUD_TOP + HGT + cloud_top + 6.0 + + + + 180 + VIS_ON_SURFACE + VIS + surface + 6.0 + + + + 181 + RWMR_ON_HYBRID_LVL + RWMR + hybrid_lvl + 3.0 + + + + 182 + SNMR_ON_HYBRID_LVL + SNMR + hybrid_lvl + 3.0 + + + + 183 + RWMR_ON_ISOBARIC_SFC + RWMR + isobaric_sfc + 3.0 + + + + 184 + SNMR_ON_ISOBARIC_SFC + SNMR + isobaric_sfc + 3.0 + + + + 185 + FRAIN_ON_HYBRID_LVL + FRAIN + hybrid_lvl + 3.0 + + + + 186 + FICE_ON_HYBRID_LVL + FICE + hybrid_lvl + 3.0 + + + + 187 + RIME_ON_HYBRID_LVL + RIME + hybrid_lvl + 3.0 + + + + 188 + PRES_ON_CONVECTIVE_CLOUD_BOT_LVL + PRES + convective_cloud_bot_lvl + 6.0 + + + + 189 + PRES_ON_CONVECTIVE_CLOUD_TOP_LVL + PRES + convective_cloud_top_lvl + 6.0 + + + + 190 + PRES_ON_SHALL_CONVECTIVE_CLOUD_BOT_LVL + PRES + shall_convective_cloud_bot_lvl + 6.0 + + + + 191 + PRES_ON_SHALL_CONVECTIVE_CLOUD_TOP_LVL + PRES + shall_convective_cloud_top_lvl + 6.0 + + + + 192 + PRES_ON_DEEP_CONVECTIVE_CLOUD_BOT_LVL + PRES + deep_convective_cloud_bot_lvl + 6.0 + + + + 193 + PRES_ON_DEEP_CONVECTIVE_CLOUD_TOP_LVL + PRES + deep_convective_cloud_top_lvl + 6.0 + + + + 194 + PRES_ON_GRID_SCALE_CLOUD_BOT_LVL + PRES + grid_scale_cloud_bot_lvl + 6.0 + + + + 195 + PRES_ON_GRID_SCALE_CLOUD_TOP_LVL + PRES + grid_scale_cloud_top_lvl + 6.0 + + + + 196 + CDCON_ON_CONVECTIVE_CLOUD_LYR + CDCON + convective_cloud_lyr + 2.0 + + + + 197 + CUEFI_ON_ENTIRE_ATMOS_SINGLE_LYR + CUEFI + entire_atmos_single_lyr + 3.0 + + + + 198 + TCOND_ON_ISOBARIC_SFC + TCOND + isobaric_sfc + 3.0 + + + + 199 + TCOND_ON_HYBRID_LVL + TCOND + hybrid_lvl + 3.0 + + + + 200 + TCOLW_ON_ENTIRE_ATMOS + TCOLW + entire_atmos_single_lyr + 3.0 + + + + 201 + TCOLI_ON_ENTIRE_ATMOS + TCOLI + entire_atmos_single_lyr + 5.0 + + + + 202 + TCOLR_ON_ENTIRE_ATMOS + TCOLR + entire_atmos_single_lyr + 5.0 + + + + 203 + TCOLS_ON_ENTIRE_ATMOS + TCOLS + entire_atmos_single_lyr + 5.0 + + + + 204 + TCOLC_ON_ENTIRE_ATMOS + TCOLC + entire_atmos_single_lyr + 5.0 + + + + 205 + HGT_ON_SIGMA_LVLS + HGT + sigma_lvl + 5.0 + + + + 206 + TMP_ON_SIGMA_LVLS + TMP + sigma_lvl + 4.0 + + + + 207 + SPFH_ON_SIGMA_LVLS + SPFH + sigma_lvl + 3.0 + + + + 208 + UGRD_ON_SIGMA_LVLS + UGRD + sigma_lvl + 4.0 + + + + 209 + VGRD_ON_SIGMA_LVLS + VGRD + sigma_lvl + 4.0 + + + + 210 + VVEL_ON_SIGMA_LVLS + VVEL + sigma_lvl + 5.0 + + + + 211 + CLMR_ON_SIGMA_LVLS + CLMR + sigma_lvl + 4.0 + + + + 212 + ICMR_ON_SIGMA_LVLS + ICMR + sigma_lvl + 6.0 + + + + 213 + RWMR_ON_SIGMA_LVLS + RWMR + sigma_lvl + 3.0 + + + + 214 + SNMR_ON_SIGMA_LVLS + SNMR + sigma_lvl + 3.0 + + + + 215 + TCOND_ON_SIGMA_LVLS + TCOND + sigma_lvl + 3.0 + + + + 216 + PRES_ON_SIGMA_LVLS + PRES + sigma_lvl + 6.0 + + + + 217 + TKE_ON_SIGMA_LVLS + TKE + sigma_lvl + 3.0 + + + + 218 + VGTYP_ON_SURFACE + VGTYP + surface + 3.0 + + + + 219 + SOTYP_ON_SURFACE + SOTYP + surface + 3.0 + + + + 220 + CCOND_ON_SURFACE + CCOND + surface + 3.0 + + + + 221 + HPBL_ON_SURFACE + HPBL + surface + 6.0 + + + + 222 + TCDC_ON_SIGMA_LVLS + TCDC + sigma_lvl + 3.0 + + + + 223 + SLTYP_ON_SURFACE + SLTYP + surface + 3.0 + + + + 224 + SNOD_ON_SURFACE + SNOD + surface + 3.0 + + + + 225 + SOILL_ON_DEPTH_BEL_LAND_SFC + SOILL + depth_bel_land_sfc + depth_bel_land_sfc + 3.0 + + + + 226 + SNFALB_ON_SURFACE + SNFALB + surface + 3.0 + + + + 227 + MXSALB_ON_SURFACE + MXSALB + surface + 3.0 + + + + 228 + EVCW_ON_SURFACE + EVCW + surface + 3.0 + + + + 229 + EVBS_ON_SURFACE + EVBS + surface + 3.0 + + + + 230 + TRANS_ON_SURFACE + TRANS + surface + 3.0 + + + + 231 + SBSNO_ON_SURFACE + SBSNO + surface + 3.0 + + + + 232 + SMDRY_ON_SURFACE + SMDRY + surface + 3.0 + + + + 233 + POROS_ON_SURFACE + POROS + surface + 3.0 + + + + 234 + RSMIN_ON_SURFACE + RSMIN + surface + 3.0 + + + + 235 + RLYRS_ON_SURFACE + RLYRS + surface + 3.0 + + + + 236 + WILT_ON_SURFACE + WILT + surface + 3.0 + + + + 237 + SMREF_ON_SURFACE + SMREF + surface + 3.0 + + + + 238 + RCS_ON_SURFACE + RCS + surface + 3.0 + + + + 239 + RCT_ON_SURFACE + RCT + surface + 5.0 + + + + 240 + RCQ_ON_SURFACE + RCQ + surface + 3.0 + + + + 241 + RCSOL_ON_SURFACE + RCSOL + surface + 3.0 + + + + 242 + PEVPR_ON_SURFACE + PEVPR + surface + 6.0 + + + + 243 + VEDH_ON_SIGMA_LVLS + VEDH + sigma_lvl + 4.0 + + + + 245 + GUST_ON_SURFACE + GUST + surface + 3.0 + + + + 246 + PLPL_ON_SPEC_PRES_ABOVE_GRND + PLPL + NCEP + spec_pres_above_grnd + spec_pres_above_grnd + 6.0 + + + + 247 + HGT_ON_LWST_LVL_OF_WET_BULB_ZERO + HGT + lwst_lvl_of_wet_bulb_zero + -5.0 + + + + 249 + CPRAT_ON_SURFACE + CPRAT + surface + 4.0 + + + + 250 + REFD_ON_HYBRID_LVL + REFD + hybrid_lvl + 4.0 + + + + 251 + REFD_ON_ISOBARIC_SFC + REFD + isobaric_sfc + 4.0 + + + + 252 + REFC_ON_ENTIRE_ATMOS + REFC + entire_atmos_single_lyr + 4.0 + + + + 253 + REFD_ON_SPEC_HGT_LVL_ABOVE_GRND + REFD + spec_hgt_lvl_above_grnd + 4.0 + + + + 254 + LAI_ON_SURFACE + LAI + surface + -3.0 + + + + 255 + GRLE_ON_SIGMA_LVLS + GRLE + sigma_lvl + 3.0 + + + + 256 + ACM_LSPA_ON_SURFACE + tmpl4_8 + LSPA + ACM + surface + 3.0 + + + + 257 + TIPD_ON_ISOBARIC_SFC + TIPD + isobaric_sfc + 6.0 + + + + 258 + TPFI_ON_ISOBARIC_SFC + TPFI + isobaric_sfc + 6.0 + + + + 259 + VWSH_ON_SPEC_HGT_LVL_ABOVE_GRND + VWSH + spec_hgt_lvl_above_grnd + 6.0 + + + + 260 + HGT_ON_CLOUD_CEILING + HGT + cloud_ceilng + 6.0 + + + + 261 + VIS_ON_CLOUD_BASE + VIS + cloud_base + 6.0 + + + + 262 + INST_CSDSF_ON_SURFACE + CSDSF + surface + 4.0 + + + + 263 + RIME_ON_ISOBARIC_SFC + RIME + isobaric_sfc + 3.0 + + + + 264 + DZDT_ON_HYBRID_LVL + DZDT + hybrid_lvl + -5.0 + + + + 265 + SBT122_ON_TOP_OF_ATMOS_FROM_LWRAD + SBT122 + top_of_atmos + 5.0 + + + + 266 + AVE_ALBDO_ON_SURFACE + tmpl4_8 + ALBDO + AVE + surface + 4.0 + + + + 267 + O3MR_ON_HYBRID_LVL + O3MR + hybrid_lvl + 7.0 + + + + 268 + O3MR_ON_ISOBARIC_SFC + O3MR + isobaric_sfc + 5.0 + + + + 269 + AVE_UFLX_ON_SURFACE + tmpl4_8 + UFLX + AVE + surface + 4.0 + + + + 270 + AVE_VFLX_ON_SURFACE + tmpl4_8 + VFLX + AVE + surface + 4.0 + + + + 271 + AVE_PRATE_ON_SURFACE + tmpl4_8 + PRATE + AVE + surface + 4.0 + + + + 272 + AVE_CPRAT_ON_SURFACE + tmpl4_8 + CPRAT + AVE + surface + 4.0 + + + + 273 + PRES_ON_HYBRID_LVL_LLM + PRES + hybrid_lvl + hybrid_lvl + 3.0 + + + + 274 + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + top_of_atmos + 4.0 + + + + 275 + BRTMP_ON_TOP_OF_ATMOS + BRTMP + top_of_atmos + 3.0 + + + + 276 + REFZR_ON_ENTIRE_ATMOS + REFZR + entire_atmos_single_lyr + -4.0 + + + + 277 + REFZI_ON_ENTIRE_ATMOS + REFZI + entire_atmos_single_lyr + -4.0 + + + + 278 + REFZC_ON_ENTIRE_ATMOS + REFZC + entire_atmos_single_lyr + -4.0 + + + + 279 + REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZR + spec_hgt_lvl_above_grnd + -4.0 + + + + 280 + REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZI + spec_hgt_lvl_above_grnd + -4.0 + + + + 281 + REFZC_ON_SPEC_HGT_LVL_ABOVE_GRND + REFZC + spec_hgt_lvl_above_grnd + -4.0 + + + + 282 + PRES_ON_TOP_OF_ATMOS + PRES + top_of_atmos + 3.0 + + + + + 283 + PRES_ON_HYBRID_LVL_1L + PRES + hybrid_lvl + hybrid_lvl + 3.0 + + + + 284 + DZDT_ON_ISOBARIC_SFC + DZDT + isobaric_sfc + -5.0 + + + + 285 + TCLSW_ON_ENTIRE_ATMOS + TCLSW + entire_atmos_single_lyr + 5.0 + + + + 286 + TCOLM_ON_ENTIRE_ATMOS + TCOLM + entire_atmos_single_lyr + 5.0 + + + + 287 + HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + lwst_bot_lvl_of_supercooled_liq_water_lyr + 6.0 + + + + 288 + HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR + HGT + hghst_top_lvl_of_supercooled_liq_water_lyr + 5.0 + + + + 289 + HGT_ON_PLANETARY_BOUND_LYR + HGT + planetary_bound_lyr + -4.0 + + + + 290 + SWHR_ON_ENTIRE_ATMOS + SWHR + entire_atmos_single_lyr + 5.0 + + + + 291 + LWHR_ON_ENTIRE_ATMOS + LWHR + entire_atmos_single_lyr + 5.0 + + + + 292 + AVE_LRGHR_ON_ENTIRE_ATMOS + tmpl4_8 + LRGHR + AVE + entire_atmos_single_lyr + 5.0 + + + + 293 + AVE_CNVHR_ON_ENTIRE_ATMOS + tmpl4_8 + CNVHR + AVE + entire_atmos_single_lyr + 5.0 + + + + 294 + TTRAD_ON_ISOBARIC_SFC + TTRAD + isobaric_sfc + 5.0 + + + + 295 + MCONV_ON_ENTIRE_ATMOS + MCONV + entire_atmos_single_lyr + 5.0 + + + + 296 + TMP_ON_SIGMA_LVL_HPC + TMP + sigma_lvl + -4.0 + + + + 297 + AVE_CDUVB_ON_SURFACE + tmpl4_8 + CDUVB + AVE + surface + 3.0 + + + + 298 + AVE_DUVB_ON_SURFACE + tmpl4_8 + DUVB + AVE + surface + 3.0 + + + + 299 + TOZNE_ON_ENTIRE_ATMOS_SINGLE_LYR + TOZNE + entire_atmos_single_lyr + 4.0 + + + + 300 + AVE_TCDC_ON_LOW_CLOUD_LYR + tmpl4_8 + LCDC + AVE + low_cloud_lyr + 3.0 + + + + 301 + AVE_TCDC_ON_MID_CLOUD_LYR + tmpl4_8 + MCDC + AVE + mid_cloud_lyr + 3.0 + + + + 302 + AVE_TCDC_ON_HIGH_CLOUD_LYR + tmpl4_8 + HCDC + AVE + high_cloud_lyr + 3.0 + + + + 303 + AVE_PRES_ON_LOW_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + low_cloud_bot_lvl + 6.0 + + + + 304 + AVE_PRES_ON_LOW_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + low_cloud_top_lvl + 6.0 + + + + 305 + AVE_TMP_ON_LOW_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + low_cloud_top_lvl + 3.0 + + + + 306 + AVE_PRES_ON_MID_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + mid_cloud_bot_lvl + 6.0 + + + + 307 + AVE_PRES_ON_MID_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + mid_cloud_top_lvl + 6.0 + + + + 308 + AVE_TMP_ON_MID_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + mid_cloud_top_lvl + 3.0 + + + + 309 + AVE_PRES_ON_HIGH_CLOUD_BOT_LVL + tmpl4_8 + PRES + AVE + high_cloud_bot_lvl + 6.0 + + + + 310 + AVE_PRES_ON_HIGH_CLOUD_TOP_LVL + tmpl4_8 + PRES + AVE + high_cloud_top_lvl + 6.0 + + + + 311 + AVE_TMP_ON_HIGH_CLOUD_TOP_LVL + tmpl4_8 + TMP + AVE + high_cloud_top_lvl + 3.0 + + + + 312 + RH_ON_ENTIRE_ATMOS_SINGLE_LYR + RH + entire_atmos_single_lyr + 2.0 + + + + 313 + AVE_CWORK_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_8 + CWORK + AVE + entire_atmos_single_lyr + 4.0 + + + + 314 + TMP_ON_MAX_WIND + TMP + max_wind + 3.0 + + + + 315 + AVE_U-GWD_ON_SURFACE + tmpl4_8 + U-GWD + AVE + surface + 5.0 + + + + 316 + AVE_V-GWD_ON_SURFACE + tmpl4_8 + V-GWD + AVE + surface + 5.0 + + + + 317 + AVE_CRAIN_ON_SURFACE + tmpl4_8 + CRAIN + AVE + surface + 1.0 + + + + 318 + RH_ON_SIGMA_LVL_0.44-1.0 + RH + sigma_lvl + 2 + 44. + sigma_lvl + 2 + 100. + 2.0 + + + + 319 + RH_ON_SIGMA_LVL_0.72-0.94 + RH + sigma_lvl + 2 + 72. + sigma_lvl + 2 + 94. + 2.0 + + + + 320 + RH_ON_SIGMA_LVL_0.44-0.72 + RH + sigma_lvl + 2 + 44. + sigma_lvl + 2 + 72. + 2.0 + + + + 321 + TMP_ON_SIGMA_LVL_0.9950 + TMP + sigma_lvl + 4 + 9950. + 4.0 + + + + 322 + POT_ON_SIGMA_LVL_0.9950 + POT + sigma_lvl + 4 + 9950. + 4.0 + + + + 323 + RH_ON_SIGMA_LVL_0.9950 + RH + sigma_lvl + 4 + 9950. + 3.0 + + + + 324 + UGRD_ON_SIGMA_LVL_0.9950 + UGRD + sigma_lvl + 4 + 9950. + 4.0 + + + + 325 + VGRD_ON_SIGMA_LVL_0.9950 + VGRD + sigma_lvl + 4 + 9950. + 4.0 + + + + 326 + VVEL_ON_SIGMA_LVL_0.9950 + VVEL + sigma_lvl + 4 + 9950. + 5.0 + + + + 327 + SBT122_ON_TOP_OF_ATMOS + SBT122 + top_of_atmos + 4.0 + + + + 328 + SBT123_ON_TOP_OF_ATMOS + SBT123 + top_of_atmos + 4.0 + + + + 329 + SBT124_ON_TOP_OF_ATMOS + SBT124 + top_of_atmos + 4.0 + + + + 330 + SBT126_ON_TOP_OF_ATMOS + SBT126 + top_of_atmos + 4.0 + + + + 331 + TCDC_ON_ISOBARIC_SFC + TCDC + isobaric_sfc + 3.0 + + + + 332 + UGRD_ON_ISENTROPIC_LVL + UGRD + isentropic_lvl + 4.0 + + + + 333 + VGRD_ON_ISENTROPIC_LVL + VGRD + isentropic_lvl + 4.0 + + + + 334 + TMP_ON_ISENTROPIC_LVL + TMP + isentropic_lvl + 3.0 + + + + 335 + PVORT_ON_ISENTROPIC_LVL + PVORT + isentropic_lvl + 4.0 + + + + 336 + UGRD_ON_POT_VORT_SFC + UGRD + pot_vort_sfc + 4.0 + + + + 337 + VGRD_ON_POT_VORT_SFC + VGRD + pot_vort_sfc + 4.0 + + + + 338 + TMP_ON_POT_VORT_SFC + TMP + pot_vort_sfc + 4.0 + + + + 339 + HGT_ON_POT_VORT_SFC + HGT + pot_vort_sfc + 6.0 + + + + 340 + PRES_ON_POT_VORT_SFC + PRES + pot_vort_sfc + 6.0 + + + + 341 + VWSH_ON_POT_VORT_SFC + VWSH + pot_vort_sfc + 3.0 + + + + 342 + AVE_TCDC_ON_BOUND_LYR_CLOUD_LYR + tmpl4_8 + TCDC + AVE + bound_lyr_cloud_lyr + 3.0 + + + + 343 + ACM_WATR_ON_SURFACE + tmpl4_8 + WATR + ACM + surface + 6.0 + + + + 344 + PBLREG_ON_SURFACE + PBLREG + surface + 2.0 + + + + 345 + MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + TMAX + MAX + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 346 + MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + TMIN + MIN + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 347 + MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + MAXRH + MAX + spec_hgt_lvl_above_grnd + 2. + -2.0 + + + + 348 + MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + MINRH + MIN + spec_hgt_lvl_above_grnd + 2. + -2.0 + + + + 349 + ICETK_ON_SURFACE + ICETK + surface + 3.0 + + + + 350 + RH_ON_HGHST_TROP_FRZ_LVL + RH + hghst_trop_frz_lvl + 2.0 + + + + + 351 + LAPR_ON_ISENTROPIC_LVL + LAPR + isentropic_lvl + 2.0 + + + + 352 + RH_ON_ISENTROPIC_LVL + RH + isentropic_lvl + 2.0 + + + + 353 + MNTSF_ON_ISENTROPIC_LVL + MNTSF + isentropic_lvl + 4.0 + + + + + 354 + SWHR_ON_ISOBARIC_SFC + SWHR + isobaric_sfc + 5.0 + + + + 355 + LWHR_ON_ISOBARIC_SFC + LWHR + isobaric_sfc + 5.0 + + + + 356 + VDFHR_ON_ISOBARIC_SFC + VDFHR + isobaric_sfc + 3.0 + + + + 357 + CNVHR_ON_ISOBARIC_SFC + CNVHR + isobaric_sfc + 2.7 + + + + + 358 + SHAHR_ON_ISOBARIC_SFC + SHAHR + isobaric_sfc + 3.0 + + + + 359 + LRGHR_ON_ISOBARIC_SFC + LRGHR + isobaric_sfc + 3.0 + + + + 360 + VDFMR_ON_ISOBARIC_SFC + VDFMR + isobaric_sfc + 3.0 + + + + 361 + CNVMR_ON_ISOBARIC_SFC + CNVMR + isobaric_sfc + 3.0 + + + + 362 + SHAMR_ON_ISOBARIC_SFC + SHAMR + isobaric_sfc + 3.0 + + + + 363 + LRGMR_ON_ISOBARIC_SFC + LRGMR + isobaric_sfc + 3.0 + + + + 364 + VDFOZ_ON_ISOBARIC_SFC + VDFOZ + isobaric_sfc + 7.0 + + + + 365 + POZ_ON_ISOBARIC_SFC + POZ + isobaric_sfc + 4.0 + + + + 366 + TOZ_ON_ISOBARIC_SFC + TOZ + isobaric_sfc + 3.0 + + + + 367 + PVMW_ON_ISOBARIC_SFC + PVMW + isobaric_sfc + 3.0 + + + + 368 + SNOT_ON_ISOBARIC_SFC + SNOT + isobaric_sfc + 3.0 + + + + 369 + VDFUA_ON_ISOBARIC_SFC + VDFUA + isobaric_sfc + 3.0 + + + + 370 + GWDU_ON_ISOBARIC_SFC + GWDU + isobaric_sfc + 3.0 + + + + 371 + CNVU_ON_ISOBARIC_SFC + CNVU + isobaric_sfc + 3.0 + + + + 372 + VDFVA_ON_ISOBARIC_SFC + VDFVA + isobaric_sfc + 3.0 + + + + 373 + GWDV_ON_ISOBARIC_SFC + GWDV + isobaric_sfc + 3.0 + + + + 374 + CNVV_ON_ISOBARIC_SFC + CNVV + isobaric_sfc + 3.0 + + + + 375 + CDLYR_ON_ISOBARIC_SFC + CDLYR + isobaric_sfc + 3.0 + + + + 376 + SBC123_ON_TOP_OF_ATMOS + SBC123 + top_of_atmos + 4.0 + + + + 377 + SBC124_ON_TOP_OF_ATMOS + SBC124 + top_of_atmos + 4.0 + + + + 378 + VVEL_ON_ISENTROPIC_LVL + VVEL + isentropic_lvl + 5.0 + + + + + + + 379 + TTDIA_ON_ISOBARIC_SFC + TTDIA + isobaric_sfc + 3.0 + + + + 380 + VEDH_ON_HYBRID_LVL + VEDH + hybrid_lvl + 3.0 + + + + 381 + MIXHT_ON_SURFACE + MIXHT + surface + -4.0 + + + + + 382 + AVE_CSDLF_ON_SURFACE + tmpl4_8 + CSDLF + AVE + surface + 3.0 + + + + 383 + AVE_CSDSF_ON_SURFACE + tmpl4_8 + CSDSF + AVE + surface + 3.0 + + + + 384 + AVE_CSULF_ON_SURFACE + tmpl4_8 + CSULF + AVE + surface + 3.0 + + + + 385 + AVE_CSULF_ON_TOP_OF_ATMOS + tmpl4_8 + CSULF + AVE + top_of_atmos + 3.0 + + + + 386 + AVE_CSUSF_ON_SURFACE + tmpl4_8 + CSUSF + AVE + surface + 3.0 + + + + 387 + AVE_CSUSF_ON_TOP_OF_ATMOS + tmpl4_8 + CSUSF + AVE + top_of_atmos + 3.0 + + + + 388 + AVE_DSWRF_ON_TOP_OF_ATMOS + tmpl4_8 + DSWRF + AVE + top_of_atmos + 4.0 + + + + 389 + UGRD_ON_PLANETARY_BOUND_LYR + UGRD + planetary_bound_lyr + -4.0 + + + + 390 + VGRD_ON_PLANETARY_BOUND_LYR + VGRD + planetary_bound_lyr + -4.0 + + + + + 391 + CNVUMF_ON_ISOBARIC_SFC + CNVUMF + isobaric_sfc + 3.0 + + + + 392 + CNVDMF_ON_ISOBARIC_SFC + CNVDMF + isobaric_sfc + 3.0 + + + + 393 + CNVEMF_ON_ISOBARIC_SFC + CNVEMF + isobaric_sfc + 3.0 + + + + 394 + CNVWDU_ON_ISOBARIC_SFC + CNVWDU + isobaric_sfc + 3.0 + + + + 395 + CNVWDV_ON_ISOBARIC_SFC + CNVWDV + isobaric_sfc + 3.0 + + + + + 396 + SUNSD_ON_SURFACE + SUNSD + surface + 5.0 + + + + 397 + FLDCP_ON_SURFACE + FLDCP + NCEP + surface + 4.0 + + + + + 398 + ICAHT_ON_MAX_WIND + ICAHT + max_wind + 6.0 + + + + 399 + ICAHT_ON_TROPOPAUSE + ICAHT + tropopause + 6.0 + + + + 400 + RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR + RETOP + entire_atmos_single_lyr + -6.0 + + + + + + 401 + AVE_VBDSF_ON_SURFACE + averaged surface visible beam downward solar flux + tmpl4_8 + VBDSF + AVE + surface + 3.0 + + + + 402 + AVE_VDDSF_ON_SURFACE + averaged surface visible diffuse downward solar flux + tmpl4_8 + VDDSF + AVE + surface + 3.0 + + + + 403 + AVE_NBDSF_ON_SURFACE + averaged surface near IR beam downward solar flux + tmpl4_8 + NBDSF + AVE + surface + 3.0 + + + + 404 + AVE_NDDSF_ON_SURFACE + averaged surface near IR beam downward solar flux + tmpl4_8 + NDDSF + AVE + surface + 3.0 + + + + 405 + AVE_SRWEQ_ON_SURFACE + averaged snow rate on surface + tmpl4_8 + SRWEQ + AVE + surface + 3.0 + + + + 406 + GSD_PRES_ON_CLOUD_TOP + GSD_pressure on cloud top + PRES + cloud_top + 6.0 + + + + 407 + GSD_INST_CRAIN_ON_SURFACE + GSD_instant precipitation type on surface + CRAIN + surface + 1.0 + + + + 408 + GSD_HGT_ON_CLOUD_CEILING + GSD_geopotential height on cloud ceiling + HGT + cloud_ceilng + 6.0 + + + + 409 + GSD_HGT_ON_CLOUD_TOP + GSD_geopotential height on cloud top + HGT + cloud_top + 6.0 + + + + 410 + GSD_VIS_ON_SURFACE + GSD_visibility on surface + VIS + surface + 6.0 + + + + + 411 + WMIXE_ON_SPEC_HGT_LVL_ABOVE_GRND + instant wind mixing energy on Specified Height Level Above Ground + WMIXE + spec_hgt_lvl_above_grnd + -4.0 + + + + 412 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + U-Component of Wind on Specified Height Level Above Ground + UGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + 413 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + V-Component of Wind on Specified Height Level Above Ground + VGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + + 415 + GRLE_ON_HYBRID_LVL + Graupel mixing ration on hybrid level + GRLE + hybrid_lvl + 3.0 + + + + 416 + GRLE_ON_ISOBARIC_SFC + Graupel mixing ration on isobaric surface + GRLE + isobaric_sfc + 3.0 + + + + 417 + CACM_APCP_ON_SURFACE + tmpl4_8 + APCP + ACM + surface + -4.0 + + + + 418 + CACM_ACPCP_ON_SURFACE + tmpl4_8 + ACPCP + ACM + surface + -4.0 + + + + 419 + CACM_NCPCP_ON_SURFACE + tmpl4_8 + NCPCP + ACM + surface + -4.0 + + + + 420 + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + maximum Updraft Helicity on Specified Height Level Above Ground + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + 421 + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + maximum Updraft Helicity on Specified Height Level Above Ground + tmpl4_8 + MAXREF + MAX + spec_hgt_lvl_above_grnd + 1000. + -3.0 + + + + 422 + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + maximum wind speed on 10 meter Above Ground + tmpl4_8 + WIND + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 423 + MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa + hourly maximum Upward Vertical Velocity between 100-1000hpa + tmpl4_8 + MAXUVV + NCEP + MAX + isobaric_sfc + 10000. + isobaric_sfc + 100000. + -3.0 + + + + 424 + MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa + hourly maximum Downward Vertical Velocity between 100-1000hpa + tmpl4_8 + MAXDVV + MAX + NCEP + isobaric_sfc + 10000. + isobaric_sfc + 100000. + -3.0 + + + + + 425 + AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 + average Vertical velocity between sigma lvl 0.5 and 0.8 + tmpl4_8 + DZDT + AVE + sigma_lvl + 2 + 50. + sigma_lvl + 2 + 80. + 3.0 + + + + 426 + HGT_ON_SPEC_HGT_LVL_ABOVE_GRND + Echo Tops in KFT (highest HGTin meters of the 18-dBZ reflectivity on a model level) + HGT + spec_hgt_lvl_above_grnd + 4.0 + + + + 427 + UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + Updraft Helicity on Specified Height Level Above Ground + UPHL + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + + 428 + TCOLG_ON_ENTIRE_ATMOS + TCOLG + entire_atmos_single_lyr + 5.0 + + + + 429 + MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR + Hourly Maximum of Column Vertical Integrated Graupel on entire atmosphere + tmpl4_8 + MAXVIG + MAX + entire_atmos_single_lyr + 3.0 + + + + 430 + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + Vertical u-component shear between 0 to 1000m Above Ground + VUCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 431 + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + Vertical v-component shear between 0 to 1000m Above Ground + VVCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 432 + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + Vertical u-component shear between 0 to 6000m Above Ground + VUCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 6000. + 3.0 + + + + 433 + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + Vertical v-component shear between 0 to 6000m Above Ground + VVCSH + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 6000. + 3.0 + + + + + 434 + BUCKET_APCP_ON_SURFACE + bucket Total precipitation on surface + tmpl4_8 + APCP + ACM + surface + 4.0 + + + + 435 + BUCKET_ACPCP_ON_SURFACE + bucket Convective precipitation on surface + tmpl4_8 + ACPCP + ACM + surface + 4.0 + + + + 436 + BUCKET_NCPCP_ON_SURFACE + bucket Large scale precipitation on surface + tmpl4_8 + NCPCP + ACM + surface + 4.0 + + + + 437 + BUCKET_WEASD_ON_SURFACE + bucket snow precipitation on surface + tmpl4_8 + WEASD + ACM + surface + 4.0 + + + + + + + 443 + HGT_ON_EQUIL_LVL + geopotential height on Equilibrium level + HGT + equil_lvl + 6.0 + + + + 444 + LTNG_ON_SURFACE + lightning + LTNG + NCEP + surface + 1.0 + + + + + 445 + MAPS_PRMSL_ON_MEAN_SEA_LVL + MSLMA + NCEP + mean_sea_lvl + 4.0 + + + + 446 + SBT112_ON_TOP_OF_ATMOS + SBT112 + top_of_atmos + 4.0 + + + + 447 + SBT113_ON_TOP_OF_ATMOS + SBT113 + top_of_atmos + 4.0 + + + + 448 + SBT114_ON_TOP_OF_ATMOS + SBT114 + top_of_atmos + 4.0 + + + + 449 + SBT115_ON_TOP_OF_ATMOS + SBT115 + top_of_atmos + 4.0 + + + + + 450 + ICIP_ON_ISOBARIC_SFC + ICIP + isobaric_sfc + 3.0 + + + + 451 + SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + SPFH + spec_alt_above_mean_sea_lvl + 5.0 + + + + 452 + VTCAPE_ON_SURFACE + Virtual Temperature Based Convective Available Potential Energy on surface + CAPE + surface + 4.0 + + + + 453 + VTCIN_ON_SURFACE + Virtual Temperature Based Convective Inhibition on surface + CIN + surface + 4.0 + + + + + 454 + VRATE_ON_PLANETARY_BOUND_LYR + Ventilation Rate on planetary boundary layer + VRATE + NCEP + planetary_bound_lyr + 3.0 + + + + 455 + HINDEX_ON_SURFACE + Haines Index on surface + HINDEX + surface + 3.0 + + + + 456 + NON_NADIR_SBT122_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 2 on top of atmosphere + SBT122 + top_of_atmos + 4.0 + + + + 457 + NON_NADIR_SBT123_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 3 on top of atmosphere + SBT123 + top_of_atmos + 4.0 + + + + 458 + NON_NADIR_SBT124_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 4 on top of atmosphere + SBT124 + top_of_atmos + 4.0 + + + + 459 + NON_NADIR_SBT126_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES12, Channel 6 on top of atmosphere + SBT126 + top_of_atmos + 4.0 + + + + 460 + SBT112_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 2 on top of atmosphere + SBT112 + top_of_atmos + 4.0 + + + + 461 + SBT113_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere + SBT113 + top_of_atmos + 4.0 + + + + 462 + SBT114_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere + SBT114 + top_of_atmos + 4.0 + + + + 463 + SBT115_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for GOES11, Channel 5 on top of atmosphere + SBT115 + top_of_atmos + 4.0 + + + + + 464 + EDPARM_ON_ISOBARIC_SFC + EDPARM + isobaric_sfc + 3.0 + + + + 465 + CAT_ON_ISOBARIC_SFC + CATEDR + isobaric_sfc + 3.0 + + + + 466 + MWTURB_ON_ISOBARIC_SFC + MWTURB + isobaric_sfc + 3.0 + + + + + 467 + EDPARM_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + EDPARM + spec_alt_above_mean_sea_lvl + 3.0 + + + + 468 + CAT_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + CATEDR + spec_alt_above_mean_sea_lvl + 3.0 + + + + 469 + MWTURB_GTG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + MWTURB + spec_alt_above_mean_sea_lvl + 3.0 + + + + + 470 + EDPARM_ON_HYBRID_LVL + EDPARM + hybrid_lvl + 3.0 + + + + 471 + CAT_ON_HYBRID_LVL + CATEDR + hybrid_lvl + 3.0 + + + + 472 + MWTURB_ON_HYBRID_LVL + MWTURB + hybrid_lvl + 3.0 + + + + + 473 + CBHE_ON_ENTIRE_ATMOS + CBHE + entire_atmos + 3.0 + + + + 474 + ICAHT_ON_CB_BASE + ICAHT + cb_base + 6.0 + + + + 475 + ICAHT_ON_CB_TOP + ICAHT + cb_top + 6.0 + + + + + 476 + EDPARM_GTG_ON_ICAO_STD_SFC + EDPARM + isobaric_sfc + 3.0 + + + + 477 + CAT_GTG_ON_ICAO_STD_SFC + CATEDR + isobaric_sfc + 3.0 + + + + 478 + MWTURB_GTG_ON_ICAO_STD_SFC + MWTURB + isobaric_sfc + 3.0 + + + + + 479 + ICESEV_ON_ICAO_STD_SFC + Icing severity on standard atmospheric isobaric levels + ICESEV + isobaric_sfc + 1.0 + + + + 480 + ICESEV_ON_ISOBARIC_SFC + ICESEV + isobaric_sfc + 1.0 + + + + 481 + ICIP_ON_ICAO_STD_SFC + Total Icing Potential Diagnostic on standard atmospheric isobaric sfc + ICIP + isobaric_sfc + 3.0 + + + + 482 + PRES_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + pressure between Specific Altitude Above Mean Sea Level + PRES + spec_alt_above_mean_sea_lvl + spec_alt_above_mean_sea_lvl + 3.0 + + + + + 483 + AMSRE9_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 484 + AMSRE10_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 485 + AMSRE11_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 486 + AMSRE12_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 487 + GSD_EXP_CEILING + CEIL + cloud_ceilng + 3.0 + + + + 488 + TMITB6_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 6 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 489 + TMITB7_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 7 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 490 + TMITB8_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 8 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 491 + TMITB9_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for TMI TRMM, Channel 9 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 492 + SSMITB4_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 4 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 493 + SSMITB5_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 5 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 494 + SSMITB6_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 6 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 495 + SSMITB7_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMI TB, Channel 7 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 496 + SSMISTB15_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 15 on top of atmosphere + AMSRE9 + top_of_atmos + 4.0 + + + + 497 + SSMISTB16_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 16 on top of atmosphere + AMSRE10 + top_of_atmos + 4.0 + + + + 498 + SSMISTB17_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 17 on top of atmosphere + AMSRE11 + top_of_atmos + 4.0 + + + + 499 + SSMISTB18_ON_TOP_OF_ATMOS + Simulated Brightness Temperature for SSMIS TB, Channel 18 on top of atmosphere + AMSRE12 + top_of_atmos + 4.0 + + + + 500 + AVE_SNOWC_ON_SURFACE + tmpl4_8 + SNOWC + AVE + surface + 3.0 + + + + 501 + AVE_PRES_ON_SURFACE + tmpl4_8 + PRES + AVE + surface + 5.0 + + + + 502 + AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + tmpl4_8 + TMP + AVE + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 503 + AVE_AKHS_ON_SURFACE + tmpl4_8 + AKHS + AVE + surface + 3.0 + + + + 504 + AVE_AKMS_ON_SURFACE + tmpl4_8 + AKMS + AVE + surface + 3.0 + + + + 505 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + TMP + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 506 + MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + U Component of Hourly Maximum 10m Wind Speed (m/s) + tmpl4_8 + MAXUW + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 507 + MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + V Component of Hourly Maximum 10m Wind Speed (m/s) + tmpl4_8 + MAXVW + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 508 + MAX_PRATE_ON_SURFACE + Maximum Precipitation Rate on surface + tmpl4_8 + PRATE + MAX + surface + 6.0 + + + + 510 + MAX_QMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + QMAX + MAX + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 511 + MIN_QMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + tmpl4_8 + QMIN + MIN + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 512 + ACOND_ON_SURFACE + ACOND + surface + 4.0 + + + + 513 + AVE_EVCW_ON_SURFACE + tmpl4_8 + EVCW + AVE + surface + 3.0 + + + + 514 + AVE_EVBS_ON_SURFACE + tmpl4_8 + EVBS + AVE + surface + 3.0 + + + + 515 + AVE_TRANS_ON_SURFACE + tmpl4_8 + TRANS + AVE + surface + 3.0 + + + + 516 + AVE_SBSNO_ON_SURFACE + tmpl4_8 + SBSNO + AVE + surface + 3.0 + + + + 517 + AVE_PEVPR_ON_SURFACE + tmpl4_8 + PEVPR + AVE + surface + 6.0 + + + + + 518 + HGT_ON_ICAO_STD_SFC + HGT + isobaric_sfc + 6.0 + + + + 519 + TMP_ON_ICAO_STD_SFC + TMP + isobaric_sfc + 3.0 + + + + 520 + UGRD_ON_ICAO_STD_SFC + UGRD + isobaric_sfc + 4.0 + + + + 521 + VGRD_ON_ICAO_STD_SFC + VGRD + isobaric_sfc + 4.0 + + + + 526 + BUCKET1_APCP_ON_SURFACE + bucket Total precipitation on surface + tmpl4_8 + APCP + ACM + surface + 4.0 + + + + 527 + BUCKET1_ACPCP_ON_SURFACE + bucket Convective precipitation on surface + tmpl4_8 + ACPCP + ACM + surface + 4.0 + + + + 528 + BUCKET1_NCPCP_ON_SURFACE + bucket Large scale precipitation on surface + tmpl4_8 + NCPCP + ACM + surface + 4.0 + + + + 529 + BUCKET1_WEASD_ON_SURFACE + bucket snow precipitation on surface + tmpl4_8 + WEASD + ACM + surface + 4.0 + + + + 530 + BUCKET1_GRAUPEL_ON_SURFACE + bucket graupel precipitation on surface + tmpl4_8 + FROZR + NCEP + ACM + surface + 4.0 + + + + 531 + SBTA187_ON_TOP_OF_ATMOS + SBTA187 + top_of_atmos + 4.0 + + + + 532 + SBTA188_ON_TOP_OF_ATMOS + SBTA188 + top_of_atmos + 4.0 + + + + 533 + SBTA189_ON_TOP_OF_ATMOS + SBTA189 + top_of_atmos + 4.0 + + + + 534 + SBTA1810_ON_TOP_OF_ATMOS + SBTA1810 + top_of_atmos + 4.0 + + + + 535 + SBTA1811_ON_TOP_OF_ATMOS + SBTA1811 + top_of_atmos + 4.0 + + + + 536 + SBTA1812_ON_TOP_OF_ATMOS + SBTA1812 + top_of_atmos + 4.0 + + + + 537 + SBTA1813_ON_TOP_OF_ATMOS + SBTA1813 + top_of_atmos + 4.0 + + + + 538 + SBTA1814_ON_TOP_OF_ATMOS + SBTA1814 + top_of_atmos + 4.0 + + + + 539 + SBTA1815_ON_TOP_OF_ATMOS + SBTA1815 + top_of_atmos + 4.0 + + + + 540 + SBTA1816_ON_TOP_OF_ATMOS + SBTA1816 + top_of_atmos + 4.0 + + + + 546 + GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + POT + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + + 547 + GSD_DEPR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DEPR + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 548 + GSD_EPOT_ON_SURFACE + EPOT + surface + 3.0 + + + + 549 + FDNSSTMP_ON_SURFACE + FDNSSTMP + surface + 4.0 + + + + 551 + CSNOW_ON_SURFACE + Categorical snow on surface + CSNOW + surface + 1.0 + + + + 552 + CICEP_ON_SURFACE + Categorical ice pellets on surface + CICEP + surface + 1.0 + + + + 553 + CFRZR_ON_SURFACE + Categorical freezing rain on surface + CFRZR + surface + 1.0 + + + + 555 + AVE_CSNOW_ON_SURFACE + average Categorical snow on surface + tmpl4_8 + CSNOW + AVE + surface + 1.0 + + + + 556 + AVE_CICEP_ON_SURFACE + average Categorical ice pellets on surface + tmpl4_8 + CICEP + AVE + surface + 1.0 + + + + 557 + AVE_CFRZR_ON_SURFACE + average Categorical freezing rain on surface + tmpl4_8 + CFRZR + AVE + surface + 1.0 + + + + 559 + GSD_CSNOW_ON_SURFACE + GSD_Categorical snow on surface + CSNOW + surface + 1.0 + + + + 560 + GSD_CICEP_ON_SURFACE + GSD_Categorical ice pellets on surface + CICEP + surface + 1.0 + + + + 561 + GSD_CFRZR_ON_SURFACE + GSD_Categorical freezing rain on surface + CFRZR + surface + 1.0 + + + + 563 + GSD_AVE_CSNOW_ON_SURFACE + GSD_average Categorical snow on surface + tmpl4_8 + CSNOW + AVE + surface + 1.0 + + + + 564 + GSD_AVE_CICEP_ON_SURFACE + GSD_average Categorical ice pellets on surface + tmpl4_8 + CICEP + AVE + surface + 1.0 + + + + 565 + GSD_AVE_CFRZR_ON_SURFACE + GSD_average Categorical freezing rain on surface + tmpl4_8 + CFRZR + AVE + surface + 1.0 + + + + 566 + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 567 + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 568 + GFS_PRES_ON_MEAN_SEA_LVL + PRES + mean_sea_lvl + 6.0 + + + + 569 + GFS_AVE_TCDC_ON_CONVECTIVE_CLOUD_LYR + tmpl4_8 + TCDC + AVE + convective_cloud_lyr + 3.0 + + + + 570 + GFS_TCDC_ON_CONVECTIVE_CLOUD_LYR + TCDC + convective_cloud_lyr + 3.0 + + + + 571 + GFS_TMP_ON_DEPTH_BEL_LAND_SFC_3m + TMP + depth_bel_land_sfc + 3. + 3.0 + + + + 572 + GFS_LFTX_ON_SURFACE + LFTX + surface + 3.0 + + + + 573 + GFS_4LFTX_ON_SURFACE + 4LFTX + surface + 3.0 + + + + 574 + GFS_TMP_ON_DEPTH_BEL_LAND_SFC + TMP + depth_bel_land_sfc + depth_bel_land_sfc + 4.0 + + + + 575 + CWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + CWAT + entire_atmos_single_lyr + 3.0 + + + + 576 + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + UGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + 577 + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + VGRD + spec_hgt_lvl_above_grnd + -4.0 + + + + 578 + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + SPFH + spec_hgt_lvl_above_grnd + 3.0 + + + + 579 + PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + PRES + spec_hgt_lvl_above_grnd + 3.0 + + + + 580 + ICI_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL_FDHGT + ICI + spec_alt_above_mean_sea_lvl + 3.0 + + + + 581 + VIL_ON_ENTIRE_ATMOS + entire atmosphere Vertically Integrated Liquid (kg/m-2) + VIL + entire_atmos_single_lyr + 4.0 + + + + 582 + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 583 + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 584 + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + CAPE + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + 4.0 + + + + 585 + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + CIN + spec_pres_above_grnd + 0. + spec_pres_above_grnd + 0. + + + + 586 + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + TMP + spec_hgt_lvl_above_grnd + 3.0 + + + + 587 + ICI_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + ICI + spec_hgt_lvl_above_grnd + 3.0 + + + + 588 + ICEG_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL + ICEG + spec_alt_above_mean_sea_lvl + 4.0 + + + + + 600 + AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + 601 + DUST_AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + 602 + SEASALT_AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + sea_salt_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + 603 + SULFATE_AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + sulphate_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + 604 + ORGANIC_CARBON_AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + particulate_org_matter_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + 605 + BLACK_CARBON_AER_OPT_GFS_at550 + tmpl4_48 + AOTK + entire_atmos + black_carbon_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 555 + 9.0 + + + + + 606 + AECOEF_ON_HYBRID_LVL + AECOFF + hybrid_lvl + 11.0 + + + + 607 + ASYSFK_ON_HYBRID_LVL + ASYSFK + hybrid_lvl + 11.0 + + + + 608 + SSALBK_ON_HYBRID_LVL + SSALBK + hybrid_lvl + 11.0 + + + + 609 + AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 610 + DUST_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 611 + SEASALT_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + sea_salt_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 612 + SULFATE_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + sulphate_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 613 + ORGANIC_CARBON_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + particulate_org_matter_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 614 + BLACK_CARBON_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + black_carbon_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 615 + NITRATE_AER_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + nitrate_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 550 + 9 + 550 + 9.0 + + + + 616 + BC_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + black_carbon_dry + smaller_than_first_limit + 10 + 236 + 9.0 + + + + 617 + OC_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + particulate_org_matter_dry + smaller_than_first_limit + 10 + 424 + 9.0 + + + + 618 + SULF_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + sulphate_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 619 + PM10_SFC_MASS_CON + tmpl4_48 + PMTC + surface + total_aerosol + smaller_than_first_limit + 6 + 10 + 9.0 + + + + 620 + PM25_SFC_MASS_CON + tmpl4_48 + PMTF + surface + total_aerosol + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 621 + PM10_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 10 + 9.0 + + + + 622 + PM25_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + total_aerosol + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 623 + AER_OPT_DEP_at340 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 338 + 9 + 342 + 9.0 + + + + 624 + AER_OPT_DEP_at440 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 430 + 9 + 450 + 9.0 + + + + 625 + AER_OPT_DEP_at660 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 620 + 9 + 670 + 9.0 + + + + 626 + AER_OPT_DEP_at860 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 841 + 9 + 876 + 9.0 + + + + 627 + AER_OPT_DEP_at1630 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 1628 + 9 + 1652 + 9.0 + + + + 628 + AER_OPT_DEP_at11100 + tmpl4_48 + AOTK + entire_atmos + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 11000 + 9 + 11200 + 9.0 + + + + 629 + DUST1_ON_HYBRID_LVL + tmpl4_48 + PMTF + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 2 + 7 + 20 + 11.0 + + + + 630 + DUST2_ON_HYBRID_LVL + tmpl4_48 + PMTF + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 20 + 7 + 36 + 11.0 + + + + 631 + DUST3_ON_HYBRID_LVL + tmpl4_48 + PMTC + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 36 + 7 + 60 + 11.0 + + + + 632 + DUST4_ON_HYBRID_LVL + tmpl4_48 + PMTC + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 60 + 7 + 120 + 11.0 + + + + 633 + DUST5_ON_HYBRID_LVL + tmpl4_48 + PMTC + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 120 + 7 + 200 + 11.0 + + + + 634 + SEASALT1_ON_HYBRID_LVL + tmpl4_48 + PMTF + sea_salt_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 8 + 6 + 8 + 20 + 11.0 + + + + 635 + SEASALT2_ON_HYBRID_LVL + tmpl4_48 + PMTF + sea_salt_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 2 + 7 + 10 + 11.0 + + + + 636 + SEASALT3_ON_HYBRID_LVL + tmpl4_48 + PMTC + sea_salt_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 10 + 7 + 30 + 11.0 + + + + 637 + SEASALT4_ON_HYBRID_LVL + tmpl4_48 + PMTC + sea_salt_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 30 + 7 + 100 + 11.0 + + + + 638 + SEASALT5_ON_HYBRID_LVL + tmpl4_48 + PMTC + sea_salt_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 100 + 7 + 200 + 11.0 + + + + 639 + SO4_ON_HYBRID_LVL + tmpl4_48 + PMTF + sulphate_dry + hybrid_lvl + equall_to_first_limit + 9 + 139 + 11.0 + + + + 640 + OCPHOBIC_ON_HYBRID_LVL + tmpl4_48 + PMTF + particulate_org_matter_hydrophobic + hybrid_lvl + equall_to_first_limit + 10 + 424 + 11.0 + + + + 641 + OCPHILIC_ON_HYBRID_LVL + tmpl4_48 + PMTF + particulate_org_matter_hydrophilic + hybrid_lvl + equall_to_first_limit + 10 + 424 + 11.0 + + + + 642 + BCPHOBIC_ON_HYBRID_LVL + tmpl4_48 + PMTF + black_carbon_hydrophobic + hybrid_lvl + equall_to_first_limit + 10 + 236 + 11.0 + + + + 643 + BCPHILIC_ON_HYBRID_LVL + tmpl4_48 + PMTF + black_carbon_hydrophilic + hybrid_lvl + equall_to_first_limit + 10 + 236 + 11.0 + + + + 644 + AIR_DENSITY_ON_HYBRID_LVL + DEN + hybrid_lvl + 4.0 + + + + 645 + LAYER_THICKNESS_ON_HYBRID_LVL + THICK + hybrid_lvl + 4.0 + + + + 646 + DUST_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + dust_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 647 + SEAS_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + sea_salt_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 648 + SINGLE_SCAT_ALBD_at340 + tmpl4_48 + SSALBK + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 338 + 9 + 342 + entire_atmos + 9.0 + + + + 649 + AER_ASYM_FACTOR_at340 + tmpl4_48 + ASYSFK + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 338 + 9 + 342 + entire_atmos + 9.0 + + + + 650 + AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 651 + DUST_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + dust_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 652 + SEASALT_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + sea_salt_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 653 + SULFATE_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + sulphate_dry + smaller_than_first_limit + 8 + 70 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 654 + ORGANIC_CARBON_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 655 + BLACK_CARBON_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + black_carbon_dry + smaller_than_first_limit + 8 + 70 + between_first_second_limit + 9 + 545 + 9 + 565 + entire_atmos + 9.0 + + + + 656 + ANGSTROM_EXP_at440_860 + tmpl4_48 + ANGSTEXP + total_aerosol + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 430 + 9 + 876 + entire_atmos + 9.0 + + + + 657 + NO3_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + nitrate_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 658 + NH4_COL_MASS_DEN + tmpl4_48 + COLMD + entire_atmos + ammonium_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 659 + DUST_EMISSION_FLUX + tmpl4_48 + AEMFLX + surface + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 660 + DUST_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + entire_atmos + dust_dry + smaller_than_first_limit + 6 + 20 + 9.0 + + + + 661 + DUST DRY DEPOSITION + tmpl4_48 + DDMFLX + dust_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 662 + DUST WET DEPOSITION + tmpl4_48 + WLSMFLX + dust_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 663 + SEASALT_EMISSION_FLUX + tmpl4_48 + AEMFLX + sea_salt_dry + smaller_than_first_limit + 6 + 20 + surface + 9.0 + + + + 664 + SEASALT_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + sea_salt_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 665 + SEASALT_DRY_DEPOSITION_FLUX + tmpl4_48 + DDMFLX + sea_salt_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 666 + SEASALT_WET_DEPOSITION_FLUX + tmpl4_48 + WLSMFLX + sea_salt_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 667 + BLACK_CARBON_EMISSION_FLUX + tmpl4_48 + AEMFLX + black_carbon_dry + smaller_than_first_limit + 10 + 236 + surface + 9.0 + + + + 668 + BLACK_CARBON_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + black_carbon_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 669 + BLACK_CARBON_DRY_DEPOSITION_FLUX + tmpl4_48 + DDMFLX + black_carbon_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 670 + BLACK_CARBON_WET_DEPOSITION_FLUX + tmpl4_48 + WLSMFLX + black_carbon_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 671 + ORGANIC_CARBON_EMISSION_FLUX + tmpl4_48 + AEMFLX + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + surface + 9.0 + + + + 672 + ORGANIC_CARBON_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 673 + ORGANIC_CARBON_DRY_DEPOSITION_FLUX + tmpl4_48 + DDMFLX + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 674 + ORGANIC_CARBON_WET_DEPOSITION_FLUX + tmpl4_48 + WLSMFLX + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 675 + SULFATE_EMISSION_FLUX + tmpl4_48 + AEMFLX + sulphate_dry + smaller_than_first_limit + 8 + 70 + surface + 9.0 + + + + 676 + SULFATE_SEDIMENTATION_FLUX + tmpl4_48 + SEDMFLX + sulphate_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 677 + SULFATE_DRY_DEPOSITION_FLUX + tmpl4_48 + DDMFLX + sulphate_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 678 + SULFATE_WET_DEPOSITION_FLUX + tmpl4_48 + WLSMFLX + sulphate_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 679 + DUST_SCAVENGING_FLUX + tmpl4_48 + WDCPMFLX + dust_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 680 + SEASALT_SCAVENGING_FLUX + tmpl4_48 + WDCPMFLX + sea_salt_dry + smaller_than_first_limit + 6 + 20 + entire_atmos + 9.0 + + + + 681 + BLACK_CARBON_SCAVENGING_FLUX + tmpl4_48 + WDCPMFLX + black_carbon_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 682 + ORGANIC_CARBON_SCAVENGING_FLUX + tmpl4_48 + WDCPMFLX + particulate_org_matter_dry + smaller_than_first_limit + 8 + 70 + entire_atmos + 9.0 + + + + 683 + SS_CR_AER_SFC_MASS_CON + AVE + tmpl4_48 + MASSDEN + sea_salt_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 684 + SEAS25_SFC_MASS_CON + tmpl4_48 + PMTF + surface + sea_salt_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 685 + DUST10_SFC_MASS_CON + AVE + tmpl4_48 + PMTC + surface + dust_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 686 + DUST25_SFC_MASS_CON + tmpl4_48 + PMTF + surface + dust_dry + smaller_than_first_limit + 7 + 25 + 9.0 + + + + 687 + NITRATE_AER_SCAT_OPT_DEP_at550 + tmpl4_48 + SCTAOTK + entire_atmos + nitrate_dry + smaller_than_first_limit + smaller_than_first_limit + 8 + 70 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 688 + NO3_ON_HYBRID_LVL + tmpl4_48 + PMTF + nitrate_dry + hybrid_lvl + equall_to_first_limit + 9 + 139 + 11.0 + + + + 689 + NH4_ON_HYBRID_LVL + tmpl4_48 + PMTF + ammonium_dry + hybrid_lvl + equall_to_first_limit + 9 + 139 + 11.0 + + + + 689 + SU_AER_SFC_MASS_CON + AVE + tmpl4_48 + MASSDEN + sulphate_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 690 + INST_SU_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + sulphate_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 691 + INST_OC_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + particulate_org_matter_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + + 692 + INST_BC_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + black_carbon_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 693 + INST_DU_CR_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + dust_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 694 + INST_DU_FN_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + dust_dry + smaller_than_first_limit + 7 + 25 + surface + 9.0 + + + + 695 + INST_SS_CR_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + sea_salt_dry + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 696 + INST_SS_FN_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + sea_salt_dry + smaller_than_first_limit + 7 + 25 + surface + 9.0 + + + + 697 + INST_CR_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + total_aerosol + smaller_than_first_limit + 6 + 10 + surface + 9.0 + + + + 698 + INST_FN_AER_SFC_MASS_CON + tmpl4_48 + MASSDEN + total_aerosol + smaller_than_first_limit + 7 + 25 + surface + 9.0 + + + + 699 + MIE_OPT_DEP_at550 + tmpl4_48 + AOTK + entire_atmos + mercury_dry + smaller_than_first_limit + 6 + 20 + between_first_second_limit + 9 + 545 + 9 + 565 + 9.0 + + + + 700 + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 6000. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 701 + GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km + UPHL + spec_hgt_lvl_above_grnd + 6000. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + + 702 + GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND + tmpl4_8 + LTNGSD + MAX + spec_hgt_lvl_above_grnd + 1. + 3.0 + + + + 703 + GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND + tmpl4_8 + LTNGSD + MAX + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 704 + GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS + tmpl4_8 + LTNG + NCEP + MAX + entire_atmos + 3.0 + + + + 705 + GSD_NCI_LTG_ON_ENTIRE_ATMOS + GSD_Convective Initiation Lightning + NCILTG + entire_atmos + 3.0 + + + + 706 + GSD_NCA_LTG_ON_ENTIRE_ATMOS + GSD_Convective Activity Lightning + NCALTG + entire_atmos + 3.0 + + + + 707 + GSD_NCI_WQ_ON_ENTIRE_ATMOS + GSD_Convective Initiation Vertical Hydrometeor Flux + NCIWQ + entire_atmos + 3.0 + + + + 708 + GSD_NCA_WQ_ON_ENTIRE_ATMOS + GSD_Convective Activity Vertical Hydrometeor Flux + NCAWQ + entire_atmos + 3.0 + + + + 709 + GSD_NCI_REFL_ON_ENTIRE_ATMOS + GSD_Convective Initiation Reflectivity + TSEC + entire_atmos + 3.0 + + + + 710 + GSD_NCA_REFL_ON_ENTIRE_ATMOS + GSD_Convective Activity Reflectivity + TSEC + entire_atmos + 6. + 3.0 + + + + 711 + GSD_EXP_CEILING_2 + CEIL + cloud_base + 3.0 + + + + 712 + AER_OPT_AQM_at550 + tmpl4_48 + AOTK + entire_atmos_single_lyr + total_aerosol + smaller_than_first_limit + 0 + 0 + 9.0 + + + + 719 + INST_USWRF_ON_TOP_OF_ATMOS + USWRF + top_of_atmos + 4.0 + + + + 725 + GSD_ACM_SNOD_ON_SURFACE + tmpl4_8 + ASNOW + ACM + surface + 3.0 + + + + 726 + VEG_MIN_ON_SURFACE + VEGMIN + NCEP + surface + 3.0 + + + + 727 + GSD_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + UPHL + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + 3.0 + + + + 728 + GSD_HAILCAST_HAIL_DIAMETER + tmpl4_8 + HAIL + MAX + surface + 4.0 + + + + 729 + VEG_MAX_ON_SURFACE + VEGMAX + NCEP + surface + 3.0 + + + + 730 + AVE_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + tmpl4_8 + WIND + AVE + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 731 + AVE_UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + tmpl4_8 + UGRD + AVE + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 732 + AVE_VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + tmpl4_8 + VGRD + AVE + spec_hgt_lvl_above_grnd + 10. + 4.0 + + + + 733 + GSD_AVE_DSWRF_ON_SURFACE + tmpl4_8 + DSWRF + AVE + surface + 3.0 + + + + 734 + GSD_AVE_SWDDNI_ON_SURFACE + tmpl4_8 + VBDSF + NCEP + AVE + surface + 3.0 + + + + 735 + AOD_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_0 + AOTK + entire_atmos_single_lyr + 5.0 + + + + 736 + SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_48 + COLMD + particulate_org_matter_dry + entire_atmos_single_lyr + smaller_than_first_limit + 7 + 25 + 5.0 + + + + 737 + SMOKE_ON_HYBRID_LVL + tmpl4_48 + MASSDEN + particulate_org_matter_dry + hybrid_lvl + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 738 + SMOKE_ON_ISOBARIC_SFC + tmpl4_48 + MASSDEN + particulate_org_matter_dry + isobaric_sfc + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 739 + SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_48 + MASSDEN + particulate_org_matter_dry + spec_hgt_lvl_above_grnd + smaller_than_first_limit + 7 + 25 + 8. + 6.0 + + + + 740 + MEAN_FIRE_RDIATV_PWR + tmpl4_0 + CFNSF + NCEP + surface + 4.0 + + + + 741 + DUST_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_48 + COLMD + dust_dry + entire_atmos_single_lyr + smaller_than_first_limit + 7 + 25 + 5.0 + + + + 742 + DUST_ON_HYBRID_LVL + tmpl4_48 + MASSDEN + dust_dry + hybrid_lvl + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 743 + DUST_ON_ISOBARIC_SFC + tmpl4_48 + MASSDEN + dust_dry + isobaric_sfc + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 744 + DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_48 + MASSDEN + dust_dry + spec_hgt_lvl_above_grnd + smaller_than_first_limit + 7 + 25 + 8. + 6.0 + + + + 745 + BIOMASS_BURNING_EMISSIONS + tmpl4_48 + AEMFLX + particulate_org_matter_dry + surface + 5.0 + + + + 746 + ACM_GRAUPEL_ON_SURFACE + tmpl4_8 + FROZR + NCEP + ACM + surface + 4.0 + + + + 747 + GSD_NCCD_ON_HYBRID_LVL + Number concentration for cloud water drops on hybrid level + NCONCD + hybrid_lvl + 3.0 + + + + 748 + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + REFD + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 749 + GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS + RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER + RH_PWAT + entire_atmos + 3.0 + + + + 750 + GSD_WV_MIXR_ON_HYBRID_LVL + MIXR + hybrid_lvl + 3.0 + + + + 751 + GSD_VPTMP_ON_HYBRID_LVL + VPTMP + hybrid_lvl + 3.0 + + + + 752 + GSD_NCIP_ON_HYBRID_LVL + Number concentration for ice particles on hybrid level + NCIP + hybrid_lvl + 3.0 + + + + 753 + GSD_PRES_ON_0C_ISOTHERM + GSD_pressure on Level of 0 deg (C) isotherm + PRES + 0C_isotherm + 3.0 + + + + 754 + GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN + hybrid_lvl + 3.0 + + + + 755 + HWP_ON_SURFACE + Hourly Wildfire Potential on surface + FWINX + surface + 5.0 + + + + 756 + GSD_PRES_ON_HGHST_TROP_FRZ_LVL + GSD_pressure on Highest tropospheric freezing level + PRES + hghst_trop_frz_lvl + 3.0 + + + + 757 + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km + REFD + spec_hgt_lvl_above_grnd + 4000. + 3.0 + + + + 758 + GSD_HGT_ON_CONVECTIVE_CLOUD_TOP_LVL + HGT + convective_cloud_top_lvl + 4.0 + + + + 760 + GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + MIXR + spec_hgt_lvl_above_grnd + 2. + 3.0 + + + + 761 + GSD_INSIDE_SNOW_TMP_ON_SURFACE + TMP + SURFACE + 4.0 + + + + 762 + GSD_MIXR_ON_SURFACE + MIXR + SURFACE + 3.0 + + + + 763 + GSD_MIXR_ON_LFC + MIXR + level_free_convection + 3.0 + + + + 764 + CSDLF_ON_SURFACE + CSDLF + surface + 3.0 + + + + 765 + CSULF_ON_SURFACE + CSULF + surface + 3.0 + + + + 766 + GSD_NCWFA_ON_HYBRID_LVL + PMTF + NCEP + hybrid_lvl + 3.0 + + + + 767 + GSD_NCIFA_ON_HYBRID_LVL + PMTC + NCEP + hybrid_lvl + 3.0 + + + + 768 + GSD_ECHOTOP_ON_CLOUD_TOP + Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level) + RETOP + cloud_top + 3.0 + + + + 769 + GSD_VIL_ON_ENTIRE_ATMOS + VIL + entire_atmos + 4.0 + + + + 770 + GSD_RADARVIL_ON_ENTIRE_ATMOS + RADARVIL + entire_atmos + 3.0 + + + + 772 + INST_SWDDNI_ON_SURFACE + VBDSF + NCEP + surface + 4.0 + + + + 773 + INST_SWDDIF_ON_SURFACE + VDDSF + NCEP + surface + 4.0 + + + + 774 + FRACCC_ON_HYBRID_LVL + FRACCC + hybrid_lvl + 3.0 + + + + 775 + BUCKET_GRAUPEL_ON_SURFACE + bucket graupel precipitation on surface + tmpl4_8 + FROZR + NCEP + ACM + surface + 4.0 + + + + 776 + HGT_ON_HGHST_TROP_-10C_LVL + height on highest tropospheric -10C level + HGT + isothermal + 263. + 3.0 + + + + 777 + RH_ON_HGHST_TROP_-10C_LVL + relative humidity on highest tropospheric -10C level + RH + isothermal + 263. + 2.0 + + + + 778 + PRES_ON_HGHST_TROP_-10C_LVL + pressure on highest tropospheric -10C level + PRES + isothermal + 263. + 3.0 + + + + 779 + HGT_ON_HGHST_TROP_-20C_LVL + height on highest tropospheric -20C level + HGT + isothermal + 253. + 3.0 + + + + 780 + RH_ON_HGHST_TROP_-20C_LVL + relative humidity on highest tropospheric -20C level + RH + isothermal + 253. + 2.0 + + + + 781 + PRES_ON_HGHST_TROP_-20C_LVL + pressure on highest tropospheric -20C level + PRES + isothermal + 253. + 3.0 + + + + 782 + ACM_FRAIN_ON_SURFACE + tmpl4_8 + FRZR + NCEP + ACM + surface + 4.0 + + + + 783 + MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + maximum u wind on 10 meter Above Ground + tmpl4_8 + MAXUW + NCEP + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 784 + MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + maximum v wind on 10 meter Above Ground + tmpl4_8 + MAXVW + NCEP + MAX + spec_hgt_lvl_above_grnd + 10. + -4.0 + + + + 785 + MAX_REF_ON_ISOTHERMAL_-10C + maximum reflectivity on -10C suface + tmpl4_8 + REFD + MAX + isothermal + 263. + -3.0 + + + + 786 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 5000. + spec_hgt_lvl_above_grnd + 2000. + -3.0 + + + + 787 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_1-6km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 6000. + spec_hgt_lvl_above_grnd + 1000. + 3.0 + + + + 788 + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 2000. + spec_hgt_lvl_above_grnd + 0000. + 3.0 + + + + 789 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 2000. + spec_hgt_lvl_above_grnd + 0000. + 3.0 + + + + 790 + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + tmpl4_8 + MXUPHL + MAX + spec_hgt_lvl_above_grnd + 3000. + spec_hgt_lvl_above_grnd + 0000. + 3.0 + + + + 791 + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + tmpl4_8 + MNUPHL + MIN + spec_hgt_lvl_above_grnd + 3000. + spec_hgt_lvl_above_grnd + 0000. + -3.0 + + + + 792 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + tmpl4_8 + RELV + MAX + spec_hgt_lvl_above_grnd + 2000. + spec_hgt_lvl_above_grnd + 0000. + 5.0 + + + + 793 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + tmpl4_8 + RELV + MAX + spec_hgt_lvl_above_grnd + 1000. + spec_hgt_lvl_above_grnd + 0000. + 5.0 + + + + 794 + GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER + tmpl4_8 + HAIL + MAX + entire_atmos + 4.0 + + + + 795 + GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER + tmpl4_8 + HAIL + MAX + sigma_lvl + 1 + 1. + 4.0 + + + + 798 + GSD_PRES1_ON_CLOUD_BASE + PRES + cloud_base + 3.0 + + + + 799 + TCDC_ON_BOUND_LYR + TCDC + bound_lyr_cloud_lyr + 3.0 + + + + 808 + APTMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + APTMP + spec_hgt_lvl_above_grnd + 2. + 4.0 + + + + 825 + SSMS1715_ON_TOP_OF_ATMOS + SSMS1715 + top_of_atmos + 4.0 + + + + 826 + SSMS1716_ON_TOP_OF_ATMOS + SSMS1716 + top_of_atmos + 4.0 + + + + 827 + SSMS1717_ON_TOP_OF_ATMOS + SSMS1717 + top_of_atmos + 4.0 + + + + 828 + SSMS1718_ON_TOP_OF_ATMOS + SSMS1718 + top_of_atmos + 4.0 + + + + 890 + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 + Hourly max relative vorticity on hybrid level 1 + tmpl4_8 + RELV + MAX + hybrid_lvl + 1. + 5.0 + + + + 912 + REFD_ON_ISOTHERMAL + REFD + isothermal + 263. + -4.0 + + + + 913 + 1H_FFG_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 914 + ACM_FFG_EXCEEDANCE + tmpl4_8 + FFLDRO + ACM + surface + 4.0 + + + + 915 + 1H_2YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 916 + ACM_2YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 917 + 1H_5YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 918 + ACM_5YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 919 + 1H_10YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 920 + ACM_10YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 921 + 1H_100YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 922 + ACM_100YARI_EXCEEDANCE + tmpl4_8 + GWLOWS + ACM + surface + 4.0 + + + + 927 + SBTA167_ON_TOP_OF_ATMOS + SBTA167 + top_of_atmos + 4.0 + + + + 928 + SBTA168_ON_TOP_OF_ATMOS + SBTA168 + top_of_atmos + 4.0 + + + + 929 + SBTA169_ON_TOP_OF_ATMOS + SBTA169 + top_of_atmos + 4.0 + + + + 930 + SBTA1610_ON_TOP_OF_ATMOS + SBTA1610 + top_of_atmos + 4.0 + + + + 931 + SBTA1611_ON_TOP_OF_ATMOS + SBTA1611 + top_of_atmos + 4.0 + + + + 932 + SBTA1612_ON_TOP_OF_ATMOS + SBTA1612 + top_of_atmos + 4.0 + + + + 933 + SBTA1613_ON_TOP_OF_ATMOS + SBTA1613 + top_of_atmos + 4.0 + + + + 934 + SBTA1614_ON_TOP_OF_ATMOS + SBTA1614 + top_of_atmos + 4.0 + + + + 935 + SBTA1615_ON_TOP_OF_ATMOS + SBTA1615 + top_of_atmos + 4.0 + + + + 936 + SBTA1616_ON_TOP_OF_ATMOS + SBTA1616 + top_of_atmos + 4.0 + + + + 937 + SBTA177_ON_TOP_OF_ATMOS + SBTA177 + top_of_atmos + 4.0 + + + + 938 + SBTA178_ON_TOP_OF_ATMOS + SBTA178 + top_of_atmos + 4.0 + + + + 939 + SBTA179_ON_TOP_OF_ATMOS + SBTA179 + top_of_atmos + 4.0 + + + + 940 + SBTA1710_ON_TOP_OF_ATMOS + SBTA1710 + top_of_atmos + 4.0 + + + + 941 + SBTA1711_ON_TOP_OF_ATMOS + SBTA1711 + top_of_atmos + 4.0 + + + + 942 + SBTA1712_ON_TOP_OF_ATMOS + SBTA1712 + top_of_atmos + 4.0 + + + + 943 + SBTA1713_ON_TOP_OF_ATMOS + SBTA1713 + top_of_atmos + 4.0 + + + + 944 + SBTA1714_ON_TOP_OF_ATMOS + SBTA1714 + top_of_atmos + 4.0 + + + + 945 + SBTA1715_ON_TOP_OF_ATMOS + SBTA1715 + top_of_atmos + 4.0 + + + + 946 + SBTA1716_ON_TOP_OF_ATMOS + SBTA1716 + top_of_atmos + 4.0 + + + + 950 + CAPE_ON_0_3KM_ABOVE_GRND + CAPE + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 3000. + 4.0 + + + + 951 + CIN_ON_0_3KM_ABOVE_GRND + CIN + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 3000. + 4.0 + + + + 952 + HGT_ON_LFC + HGT + level_free_convection + 6.0 + + + + 953 + EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + EFHL + NCEP + surface + 4.0 + + + + 954 + DOWNWARD_CAPE + DCAPE + NCEP + spec_pres_above_grnd + 40000. + spec_pres_above_grnd + 0. + 4.0 + + + + 955 + DENDRITIC_LAYER_DEPTH + LAYTH + NCEP + isothermal + 261. + isothermal + 256. + 4.0 + + + + 956 + ENHANCED_STRETCHING_POTENTIAL + ESP + NCEP + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 3000. + 4.0 + + + + 957 + CRITICAL_ANGLE + DCAPE + NCEP + spec_hgt_lvl_above_grnd + 0. + spec_hgt_lvl_above_grnd + 500. + 4.0 + + + + + 958 + SBTAGR7_ON_TOP_OF_ATMOS + SBTAGR7 + top_of_atmos + 4.0 + + + + 959 + SBTAGR8_ON_TOP_OF_ATMOS + SBTAGR8 + top_of_atmos + 4.0 + + + + 960 + SBTAGR9_ON_TOP_OF_ATMOS + SBTAGR9 + top_of_atmos + 4.0 + + + + 961 + SBTAGR10_ON_TOP_OF_ATMOS + SBTAGR10 + top_of_atmos + 4.0 + + + + 962 + SBTAGR11_ON_TOP_OF_ATMOS + SBTAGR11 + top_of_atmos + 4.0 + + + + 963 + SBTAGR12_ON_TOP_OF_ATMOS + SBTAGR12 + top_of_atmos + 4.0 + + + + 964 + SBTAGR13_ON_TOP_OF_ATMOS + SBTAGR13 + top_of_atmos + 4.0 + + + + 965 + SBTAGR14_ON_TOP_OF_ATMOS + SBTAGR14 + top_of_atmos + 4.0 + + + + 966 + SBTAGR15_ON_TOP_OF_ATMOS + SBTAGR15 + top_of_atmos + 4.0 + + + + 967 + SBTAGR16_ON_TOP_OF_ATMOS + SBTAGR16 + top_of_atmos + 4.0 + + + + 968 + ICETMP_ON_SURFACE + ICETMP + surface + 5.0 + + + + 969 + SBTAHI7_ON_TOP_OF_ATMOS + SBTAHI7 + top_of_atmos + 4.0 + + + + 970 + SBTAHI8_ON_TOP_OF_ATMOS + SBTAHI8 + top_of_atmos + 4.0 + + + + 971 + SBTAHI9_ON_TOP_OF_ATMOS + SBTAHI9 + top_of_atmos + 4.0 + + + + 972 + SBTAHI10_ON_TOP_OF_ATMOS + SBTAHI10 + top_of_atmos + 4.0 + + + + 973 + SBTAHI11_ON_TOP_OF_ATMOS + SBTAHI11 + top_of_atmos + 4.0 + + + + 974 + SBTAHI12_ON_TOP_OF_ATMOS + SBTAHI12 + top_of_atmos + 4.0 + + + + 975 + SBTAHI13_ON_TOP_OF_ATMOS + SBTAHI13 + top_of_atmos + 4.0 + + + + 976 + SBTAHI14_ON_TOP_OF_ATMOS + SBTAHI14 + top_of_atmos + 4.0 + + + + 977 + SBTAHI15_ON_TOP_OF_ATMOS + SBTAHI15 + top_of_atmos + 4.0 + + + + 978 + SBTAHI16_ON_TOP_OF_ATMOS + SBTAHI16 + top_of_atmos + 4.0 + + + + 979 + EFSH_ON_EFBL + EFSH + NCEP + level_free_convection + 4.0 + + + + 980 + EFSH_ON_EFTL + EFSH + NCEP + equil_lvl + 4.0 + + + + 982 + ELMELT_ON_EFTL + ELMELT + NCEP + equil_lvl + 6.0 + + + + 983 + UESH_ON_EFL + UESH + NCEP + level_free_convection + 6.0 + + + + 984 + VESH_ON_EFL + VESH + NCEP + level_free_convection + 6.0 + + + + 985 + ESHR_ON_EFL + ESHR + NCEP + level_free_convection + 6.0 + + + + 986 + UEID_ON_EFL + UEID + NCEP + level_free_convection + 6.0 + + + + 987 + VEID_ON_EFL + VEID + NCEP + level_free_convection + 6.0 + + + + 988 + E3KH_ON_EFL + E3KH + NCEP + level_free_convection + 6.0 + + + + 989 + STPC_ON_EFL + STPC + NCEP + level_free_convection + 6.0 + + + + 990 + SIGT_ON_EFL + SIGT + NCEP + level_free_convection + 6.0 + + + + 991 + SCCP_ON_EFL + SCCP + NCEP + level_free_convection + 6.0 + + + + 992 + MLFC_ON_EFL + MLFC + NCEP + level_free_convection + 6.0 + + + + 993 + SIGH_ON_EFL + SIGH + NCEP + level_free_convection + 6.0 + + + + 994 + AVE_OZCON_ON_HYBRID_LVL + tmpl4_8 + OZCON + AVE + hybrid_lvl + 7.0 + + + + 995 + AVE_PM25TOT_ON_HYBRID_LVL + tmpl4_8 + PMTF + AVE + hybrid_lvl + 7.0 + + + + 996 + LAND_FRAC + LANDFRC + NCEP + surface + 3.0 + + + + 997 + INST_PREC_ADVEC_HEAT + PAHFLX + NCEP + surface + 3.0 + + + + 998 + WATER_AQUIFER + WATERSA + NCEP + surface + 3.0 + + + + 999 + ACM_EIWATER_ON_SURFACE + tmpl4_8 + EIWATER + NCEP + ACM + surface + 3.0 + + + + 1000 + ACM_PLANTTR_ON_SURFACE + tmpl4_8 + PLANTTR + NCEP + ACM + surface + 3.0 + + + + 1001 + ACM_SOILSE_ON_SURFACE + tmpl4_8 + SOILSE + NCEP + ACM + surface + 3.0 + + + + 1002 + AVE_PREC_ADVEC_HEAT + tmpl4_8 + PAHFLX + NCEP + AVE + surface + 3.0 + + + + 1003 + BUCKET_FRAIN_ON_SURFACE + tmpl4_8 + FRZR + NCEP + ACM + surface + 4.0 + + + + 1004 + ACM_SNOWFALL_ON_SURFACE + tmpl4_8 + TSNOWP + ACM + surface + 4.0 + + + + 1005 + BUCKET_SNOWFALL_ON_SURFACE + tmpl4_8 + TSNOWP + ACM + surface + 4.0 + + + + 1006 + SDEN_ON_SURFACE + SDEN + surface + 6.0 + + + + 1007 + ICE_PROB_IFI_FLIGHT_LEVEL + ICPRB + NCEP + spec_alt_above_mean_sea_lvl + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + 1008 + SLD_IFI_FLIGHT_LEVEL + SIPD + NCEP + spec_alt_above_mean_sea_lvl + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + 1009 + ICE_SEV_CAT_IFI_FLIGHT_LEVEL + ICSEV + NCEP + spec_alt_above_mean_sea_lvl + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + 1010 + WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL + ICESEV + spec_alt_above_mean_sea_lvl + 4.0 + + 1 + 5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. + + + + 1011 + COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR + tmpl4_48 + COLMD + dust_dry + entire_atmos_single_lyr + between_first_second_limit_noincl2ndlmt + 7 + 25 + 7 + 100 + 5.0 + + + + 1012 + COARSEPM_ON_HYBRID_LVL + tmpl4_48 + MASSDEN + dust_dry + hybrid_lvl + between_first_second_limit_noincl2ndlmt + 7 + 25 + 7 + 100 + 6.0 + + + + 1013 + COARSEPM_ON_ISOBARIC_SFC + tmpl4_48 + MASSDEN + dust_dry + isobaric_sfc + between_first_second_limit_noincl2ndlmt + 7 + 25 + 7 + 100 + 6.0 + + + + 1014 + COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_48 + MASSDEN + dust_dry + spec_hgt_lvl_above_grnd + 8. + between_first_second_limit_noincl2ndlmt + 7 + 25 + 7 + 100 + 6.0 + + + + diff --git a/fix/upp/postxconfig-NT-fv3lam_rrfs.txt b/fix/upp/postxconfig-NT-fv3lam_rrfs.txt new file mode 100644 index 000000000..b7f0d4d9a --- /dev/null +++ b/fix/upp/postxconfig-NT-fv3lam_rrfs.txt @@ -0,0 +1,19773 @@ +3 +4 +241 +288 +PRSLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +rrfs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +3 +POT_ON_HYBRID_LVL +? +1 +tmpl4_0 +POT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +4 +DPT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DPT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +6 +RH_ON_HYBRID_LVL +? +1 +tmpl4_0 +RH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +250 +REFD_ON_HYBRID_LVL +? +1 +tmpl4_0 +REFD +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +146 +BMIXL_ON_HYBRID_LVL +? +1 +tmpl4_0 +BMIXL +NCEP +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +10 +20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +86 +STRM_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +STRM +? +? +isobaric_sfc +0 +? +2 +25000. 50000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +225 +SOILL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +226 +SNFALB_ON_SURFACE +? +1 +tmpl4_0 +SNFALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +227 +MXSALB_ON_SURFACE +? +1 +tmpl4_0 +MXSALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +725 +GSD_ACM_SNOD_ON_SURFACE +? +1 +tmpl4_8 +ASNOW +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +75 +PLI_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLI +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +110 +PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +PRES +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +586 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +6 +30. 50. 80. 100. 160. 320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +6 +30. 50. 80. 100. 160. 320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +6 +30. 50. 80. 100. 160. 320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +SPFH +? +? +spec_alt_above_mean_sea_lvl +0 +? +1 +305. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +6 +30. 50. 80. 100. 160. 320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +PRES +? +? +spec_hgt_lvl_above_grnd +0 +? +6 +30. 50. 80. 100. 160. 320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +90 +VVEL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VVEL +? +? +spec_pres_above_grnd +0 +? +3 +3000. 9000. 18000. +spec_pres_above_grnd +0 +? +3 +0. 6000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +276 +REFZR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +277 +REFZI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +279 +REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZR +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +280 +REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZI +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +979 +EFSH_ON_EFBL +? +1 +tmpl4_0 +EFSH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +980 +EFSH_ON_EFTL +? +1 +tmpl4_0 +EFSH +NCEP +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +982 +ELMELT_ON_EFTL +? +1 +tmpl4_0 +ELMELT +NCEP +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +983 +UESH_ON_EFL +? +1 +tmpl4_0 +UESH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +984 +VESH_ON_EFL +? +1 +tmpl4_0 +VESH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +985 +ESHR_ON_EFL +? +1 +tmpl4_0 +ESHR +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +986 +UEID_ON_EFL +? +1 +tmpl4_0 +UEID +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +987 +VEID_ON_EFL +? +1 +tmpl4_0 +VEID +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +988 +E3KH_ON_EFL +? +1 +tmpl4_0 +E3KH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +989 +STPC_ON_EFL +? +1 +tmpl4_0 +STPC +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +990 +SIGT_ON_EFL +? +1 +tmpl4_0 +SIGT +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +991 +SCCP_ON_EFL +? +1 +tmpl4_0 +SCCP +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +993 +SIGH_ON_EFL +? +1 +tmpl4_0 +SIGH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +992 +MLFC_ON_EFL +? +1 +tmpl4_0 +MLFC +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +lwst_bot_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +487 +GSD_EXP_CEILING +? +1 +tmpl4_0 +CEIL +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +711 +GSD_EXP_CEILING_2 +? +1 +tmpl4_0 +CEIL +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +290 +SWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +SWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +296 +TMP_ON_SIGMA_LVL_HPC +? +1 +tmpl4_0 +TMP +? +? +sigma_lvl +1 +4 +5 +9000. 8500. 8000. 7500. 7000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +344 +PBLREG_ON_SURFACE +? +1 +tmpl4_0 +PBLREG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +389 +UGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +UGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +390 +VGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +VGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +RETOP +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +454 +VRATE_ON_PLANETARY_BOUND_LYR +Ventilation Rate on planetary boundary layer +1 +tmpl4_0 +VRATE +NCEP +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +455 +HINDEX_ON_SURFACE +Haines Index on surface +1 +tmpl4_0 +HINDEX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +508 +MAX_PRATE_ON_SURFACE +Maximum Precipitation Rate on surface +1 +tmpl4_8 +PRATE +? +MAX +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) +1 +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +427 +UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_0 +UPHL +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +913 +1H_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +914 +ACM_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +915 +1H_2YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +916 +ACM_2YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +917 +1H_5YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +918 +ACM_5YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +919 +1H_10YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +920 +ACM_10YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +921 +1H_100YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +922 +ACM_100YARI_EXCEEDANCE +? +1 +tmpl4_8 +GWLOWS +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +745 +BIOMASS_BURNING_EMISSIONS +? +1 +tmpl4_48 +AEMFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +739 +SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_48 +MASSDEN +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +particulate_org_matter_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +736 +SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +744 +DUST_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_48 +MASSDEN +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +dust_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +741 +DUST_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +dust_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +1014 +COARSEPM_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_48 +MASSDEN +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +dust_dry +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1011 +COARSEPM_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +dust_dry +between_first_second_limit_noincl2ndlmt +7 +25 +7 +100 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +735 +AOD_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +AOTK +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +755 +HWP_ON_SURFACE +Hourly Wildfire Potential on surface +1 +tmpl4_0 +FWINX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +NATLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +rrfs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +225 +SOILL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +RUC_MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +747 +GSD_NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +GSD_NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +766 +GSD_NCWFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTF +NCEP +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +GSD_NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +767 +GSD_NCIFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTC +NCEP +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +737 +SMOKE_ON_HYBRID_LVL +? +1 +tmpl4_48 +MASSDEN +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +particulate_org_matter_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +742 +DUST_ON_HYBRID_LVL +? +1 +tmpl4_48 +MASSDEN +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +dust_dry +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +52 +LMH_ON_SURFACE +? +1 +tmpl4_0 +LMH +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +53 +LMV_ON_SURFACE +? +1 +tmpl4_0 +LMV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +231 +SBSNO_ON_SURFACE +? +1 +tmpl4_0 +SBSNO +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +242 +PEVPR_ON_SURFACE +? +1 +tmpl4_0 +PEVPR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +222 +TCDC_ON_SIGMA_LVLS +? +1 +tmpl4_0 +TCDC +? +? +sigma_lvl +1 +4 +22 +9975. 9915. 9835. 9745. 9650. 9490. 9260. 9015. 8755. 8480. 8190. 7890. 7585. 7185. 6690. 6180. 5470. 4550. 3595. 2605. 1580. 530. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +500 +AVE_SNOWC_ON_SURFACE +? +1 +tmpl4_8 +SNOWC +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +927 +SBTA167_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA167 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +928 +SBTA168_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA168 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +929 +SBTA169_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA169 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +930 +SBTA1610_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1610 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +931 +SBTA1611_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1611 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +932 +SBTA1612_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1612 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +933 +SBTA1613_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1613 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +934 +SBTA1614_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1614 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +935 +SBTA1615_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1615 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +936 +SBTA1616_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1616 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +532 +SBTA188_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA188 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +533 +SBTA189_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA189 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +534 +SBTA1810_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1810 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +535 +SBTA1811_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1811 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +536 +SBTA1812_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1812 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +537 +SBTA1813_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1813 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +538 +SBTA1814_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1814 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +539 +SBTA1815_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1815 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +540 +SBTA1816_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +SBTA1816 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +702 +GSD_MAX_LTG_THREAT1_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_8 +LTNGSD +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +703 +GSD_MAX_LTG_THREAT2_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_8 +LTNGSD +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1006 +SDEN_ON_SURFACE +? +1 +tmpl4_0 +SDEN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +IFIFIP +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1007 +ICE_PROB_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICPRB +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1008 +SLD_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +SIPD +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1009 +ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICSEV +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1010 +WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICESEV +? +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? diff --git a/fix/upp/postxconfig-NT-fv3lam_rtma.txt b/fix/upp/postxconfig-NT-fv3lam_rtma.txt new file mode 100644 index 000000000..72378a597 --- /dev/null +++ b/fix/upp/postxconfig-NT-fv3lam_rtma.txt @@ -0,0 +1,6157 @@ +3 +14 +14 +137 +WRFTWO +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +res +fcst +fcst +hour +noaa_fsl_boulder +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +5 +50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +50000. 70000. 85000. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +7 +25000. 30000. 50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +7 +25000. 30000. 50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +445 +MAPS_PRMSL_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +546 +GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +? +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +950 +CAPE_ON_0_3KM_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +954 +DOWNWARD_CAPE +? +1 +tmpl4_0 +DCAPE +NCEP +? +spec_pres_above_grnd +0 +? +1 +40000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +952 +HGT_ON_LFC +? +1 +tmpl4_0 +HGT +? +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +763 +GSD_MIXR_ON_LFC +? +1 +tmpl4_0 +MIXR +? +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +EFHL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +955 +DENDRITIC_LAYER_DEPTH +? +1 +tmpl4_0 +LAYTH +NCEP +? +isothermal +0 +? +1 +261. +isothermal +0 +? +1 +256. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +956 +ENHANCED_STRETCHING_POTENTIAL +? +1 +tmpl4_0 +ESP +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +957 +CRITICAL_ANGLE +? +1 +tmpl4_0 +DCAPE +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +500. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +35 +ACM_WEASD_ON_SURFACE +? +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +437 +BUCKET_WEASD_ON_SURFACE +bucket snow precipitation on surface +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +434 +BUCKET_APCP_ON_SURFACE +bucket Total precipitation on surface +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +260 +HGT_ON_CLOUD_CEILING +? +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_BASE +GSD_geopotential height on cloud base +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +409 +GSD_HGT_ON_CLOUD_TOP +GSD_geopotential height on cloud top +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +REFD +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +425 +AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 +average Vertical velocity between sigma lvl 0.5 and 0.8 +1 +tmpl4_8 +DZDT +? +AVE +sigma_lvl +1 +2 +1 +50. +sigma_lvl +1 +2 +1 +80. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +429 +MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR +Hourly Maximum of Column Vertical Integrated Graupel on entire atmosphere +1 +tmpl4_8 +MAXVIG +? +MAX +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +430 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical u-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +431 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical v-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +768 +GSD_ECHOTOP_ON_CLOUD_TOP +Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level) +1 +tmpl4_0 +RETOP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +770 +GSD_RADARVIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +RADARVIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level +1 +tmpl4_0 +HGT +? +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +702 +GSD_MAX_LTG_THREAT1_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LTGTHREAT1 +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +703 +GSD_MAX_LTG_THREAT2_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LTGTHREAT2 +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LTNG +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +748 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +757 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +4000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +487 +GSD_PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +412 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +U-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +413 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +V-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +753 +GSD_PRES_ON_0C_ISOTHERM +GSD_pressure on Level of 0 deg (C) isotherm +1 +tmpl4_0 +PRES +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +756 +GSD_PRES_ON_HGHST_TROP_FRZ_LVL +GSD_pressure on Highest tropospheric freezing level +1 +tmpl4_0 +PRES +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +350 +RH_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +RH +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER +1 +tmpl4_0 +RH_PWAT +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +? +? +depth_bel_land_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +1 +70000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +457 +NON_NADIR_SBT123_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES12, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT123 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +458 +NON_NADIR_SBT124_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES12, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT124 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +461 +SBT113_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT113 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +461 +SBT113_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT113 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +462 +SBT114_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT114 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +462 +SBT114_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT114 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +979 +EFSH_ON_LFC +? +1 +tmpl4_0 +EFSH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +980 +EFSH_ON_EQUIL_LVL +? +1 +tmpl4_0 +EFSH +NCEP +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +982 +ELMELT_ON_EQUIL_LVL +? +1 +tmpl4_0 +ELMELT +NCEP +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +983 +UESH_ON_LFC +? +1 +tmpl4_0 +UESH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +984 +VESH_ON_LFC +? +1 +tmpl4_0 +VESH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +985 +ESHR_ON_LFC +? +1 +tmpl4_0 +ESHR +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +986 +UEID_ON_LFC +? +1 +tmpl4_0 +UEID +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +987 +VEID_ON_LFC +? +1 +tmpl4_0 +VEID +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +988 +E3KH_ON_LFC +? +1 +tmpl4_0 +E3KH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +989 +STPC_ON_LFC +? +1 +tmpl4_0 +STPC +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +990 +SIGT_ON_LFC +? +1 +tmpl4_0 +SIGT +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +991 +SCCP_ON_LFC +? +1 +tmpl4_0 +SCCP +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +993 +SIGH_ON_LFC +? +1 +tmpl4_0 +SIGH +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +992 +MLFC_ON_LFC +? +1 +tmpl4_0 +MLFC +NCEP +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +WRFPRS +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +res +fcst +fcst +hour +noaa_fsl_boulder +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +39 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +153 +CLWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLWMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +0 +? +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +0 +? +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +0 +? +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +WRFNAT +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +res +fcst +fcst +hour +noaa_fsl_boulder +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +124 +CLWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLWMR +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +GSD_NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCIP +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +GSD_NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +NCRAIN +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +50 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +0 +? +2 +0. 1. +depth_bel_land_sfc +0 +? +2 +0. 1. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/fix/upp/postxconfig-NT-rtma_NOAHLSM.txt b/fix/upp/postxconfig-NT-rtma_NOAHLSM.txt new file mode 100644 index 000000000..b7cac6906 --- /dev/null +++ b/fix/upp/postxconfig-NT-rtma_NOAHLSM.txt @@ -0,0 +1,17795 @@ +2 +222 +258 +BGDAWP +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +noaa_fsl_boulder +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +3 +POT_ON_HYBRID_LVL +? +1 +tmpl4_0 +POT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +4 +DPT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DPT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +6 +RH_ON_HYBRID_LVL +? +1 +tmpl4_0 +RH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +187 +RIME_ON_HYBRID_LVL +? +1 +tmpl4_0 +RIME +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +250 +REFD_ON_HYBRID_LVL +? +1 +tmpl4_0 +REFD +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +146 +BMIXL_ON_HYBRID_LVL +? +1 +tmpl4_0 +BMIXL +NCEP +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +10 +20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +86 +STRM_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +STRM +? +? +isobaric_sfc +0 +? +2 +25000. 50000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +46 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +445 +MAPS_PRMSL_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +225 +SOILL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILL +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +226 +SNFALB_ON_SURFACE +? +1 +tmpl4_0 +SNFALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +227 +MXSALB_ON_SURFACE +? +1 +tmpl4_0 +MXSALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +75 +PLI_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLI +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +35 +ACM_WEASD_ON_SURFACE +? +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +110 +PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +PRES +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +586 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +SPFH +? +? +spec_alt_above_mean_sea_lvl +0 +? +1 +305. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +PRES +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +90 +VVEL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VVEL +? +? +spec_pres_above_grnd +0 +? +3 +3000. 9000. 18000. +spec_pres_above_grnd +0 +? +3 +0. 6000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +276 +REFZR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +277 +REFZI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +279 +REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZR +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +280 +REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZI +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +lwst_bot_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud base +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +487 +GSD_EXP_CEILING +? +1 +tmpl4_0 +CEIL +? +? +ceiling +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +711 +GSD_EXP_CEILING_2 +? +1 +tmpl4_0 +CEIL +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +290 +SWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +SWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +292 +AVE_LRGHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +296 +TMP_ON_SIGMA_LVL_HPC +? +1 +tmpl4_0 +TMP +? +? +sigma_lvl +1 +4 +5 +9000. 8500. 8000. 7500. 7000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +344 +PBLREG_ON_SURFACE +? +1 +tmpl4_0 +PBLREG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +389 +UGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +UGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +390 +VGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +VGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +RETOP +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +454 +VRATE_ON_PLANETARY_BOUND_LYR +Ventilation Rate on planetary boundary layer +1 +tmpl4_0 +VRATE +NCEP +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +455 +HINDEX_ON_SURFACE +Haines Index on surface +1 +tmpl4_0 +HINDEX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +444 +LTNG_ON_SURFACE +lightning +1 +tmpl4_0 +LTNG +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) +1 +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +427 +UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_0 +UPHL +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +913 +1H_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +914 +3H_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +915 +6H_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +916 +12H_FFG_EXCEEDANCE +? +1 +tmpl4_8 +FFLDRO +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +BGRD3D +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +noaa_fsl_boulder +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +445 +MAPS_PRMSL_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +35 +ACM_WEASD_ON_SURFACE +? +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +766 +GSD_NCWFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTF +NCEP +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +767 +GSD_NCIFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTC +NCEP +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +52 +LMH_ON_SURFACE +? +1 +tmpl4_0 +LMH +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +53 +LMV_ON_SURFACE +? +1 +tmpl4_0 +LMV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +283 +PRES_ON_HYBRID_LVL_1L +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +21. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +273 +PRES_ON_HYBRID_LVL_LLM +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +61. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +231 +SBSNO_ON_SURFACE +? +1 +tmpl4_0 +SBSNO +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +242 +PEVPR_ON_SURFACE +? +1 +tmpl4_0 +PEVPR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +222 +TCDC_ON_SIGMA_LVLS +? +1 +tmpl4_0 +TCDC +? +? +sigma_lvl +1 +4 +22 +9975. 9915. 9835. 9745. 9650. 9490. 9260. 9015. 8755. 8480. 8190. 7890. 7585. 7185. 6690. 6180. 5470. 4550. 3595. 2605. 1580. 530. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +505 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +500 +AVE_SNOWC_ON_SURFACE +? +1 +tmpl4_8 +SNOWC +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +501 +AVE_PRES_ON_SURFACE +? +1 +tmpl4_8 +PRES +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +502 +AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_8 +TMP +? +AVE +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +503 +AVE_AKHS_ON_SURFACE +? +1 +tmpl4_8 +AKHS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +504 +AVE_AKMS_ON_SURFACE +? +1 +tmpl4_8 +AKMS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/fix/upp/spc_fields_rtma.txt b/fix/upp/spc_fields_rtma.txt new file mode 100644 index 000000000..9ad726ad8 --- /dev/null +++ b/fix/upp/spc_fields_rtma.txt @@ -0,0 +1,347 @@ +PRES:surface: +HGT:surface: +TMP:2 m above ground +DPT:2 m above ground +SPFH:2 m above ground +UGRD:10 m above ground +VGRD:10 m above ground +TMP:10 mb +TMP:20 mb +TMP:30 mb +TMP:50 mb +TMP:70 mb +TMP:100 mb +TMP:125 mb +TMP:150 mb +TMP:175 mb +TMP:200 mb +TMP:225 mb +TMP:250 mb +TMP:275 mb +TMP:300 mb +TMP:325 mb +TMP:350 mb +TMP:375 mb +TMP:400 mb +TMP:425 mb +TMP:450 mb +TMP:475 mb +TMP:500 mb +TMP:525 mb +TMP:550 mb +TMP:575 mb +TMP:600 mb +TMP:625 mb +TMP:650 mb +TMP:675 mb +TMP:700 mb +TMP:725 mb +TMP:750 mb +TMP:775 mb +TMP:800 mb +TMP:825 mb +TMP:850 mb +TMP:875 mb +TMP:900 mb +TMP:925 mb +TMP:950 mb +TMP:975 mb +TMP:1000 mb +DPT:10 mb +DPT:20 mb +DPT:30 mb +DPT:50 mb +DPT:70 mb +DPT:100 mb +DPT:125 mb +DPT:150 mb +DPT:175 mb +DPT:200 mb +DPT:225 mb +DPT:250 mb +DPT:275 mb +DPT:300 mb +DPT:325 mb +DPT:350 mb +DPT:375 mb +DPT:400 mb +DPT:425 mb +DPT:450 mb +DPT:475 mb +DPT:500 mb +DPT:525 mb +DPT:550 mb +DPT:575 mb +DPT:600 mb +DPT:625 mb +DPT:650 mb +DPT:675 mb +DPT:700 mb +DPT:725 mb +DPT:750 mb +DPT:775 mb +DPT:800 mb +DPT:825 mb +DPT:850 mb +DPT:875 mb +DPT:900 mb +DPT:925 mb +DPT:950 mb +DPT:975 mb +DPT:1000 mb +SPFH:10 mb +SPFH:20 mb +SPFH:30 mb +SPFH:50 mb +SPFH:70 mb +SPFH:100 mb +SPFH:125 mb +SPFH:150 mb +SPFH:175 mb +SPFH:200 mb +SPFH:225 mb +SPFH:250 mb +SPFH:275 mb +SPFH:300 mb +SPFH:325 mb +SPFH:350 mb +SPFH:375 mb +SPFH:400 mb +SPFH:425 mb +SPFH:450 mb +SPFH:475 mb +SPFH:500 mb +SPFH:525 mb +SPFH:550 mb +SPFH:575 mb +SPFH:600 mb +SPFH:625 mb +SPFH:650 mb +SPFH:675 mb +SPFH:700 mb +SPFH:725 mb +SPFH:750 mb +SPFH:775 mb +SPFH:800 mb +SPFH:825 mb +SPFH:850 mb +SPFH:875 mb +SPFH:900 mb +SPFH:925 mb +SPFH:950 mb +SPFH:975 mb +SPFH:1000 mb +UGRD:10 mb +UGRD:20 mb +UGRD:30 mb +UGRD:50 mb +UGRD:70 mb +UGRD:100 mb +UGRD:125 mb +UGRD:150 mb +UGRD:175 mb +UGRD:200 mb +UGRD:225 mb +UGRD:250 mb +UGRD:275 mb +UGRD:300 mb +UGRD:325 mb +UGRD:350 mb +UGRD:375 mb +UGRD:400 mb +UGRD:425 mb +UGRD:450 mb +UGRD:475 mb +UGRD:500 mb +UGRD:525 mb +UGRD:550 mb +UGRD:575 mb +UGRD:600 mb +UGRD:625 mb +UGRD:650 mb +UGRD:675 mb +UGRD:700 mb +UGRD:725 mb +UGRD:750 mb +UGRD:775 mb +UGRD:800 mb +UGRD:825 mb +UGRD:850 mb +UGRD:875 mb +UGRD:900 mb +UGRD:925 mb +UGRD:950 mb +UGRD:975 mb +UGRD:1000 mb +VGRD:10 mb +VGRD:20 mb +VGRD:30 mb +VGRD:50 mb +VGRD:70 mb +VGRD:100 mb +VGRD:125 mb +VGRD:150 mb +VGRD:175 mb +VGRD:200 mb +VGRD:225 mb +VGRD:250 mb +VGRD:275 mb +VGRD:300 mb +VGRD:325 mb +VGRD:350 mb +VGRD:375 mb +VGRD:400 mb +VGRD:425 mb +VGRD:450 mb +VGRD:475 mb +VGRD:500 mb +VGRD:525 mb +VGRD:550 mb +VGRD:575 mb +VGRD:600 mb +VGRD:625 mb +VGRD:650 mb +VGRD:675 mb +VGRD:700 mb +VGRD:725 mb +VGRD:750 mb +VGRD:775 mb +VGRD:800 mb +VGRD:825 mb +VGRD:850 mb +VGRD:875 mb +VGRD:900 mb +VGRD:925 mb +VGRD:950 mb +VGRD:975 mb +VGRD:1000 mb +HGT:10 mb +HGT:20 mb +HGT:30 mb +HGT:50 mb +HGT:70 mb +HGT:100 mb +HGT:125 mb +HGT:150 mb +HGT:175 mb +HGT:200 mb +HGT:225 mb +HGT:250 mb +HGT:275 mb +HGT:300 mb +HGT:325 mb +HGT:350 mb +HGT:375 mb +HGT:400 mb +HGT:425 mb +HGT:450 mb +HGT:475 mb +HGT:500 mb +HGT:525 mb +HGT:550 mb +HGT:575 mb +HGT:600 mb +HGT:625 mb +HGT:650 mb +HGT:675 mb +HGT:700 mb +HGT:725 mb +HGT:750 mb +HGT:775 mb +HGT:800 mb +HGT:825 mb +HGT:850 mb +HGT:875 mb +HGT:900 mb +HGT:925 mb +HGT:950 mb +HGT:975 mb +HGT:1000 mb +VVEL:10 mb +VVEL:20 mb +VVEL:30 mb +VVEL:50 mb +VVEL:70 mb +VVEL:100 mb +VVEL:125 mb +VVEL:150 mb +VVEL:175 mb +VVEL:200 mb +VVEL:225 mb +VVEL:250 mb +VVEL:275 mb +VVEL:300 mb +VVEL:325 mb +VVEL:350 mb +VVEL:375 mb +VVEL:400 mb +VVEL:425 mb +VVEL:450 mb +VVEL:475 mb +VVEL:500 mb +VVEL:525 mb +VVEL:550 mb +VVEL:575 mb +VVEL:600 mb +VVEL:625 mb +VVEL:650 mb +VVEL:675 mb +VVEL:700 mb +VVEL:725 mb +VVEL:750 mb +VVEL:775 mb +VVEL:800 mb +VVEL:825 mb +VVEL:850 mb +VVEL:875 mb +VVEL:900 mb +VVEL:925 mb +VVEL:950 mb +VVEL:975 mb +VVEL:1000 mb +DZDT:10 mb +DZDT:20 mb +DZDT:30 mb +DZDT:50 mb +DZDT:70 mb +DZDT:100 mb +DZDT:125 mb +DZDT:150 mb +DZDT:175 mb +DZDT:200 mb +DZDT:225 mb +DZDT:250 mb +DZDT:275 mb +DZDT:300 mb +DZDT:325 mb +DZDT:350 mb +DZDT:375 mb +DZDT:400 mb +DZDT:425 mb +DZDT:450 mb +DZDT:475 mb +DZDT:500 mb +DZDT:525 mb +DZDT:550 mb +DZDT:575 mb +DZDT:600 mb +DZDT:625 mb +DZDT:650 mb +DZDT:675 mb +DZDT:700 mb +DZDT:725 mb +DZDT:750 mb +DZDT:775 mb +DZDT:800 mb +DZDT:825 mb +DZDT:850 mb +DZDT:875 mb +DZDT:900 mb +DZDT:925 mb +DZDT:950 mb +DZDT:975 mb +DZDT:1000 mb + + + + diff --git a/fix/upp/testbed_fields_bgdawp.txt b/fix/upp/testbed_fields_bgdawp.txt new file mode 100644 index 000000000..37c7b6ad7 --- /dev/null +++ b/fix/upp/testbed_fields_bgdawp.txt @@ -0,0 +1,85 @@ +MSLET:mean sea level: +PRMSL:mean sea level: +REFC:entire atmosphere (considered as a single layer): +REFD:263 K level: +GUST:surface: +MAXUVV:100-1000 mb: +MAXDVV:100-1000 mb: +REFD:1000 m above ground: +MAXREF:1000 m above ground: +MAXREF:263 K level: +MXUPHL:5000-2000 m above ground: +MNUPHL:5000-2000 m above ground: +MXUPHL:3000-0 m above ground: +MNUPHL:3000-0 m above ground: +PRES:surface: +HGT:surface: +TMP:2 m above ground: +DPT:2 m above ground: +RH:2 m above ground: +UGRD:10 m above ground: +VGRD:10 m above ground: +WIND:10 m above ground: +APCP:surface: +CEIL:cloud base: +HGT:cloud ceiling: +VIS:surface: +CAPE:surface: +CIN:surface: +CAPE:180-0 mb above ground: +CIN:180-0 mb above ground: +CAPE:90-0 mb above ground: +CIN:90-0 mb above ground: +CAPE:255-0 mb above ground: +CIN:255-0 mb above ground: +HLCY:3000-0 m above ground: +HLCY:1000-0 m above ground: +UPHL:5000-2000 m above ground: +RETOP:entire atmosphere (considered as a single layer): +HGT:300 mb: +UGRD:300 mb: +VGRD:300 mb: +TMP:300 mb: +HGT:500 mb: +UGRD:500 mb: +VGRD:500 mb: +TMP:500 mb: +ABSV:500 mb: +HGT:700 mb: +UGRD:700 mb: +VGRD:700 mb: +TMP:700 mb: +HGT:850 mb: +UGRD:850 mb: +VGRD:850 mb: +TMP:850 mb: +SPFH:850 mb: +REFD:1 hybrid level: +REFD:2 hybrid level: +VVEL:500 mb: +PRATE:surface: +PWAT:entire atmosphere (considered as a single layer): +WEASD:surface: +SNOD:surface: +REFD:4000 m above ground: +VVEL:700 mb: +TMAX:2 m above ground: +MINRH:2 m above ground: +CSNOW:surface: +CICEP:surface: +CFRZR:surface: +CRAIN:surface: +CPOFP:surface: +TMP:30-0 mb above ground: +RH:30-0 mb above ground: +DPT:30-0 mb above ground: +UGRD:30-0 mb above ground: +VGRD:30-0 mb above ground: +VVEL:30-0 mb above ground: +4LFTX:180-0 mb above ground: +SDEN:surface: +MASSDEN:8 m above ground: +COLMD:entire atmosphere (considered as a single layer): +AOTK:entire atmosphere (considered as a single layer): +AEMFLX:surface: +FWINX:surface: diff --git a/fix/upp/testbed_fields_bgrd3d.txt b/fix/upp/testbed_fields_bgrd3d.txt new file mode 100644 index 000000000..19c012b4f --- /dev/null +++ b/fix/upp/testbed_fields_bgrd3d.txt @@ -0,0 +1,22 @@ +:SBTA167:top of atmosphere: +:SBTA168:top of atmosphere: +:SBTA169:top of atmosphere: +:SBTA1610:top of atmosphere: +:SBTA1611:top of atmosphere: +:SBTA1612:top of atmosphere: +:SBTA1613:top of atmosphere: +:SBTA1614:top of atmosphere: +:SBTA1615:top of atmosphere: +:SBTA1616:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=77:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=78:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=79:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=80:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=81:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=82:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=83:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=84:top of atmosphere: +:var discipline=3 center=7 local_table=1 parmcat=192 parm=85:top of atmosphere: +:var discipline=0 master_table=2 parmcat=17 parm=0:1 m above ground: +:var discipline=0 master_table=2 parmcat=17 parm=0:2 m above ground: +:LTNG:entire atmosphere: diff --git a/fix/upp/testbed_fields_rtma.txt b/fix/upp/testbed_fields_rtma.txt new file mode 100644 index 000000000..53d7795be --- /dev/null +++ b/fix/upp/testbed_fields_rtma.txt @@ -0,0 +1,13 @@ +REFC:entire atmosphere (considered as a single layer) +TMP:2 m above ground +DPT:2 m above ground +CAPE:90-0 mb above ground +CAPE:255-0 mb above ground +CAPE:surface +CIN:90-0 mb above ground +CIN:255-0 mb above ground +CIN:surface +parmcat=7 parm=207 +parmcat=7 parm=208 +parmcat=2 parm=234 +parmcat=2 parm=235 diff --git a/jobs/JREGIONAL_BUFRSND b/jobs/JREGIONAL_BUFRSND new file mode 100755 index 000000000..8e48d6196 --- /dev/null +++ b/jobs/JREGIONAL_BUFRSND @@ -0,0 +1,193 @@ +#!/bin/bash +# . . +# Script name: exregional_bufr.sh +# Script description: Trigger sounding post job +# +# Author: Eric Rogers Org: NP22 Date: 1999-06-23 +# +# Abstract: This script triggers the sounding post job, which +# creates a piece of the model sounding profile whose +# time interval is determined by the input forecast hours. +# +# Script history log: +# 2000-05-16 Eric Rogers +# 2006-01-20 Eric Rogers -- extended to 84-h and modified for WRF-NMM NAM +# 2009-12-18 Matthew Pyle -- shortened to 48-h and generalized for multiple domains +# and diferent dynamical cores +# 2019-10-28 Matthew Pyle -- Converted for FV3 SAR and 60 hours +# + +# +#----------------------------------------------------------------------- +# +# This script runs the bufr sounding on the NetCDF output files +# of the write component of the FV3-LAM model. +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs the bufr sounding +on the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set the run directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +# NWGES_DIR is the directory in which the model restart file will be saved +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +if [ "${RUN_ENVIR}" = "nco" ]; then + mkdir_vrfy -p "${nwges_dir}/RESTART" + mkdir_vrfy -p "${nwges_dir}/INPUT" +fi + +# +#----------------------------------------------------------------------- +# +# If it doesn't already exist, create the directory (bufrsnd_dir) in which +# to store bufr sounding output. (Note that bufrsnd_dir may already +# have been created by this bufr sounding script run for a different +# forecast hour of the same cycle and/or ensemble member.) Also, create +# a temporary work directory (fhr_dir) for the current forecast hour. +# fhr_dir will be deleted later after the processing for the current +# forecast hour is complete. Then change location to fhr_dir. +# +# Note that there may be a preexisting version of fhr_dir from previous +# runs of this script for the current forecast hour (and current cycle), +# e.g. from the workflow task that runs this script failing and then being +# called again. Thus, we first make sure preexisting versions are deleted. +# +#----------------------------------------------------------------------- +# +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +bufrsnd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/bufrsnd" +if [ ${CYCLE_TYPE} == "spinup" ]; then + bufrsnd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/bufrsnd_spinup" +fi +mkdir_vrfy -p "${bufrsnd_dir}" + +fhr_dir="${bufrsnd_dir}" +#check_for_preexist_dir_file "${fhr_dir}" "delete" +#mkdir_vrfy -p "${fhr_dir}" + +cd_vrfy "${bufrsnd_dir}" +# +#----------------------------------------------------------------------- +# +# Make sure that fhr is a non-empty string consisting of only digits. +# +#----------------------------------------------------------------------- +# +#fhr=$( printf "%s" "${fhr}" | sed -n -r -e "s/^([0-9]+)$/\1/p" ) +#if [ -z "$fhr" ]; then +# print_err_msg_exit "\ +#The forecast hour (fhr) must be a non-empty string consisting of only +#digits: +# fhr = \"${fhr}\"" +#fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +fhr=01 +$SCRIPTSDIR/exregional_bufrsnd.sh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + nwges_dir="${nwges_dir}" \ + bufrsnd_dir="${bufrsnd_dir}" \ + comout="${COMOUT}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" \ + cycle_type="${CYCLE_TYPE}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_CALC_ENSMEAN b/jobs/JREGIONAL_CALC_ENSMEAN new file mode 100755 index 000000000..4f7d21bf3 --- /dev/null +++ b/jobs/JREGIONAL_CALC_ENSMEAN @@ -0,0 +1,128 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script stages initial and boundary conditions for +# the analysis and model of the cycle it is running. The initial +# could come from external model or previous cycles forecast. +# The boundary could come from previous many cycles. +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + ensmeandir=${CYCLE_DIR}/ensmean/fcst_fv3lam_spinup/INPUT +else + ensmeandir=${CYCLE_DIR}/ensmean/fcst_fv3lam/INPUT +fi +rm -fr ${ensmeandir} +mkdir_vrfy -p ${ensmeandir} + +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_calc_ensmean.sh \ + cycle_type="${CYCLE_TYPE}" \ + comout="${COMOUT}" \ + ensmeandir="${ensmeandir}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_GET_EXTRN_MDL_FILES b/jobs/JREGIONAL_GET_EXTRN_MDL_FILES index 6b373895e..447436bb9 100755 --- a/jobs/JREGIONAL_GET_EXTRN_MDL_FILES +++ b/jobs/JREGIONAL_GET_EXTRN_MDL_FILES @@ -178,10 +178,19 @@ check_var_valid_value "ICS_OR_LBCS" "valid_vals_ICS_OR_LBCS" # if [ "${ICS_OR_LBCS}" = "ICS" ]; then anl_or_fcst="ANL" - time_offset_hrs="0" + time_offset_hrs="${EXTRN_MDL_ICS_OFFSET_HRS}" + lbs_spec_intvl_hrs="${LBC_SPEC_INTVL_HRS}" + boundary_len_hrs="0" elif [ "${ICS_OR_LBCS}" = "LBCS" ]; then anl_or_fcst="FCST" time_offset_hrs="${EXTRN_MDL_LBCS_OFFSET_HRS}" + lbs_spec_intvl_hrs="${LBC_SPEC_INTVL_HRS}" + boundary_len_hrs="${BOUNDARY_LEN}" +fi +if [ "${DO_RETRO}" = "TRUE" ]; then + retro_or_realtime="RETRO" +else + retro_or_realtime="REALTIME" fi # #----------------------------------------------------------------------- @@ -192,7 +201,7 @@ fi # #----------------------------------------------------------------------- # -extrn_mdl_staging_dir="${CYCLE_DIR}/${EXTRN_MDL_NAME}/for_${ICS_OR_LBCS}" +extrn_mdl_staging_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${EXTRN_MDL_NAME}/for_${ICS_OR_LBCS}" mkdir_vrfy -p "${extrn_mdl_staging_dir}" cd_vrfy "${extrn_mdl_staging_dir}" # @@ -206,13 +215,19 @@ cd_vrfy "${extrn_mdl_staging_dir}" get_extrn_mdl_file_dir_info \ extrn_mdl_name="${EXTRN_MDL_NAME}" \ anl_or_fcst="${anl_or_fcst}" \ + retro_or_realtime="${retro_or_realtime}" \ cdate_FV3LAM="${CDATE}" \ + lbs_spec_intvl_hrs="${lbs_spec_intvl_hrs}" \ + boundary_len_hrs="${boundary_len_hrs}"\ time_offset_hrs="${time_offset_hrs}" \ + varname_extrn_mdl_memhead="${GEFS_INPUT_SUBDIR}" \ varname_extrn_mdl_cdate="extrn_mdl_cdate" \ varname_extrn_mdl_lbc_spec_fhrs="extrn_mdl_lbc_spec_fhrs" \ varname_extrn_mdl_fns_on_disk="extrn_mdl_fns_on_disk" \ + varname_extrn_mdl_fns_on_disk2="extrn_mdl_fns_on_disk2" \ varname_extrn_mdl_fns_in_arcv="extrn_mdl_fns_in_arcv" \ varname_extrn_mdl_sysdir="extrn_mdl_sysdir" \ + varname_extrn_mdl_sysdir2="extrn_mdl_sysdir2" \ varname_extrn_mdl_arcv_fmt="extrn_mdl_arcv_fmt" \ varname_extrn_mdl_arcv_fns="extrn_mdl_arcv_fns" \ varname_extrn_mdl_arcv_fps="extrn_mdl_arcv_fps" \ @@ -229,6 +244,7 @@ Call to function get_extrn_mdl_file_dir_info failed." #----------------------------------------------------------------------- # extrn_mdl_source_dir="${extrn_mdl_sysdir}" +extrn_mdl_source_dir2="${extrn_mdl_sysdir2}" # #----------------------------------------------------------------------- # @@ -244,9 +260,15 @@ if [ "${USE_USER_STAGED_EXTRN_FILES}" = "TRUE" ]; then if [ "${ICS_OR_LBCS}" = "ICS" ]; then extrn_mdl_source_dir="${EXTRN_MDL_SOURCE_BASEDIR_ICS}/$CDATE" + if [[ "${DO_ENSEMBLE}" = "TRUE" && "${extrn_mdl_name} = "GEFS" ]]; then + extrn_mdl_source_dir="${EXTRN_MDL_SOURCE_BASEDIR_ICS}/${INPUT_ENSMEM_SUBDIR}" + fi extrn_mdl_fns_on_disk=( $( printf "%s " "${EXTRN_MDL_FILES_ICS[@]}" )) elif [ "${ICS_OR_LBCS}" = "LBCS" ]; then extrn_mdl_source_dir="${EXTRN_MDL_SOURCE_BASEDIR_LBCS}/$CDATE" + if [[ "${DO_ENSEMBLE}" = "TRUE" && "${extrn_mdl_name} = "GEFS" ]]; then + extrn_mdl_source_dir="${EXTRN_MDL_SOURCE_BASEDIR_LBCS}/${INPUT_ENSMEM_SUBDIR}" + fi extrn_mdl_fns_on_disk=( $( printf "%s " "${EXTRN_MDL_FILES_LBCS[@]}" )) fi @@ -272,6 +294,7 @@ fi # extrn_mdl_lbc_spec_fhrs_str="( "$( printf "\"%s\" " "${extrn_mdl_lbc_spec_fhrs[@]}" )")" extrn_mdl_fns_on_disk_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk[@]}" )")" +extrn_mdl_fns_on_disk_str2="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk2[@]}" )")" extrn_mdl_fns_in_arcv_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_in_arcv[@]}" )")" extrn_mdl_arcv_fns_str="( "$( printf "\"%s\" " "${extrn_mdl_arcv_fns[@]}" )")" extrn_mdl_arcv_fps_str="( "$( printf "\"%s\" " "${extrn_mdl_arcv_fps[@]}" )")" @@ -282,8 +305,10 @@ $SCRIPTSDIR/exregional_get_extrn_mdl_files.sh \ extrn_mdl_cdate="${extrn_mdl_cdate}" \ extrn_mdl_lbc_spec_fhrs="${extrn_mdl_lbc_spec_fhrs_str}" \ extrn_mdl_fns_on_disk="${extrn_mdl_fns_on_disk_str}" \ + extrn_mdl_fns_on_disk2="${extrn_mdl_fns_on_disk_str2}" \ extrn_mdl_fns_in_arcv="${extrn_mdl_fns_in_arcv_str}" \ extrn_mdl_source_dir="${extrn_mdl_source_dir}" \ + extrn_mdl_source_dir2="${extrn_mdl_source_dir2}" \ extrn_mdl_staging_dir="${extrn_mdl_staging_dir}" \ extrn_mdl_arcv_fmt="${extrn_mdl_arcv_fmt}" \ extrn_mdl_arcv_fns="${extrn_mdl_arcv_fns_str}" \ diff --git a/jobs/JREGIONAL_GET_GEFS_LBCS_FILES b/jobs/JREGIONAL_GET_GEFS_LBCS_FILES new file mode 100755 index 000000000..490f83e59 --- /dev/null +++ b/jobs/JREGIONAL_GET_GEFS_LBCS_FILES @@ -0,0 +1,194 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script gets from the system directory the files generated by +# the external model (GEFS, specified by the variable EXTRN_MDL_NAME) +# for the lateral boundary conditions (LBCs). +# And then perform time interpolation to get the missing hourly GEFS +# files from the 3-hourly data, using wgrib2. +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Source the file defining the function that will be used to set various +# external-model-associated variables. +# +#----------------------------------------------------------------------- +# +. $USHDIR/get_extrn_mdl_file_dir_info.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that copies/fetches to a local +directory (from disk) the external model files from which +boundary condition files for the FV3 will be generated. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Check whether the environment variable ICS_OR_LBCS is set to a valid +# value. This variable specifies whether we are getting the external +# model files for the purpose of generating initial conditions (ICs) or +# lateral boundary condtions (LBCs) for the forecast model. +# +#----------------------------------------------------------------------- +# +valid_vals_ICS_OR_LBCS=( "ICS" "LBCS" ) +check_var_valid_value "ICS_OR_LBCS" "valid_vals_ICS_OR_LBCS" +# +#----------------------------------------------------------------------- +# +# Set the parameter anl_or_fcst that determines whether we want to get +# analysis or forecast files. This depends on whether we want these files +# to generate initial condition and surface field files or lateral boundary +# condition files. Also, set time_offset_hrs, which is the offset in +# hours between the current cycle's starting time and the starting time +# of the external model providing the LBCs. +# +#----------------------------------------------------------------------- +# +anl_or_fcst="FCST" +time_offset_hrs="${EXTRN_MDL_LBCS_OFFSET_HRS}" +lbs_spec_intvl_hrs="${LBC_SPEC_INTVL_HRS}" +boundary_len_hrs="${BOUNDARY_LEN}" +# +#----------------------------------------------------------------------- +# +# Set the name of and then create the directory in which to stage the +# external model files for the current cycle (if it doesn't already exist). +# Then change location to that directory. +# +#----------------------------------------------------------------------- +# +extrn_mdl_staging_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${EXTRN_MDL_NAME}/for_LBCS" +if [ -d "${extrn_mdl_staging_dir}" ]; then + rm -rf ${extrn_mdl_staging_dir} +fi +mkdir_vrfy -p "${extrn_mdl_staging_dir}" +cd_vrfy "${extrn_mdl_staging_dir}" +# +#----------------------------------------------------------------------- +# +# Call the function that sets various external-model-associated variables. +# See the function defintion file for the definitions of these variables. +# +#----------------------------------------------------------------------- +# +get_extrn_mdl_file_dir_info \ + extrn_mdl_name="${EXTRN_MDL_NAME}" \ + anl_or_fcst="${anl_or_fcst}" \ + cdate_FV3LAM="${CDATE}" \ + lbs_spec_intvl_hrs="${lbs_spec_intvl_hrs}" \ + boundary_len_hrs="${boundary_len_hrs}"\ + time_offset_hrs="${time_offset_hrs}" \ + varname_extrn_mdl_memhead="${GEFS_INPUT_SUBDIR}" \ + varname_extrn_mdl_cdate="extrn_mdl_cdate" \ + varname_extrn_mdl_lbc_spec_fhrs="extrn_mdl_lbc_spec_fhrs" \ + varname_extrn_mdl_fns_on_disk="extrn_mdl_fns_on_disk" \ + varname_extrn_mdl_fns_on_disk2="extrn_mdl_fns_on_disk2" \ + varname_extrn_mdl_fns_in_arcv="extrn_mdl_fns_in_arcv" \ + varname_extrn_mdl_sysdir="extrn_mdl_sysdir" \ + varname_extrn_mdl_sysdir2="extrn_mdl_sysdir2" \ + varname_extrn_mdl_arcv_fmt="extrn_mdl_arcv_fmt" \ + varname_extrn_mdl_arcv_fns="extrn_mdl_arcv_fns" \ + varname_extrn_mdl_arcv_fps="extrn_mdl_arcv_fps" \ + varname_extrn_mdl_arcvrel_dir="extrn_mdl_arcvrel_dir" || \ +print_err_msg_exit "\ +Call to function get_extrn_mdl_file_dir_info failed." +# +#----------------------------------------------------------------------- +# +# Set the directory in which to check for the external model files (which +# we refer to here as the "source" directory) to the default one set above +# for the current machine and external model. +# +#----------------------------------------------------------------------- +# +extrn_mdl_source_dir="${extrn_mdl_sysdir}" +extrn_mdl_source_dir2="${extrn_mdl_sysdir2}" +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary variables. +# +#----------------------------------------------------------------------- +# +extrn_mdl_lbc_spec_fhrs_str="( "$( printf "\"%s\" " "${extrn_mdl_lbc_spec_fhrs[@]}" )")" +extrn_mdl_fns_on_disk_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk[@]}" )")" +extrn_mdl_fns_on_disk_str2="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk2[@]}" )")" +extrn_mdl_fns_in_arcv_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_in_arcv[@]}" )")" + +$SCRIPTSDIR/exregional_get_gefs_lbcs_files.sh \ + ics_or_lbcs="${ICS_OR_LBCS}" \ + use_user_staged_extrn_files="${USE_USER_STAGED_EXTRN_FILES}" \ + extrn_mdl_cdate="${extrn_mdl_cdate}" \ + extrn_mdl_lbc_spec_fhrs="${extrn_mdl_lbc_spec_fhrs_str}" \ + extrn_mdl_fns_on_disk="${extrn_mdl_fns_on_disk_str}" \ + extrn_mdl_fns_on_disk2="${extrn_mdl_fns_on_disk_str2}" \ + extrn_mdl_fns_in_arcv="${extrn_mdl_fns_in_arcv_str}" \ + extrn_mdl_source_dir="${extrn_mdl_source_dir}" \ + extrn_mdl_source_dir2="${extrn_mdl_source_dir2}" \ + extrn_mdl_staging_dir="${extrn_mdl_staging_dir}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/function. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_JEDIENVAR_IODA b/jobs/JREGIONAL_JEDIENVAR_IODA new file mode 100755 index 000000000..8e1a56327 --- /dev/null +++ b/jobs/JREGIONAL_JEDIENVAR_IODA @@ -0,0 +1,130 @@ +#!/bin/bash + +#----------------------------------------------------------------------- +# +# This J-JOB script runs the standalone JEDI EnVAR IODA task +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a standalone JEDI EnVAR +IODA task with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Creating COMOUT folders for the task +# +#----------------------------------------------------------------------- +# + +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="jedienvar_ioda_spinup" +else + analworkname="jedienvar_ioda" +fi + +if [ ${MEM_TYPE} == "MEAN" ]; then + workdir="${CYCLE_DIR}/ensmean/${analworkname}" + SLASH_ENSMEM_SUBDIR="" +else + workdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${analworkname}" +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_jedienvar_ioda.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + mem_type="${MEM_TYPE}" \ + workdir="${workdir}" \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" \ + comout="${COMOUT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_MAKE_ICS b/jobs/JREGIONAL_MAKE_ICS index 01027b4ac..b0f8868e0 100755 --- a/jobs/JREGIONAL_MAKE_ICS +++ b/jobs/JREGIONAL_MAKE_ICS @@ -54,17 +54,29 @@ for the FV3 (in NetCDF format). # #----------------------------------------------------------------------- # -ics_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/INPUT" +ics_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/ics" mkdir_vrfy -p "${ics_dir}" # #----------------------------------------------------------------------- # +# Set the name of and create the directory in which the output from this +# script will be saved for long time (if that directory doesn't already exist). +# Usually ics_dir under tmpnwprd should be purged fairly soon after cycle done +# +#----------------------------------------------------------------------- +# +ics_nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/ics" +mkdir_vrfy -p "${ics_nwges_dir}" +# +#----------------------------------------------------------------------- +# # Call the ex-script for this J-job and pass to it the necessary variables. # #----------------------------------------------------------------------- # $SCRIPTSDIR/exregional_make_ics.sh \ - ics_dir="${ics_dir}" || \ + ics_dir="${ics_dir}" \ + ics_nwges_dir="${ics_nwges_dir}" || \ print_err_msg_exit "\ Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." # diff --git a/jobs/JREGIONAL_MAKE_LBCS b/jobs/JREGIONAL_MAKE_LBCS index b46d0e950..e385d3d16 100755 --- a/jobs/JREGIONAL_MAKE_LBCS +++ b/jobs/JREGIONAL_MAKE_LBCS @@ -54,8 +54,21 @@ hour zero). # #----------------------------------------------------------------------- # -lbcs_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/INPUT" +lbcs_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/lbcs" mkdir_vrfy -p "${lbcs_dir}" + +# +#----------------------------------------------------------------------- +# +# Set the name of and create the directory in which the output from this +# script will be saved for a long time (if it doesn't already exist). +# Usually lbcs_dir under tmpnwprd should be purged fairly soon after cycle done +# +#----------------------------------------------------------------------- +# +lbcs_nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/lbcs" +mkdir_vrfy -p "${lbcs_nwges_dir}" + # #----------------------------------------------------------------------- # @@ -64,7 +77,10 @@ mkdir_vrfy -p "${lbcs_dir}" #----------------------------------------------------------------------- # $SCRIPTSDIR/exregional_make_lbcs.sh \ - lbcs_dir="${lbcs_dir}" || \ + lbcs_dir="${lbcs_dir}" \ + lbcs_nwges_dir="${lbcs_nwges_dir}" \ + bcgrp="${bcgrp}" \ + bcgrpnum="${bcgrpnum}" || \ print_err_msg_exit "\ Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." # diff --git a/jobs/JREGIONAL_NONVARCLD b/jobs/JREGIONAL_NONVARCLD new file mode 100755 index 000000000..b8f42c542 --- /dev/null +++ b/jobs/JREGIONAL_NONVARCLD @@ -0,0 +1,138 @@ +#!/bin/bash + +#----------------------------------------------------------------------- +# +# This J-JOB script runs the standalone No-Var Cloud Analysis +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a standalone No-Var cloud +analysis with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="nonvar_cldanl_spinup" +else + analworkname="nonvar_cldanl" +fi +if [ ${MEM_TYPE} == "MEAN" ]; then + workdir="${CYCLE_DIR}/ensmean/${analworkname}" + SLASH_ENSMEM_SUBDIR="" +else + workdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${analworkname}" +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} + +# +# directory has grid_spec files for restart subdomains +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec + +# +#----------------------------------------------------------------------- +# +# create COMOUT/COMIN directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + COMIN="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}${SLASH_ENSMEM_SUBDIR}" + COMIN="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_nonvarcldanl.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + gridspec_dir="${gridspec_dir}" \ + mem_type="${MEM_TYPE}" \ + workdir="${workdir}" \ + comout="${COMOUT}" \ + comin="${COMIN}" \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_PROCESS_BUFR b/jobs/JREGIONAL_PROCESS_BUFR new file mode 100755 index 000000000..319e336e4 --- /dev/null +++ b/jobs/JREGIONAL_PROCESS_BUFR @@ -0,0 +1,124 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the preprocess of BUFR files +# for the FV3-LAM model +# +#----------------------------------------------------------------------- +# +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a BUFR preprocess for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + workdir=${CYCLE_DIR}/process_bufr_spinup + if [ ${DO_ENSEMBLE} == "TRUE" ]; then + workdir=${CYCLE_DIR}/process_bufr_spinup_enkf + fi +else + workdir=${CYCLE_DIR}/process_bufr + if [ ${DO_ENSEMBLE} == "TRUE" ]; then + workdir=${CYCLE_DIR}/process_bufr_enkf + fi +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_process_bufr.sh \ + CYCLE_DIR="${CYCLE_DIR}" WORKDIR="${workdir}" comout="${COMOUT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_PROCESS_LIGHTNING b/jobs/JREGIONAL_PROCESS_LIGHTNING new file mode 100755 index 000000000..57eee6344 --- /dev/null +++ b/jobs/JREGIONAL_PROCESS_LIGHTNING @@ -0,0 +1,119 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the NetCDF ligthning observation preprocess +# for the FV3-LAM model +# +#----------------------------------------------------------------------- +# +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a lightning preprocess for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + workdir=${CYCLE_DIR}/process_lightning_spinup +else + workdir=${CYCLE_DIR}/process_lightning +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc/ensmean" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_process_lightning.sh \ + CYCLE_DIR="${CYCLE_DIR}" WORKDIR="${workdir}" comout="${COMOUT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_PROCESS_RADARREF b/jobs/JREGIONAL_PROCESS_RADARREF new file mode 100755 index 000000000..ecf5c9551 --- /dev/null +++ b/jobs/JREGIONAL_PROCESS_RADARREF @@ -0,0 +1,131 @@ +#!/bin/bash + + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the radar reflectivity preprocess +# for the FV3-LAM model +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a radar reflectivity +preprocess with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + workdir=${CYCLE_DIR}/process_radarref_spinup + if [ ${DO_ENSEMBLE} == "TRUE" ]; then + workdir=${CYCLE_DIR}/process_radarref_spinup_enkf + fi +else + workdir=${CYCLE_DIR}/process_radarref + if [ ${DO_ENSEMBLE} == "TRUE" ]; then + workdir=${CYCLE_DIR}/process_radarref_enkf + fi +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} +# +# +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_process_radarref.sh \ + CYCLE_DIR="${CYCLE_DIR}" cycle_type="${CYCLE_TYPE}" gridspec_dir="${gridspec_dir}" \ + WORKDIR="${workdir}" RADAR_REF_THINNING="${RADAR_REF_THINNING}" comout="${COMOUT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_PROCESS_SMOKE b/jobs/JREGIONAL_PROCESS_SMOKE new file mode 100755 index 000000000..f799b8804 --- /dev/null +++ b/jobs/JREGIONAL_PROCESS_SMOKE @@ -0,0 +1,172 @@ +#!/bin/bash +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the radar reflectivity preprocess +# for the FV3-LAM model +# +#----------------------------------------------------------------------- +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh + +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# + +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a radar reflectivity +preprocess with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + workdir=${CYCLE_DIR}/process_smoke_spinup +else + workdir=${CYCLE_DIR}/process_smoke +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} +# +# +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +# +#----------------------------------------------------------------------- +# +# Set the name of and create the directory in which the output from this +# script will be saved for long time (if that directory doesn't already exist). +# Usually ics_dir under tmpnwprd should be purged fairly soon after cycle done +# +#----------------------------------------------------------------------- +# +rave_nwges_dir=${NWGES_DIR}/RAVE_INTP +mkdir_vrfy -p "${rave_nwges_dir}" +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +cd_vrfy ${workdir} +python -u ${SCRIPTSDIR}/preprocess_smoke.py \ + "${FIX_SMOKE_DUST}/${PREDEF_GRID_NAME}" \ + "${FIRE_RAVE_DIR}" \ + "${workdir}" \ + "${PREDEF_GRID_NAME}" \ +print_err_msg_exit "\ +Call to pyscript \"${scrfunc_fn}\" failed." + +ECHO=/bin/echo +AWK="/bin/gawk --posix" +SED=/bin/sed +DATE=/bin/date + +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +YYYYMMDD=${YYYYMMDDHH:0:8} +HH=${YYYYMMDDHH:8:2} +echo ${YYYYMMDD} +echo ${HH} + +current_day=`${DATE} -d "${YYYYMMDD}"` +HH=${HH} +current_hh=`${DATE} -d ${HH} +"%H"` +prev_hh=`${DATE} -d "$current_hh -24 hour" +"%H"` +previous_day=`${DATE} '+%C%y%m%d' -d "$current_day-1 days"` +previous_day=${previous_day}${prev_hh} +if [ ${CYCLE_TYPE} == "spinup" ]; then + output_filename=SMOKE_RRFS_data_${YYYYMMDDHH}00_spinup.nc +else + output_filename=SMOKE_RRFS_data_${YYYYMMDDHH}00.nc +fi +echo ${previous_day} +echo ${output_filename} + +cd ${workdir} + +# Convert START_TIME from 'YYYYMMDDHH' format to Unix date format, e.g. "Fri May 6 19:50:23 GMT 2005" +if [ `${ECHO} "${previous_day}" | ${AWK} '/^[[:digit:]]{10}$/'` ]; then + previous_day=`${ECHO} "${previous_day}" | ${SED} 's/\([[:digit:]]\{2\}\)$/ \1/'` +else + ${ECHO} "ERROR: start time, '${previous_day}', is not in 'yyyymmddhh' or 'yyyymmdd hh' format" + exit 1 +fi +previous_day=`${DATE} -d "${previous_day}"` +echo ${previous_day} + +nfiles=24 +files2cat=() +for i in $(seq 0 $(($nfiles - 1)) ) +do +timestr=`date +%Y%m%d%H -d "$previous_day + $i hours"` +echo ${timestr} +files2cat[$i]=${PREDEF_GRID_NAME}_intp_${timestr}00_${timestr}00.nc +done +echo ${files2cat[*]} +ncrcat ${files2cat[*]} ${output_filename} +cp ${output_filename} ${rave_nwges_dir} + +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_REFL2TTEN b/jobs/JREGIONAL_REFL2TTEN new file mode 100755 index 000000000..1016e981f --- /dev/null +++ b/jobs/JREGIONAL_REFL2TTEN @@ -0,0 +1,139 @@ +#!/bin/bash + +#----------------------------------------------------------------------- +# +# This J-JOB script runs the ref2tten (reflectivity to temperature tendency) +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a ref2tten with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="refl2tten_spinup" +else + analworkname="refl2tten" +fi +if [ ${MEM_TYPE} == "MEAN" ]; then + workdir="${CYCLE_DIR}/ensmean/${analworkname}" + SLASH_ENSMEM_SUBDIR="" +else + workdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${analworkname}" +fi +rm -fr ${workdir} +mkdir_vrfy -p ${workdir} + +# +# directory has grid_spec files for restart subdomains +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec + +# +#----------------------------------------------------------------------- +# +# create COMOUT/COMIN directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + COMIN="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}${SLASH_ENSMEM_SUBDIR}" + COMIN="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_refl2tten.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + gridspec_dir="${gridspec_dir}" \ + mem_type="${MEM_TYPE}" \ + workdir="${workdir}" \ + comout="${COMOUT}" \ + comin="${COMIN}" \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_ANAL b/jobs/JREGIONAL_RUN_ANAL new file mode 100755 index 000000000..59434314b --- /dev/null +++ b/jobs/JREGIONAL_RUN_ANAL @@ -0,0 +1,176 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the GSI analysis +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +observer_nwges_dir="" + +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="_gsi_spinup" +else + analworkname="_gsi" +fi + +if [[ ! -v OB_TYPE ]]; then + OB_TYPE="conv" +fi +if [ ${GSI_TYPE} == "OBSERVER" ]; then + if [ ${MEM_TYPE} == "MEAN" ]; then + analworkdir="${CYCLE_DIR}/ensmean/observer${analworkname}" + SLASH_ENSMEM_SUBDIR="" + observer_nwges_dir="${NWGES_DIR}/ensmean/observer${analworkname}" + else + analworkdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/observer${analworkname}" + observer_nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/observer${analworkname}" + fi + mkdir_vrfy -p ${observer_nwges_dir} +else + analworkdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/anal_${OB_TYPE}${analworkname}" +fi + +rm -fr ${analworkdir} +mkdir_vrfy -p ${analworkdir} + +if [ ! -d "${SATBIAS_DIR}" ]; then + echo "making satbias_dir directory for cycling bias correction files" + mkdir_vrfy -p ${SATBIAS_DIR} +fi + +# Folder for storing EnKF related satbias files +if [ ${GSI_TYPE} == "OBSERVER" ]; then + if [ ${MEM_TYPE} == "MEAN" ]; then + if [ ! -d "${SATBIAS_DIR}_ensmean" ]; then + echo "making satbias_dir ensmean directory for cycling bias correction files" + mkdir_vrfy -p ${SATBIAS_DIR}_ensmean + fi + fi +fi +# +# directory has grid_spec files for restart subdomains +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + else + if [ ${MEM_TYPE} == "MEAN" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc/ensmean" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}${SLASH_ENSMEM_SUBDIR}" + fi + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_analysis.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + gsi_type="${GSI_TYPE}" \ + mem_type="${MEM_TYPE}" \ + analworkdir="${analworkdir}" \ + observer_nwges_dir="${observer_nwges_dir}" \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" \ + comout="${COMOUT}" \ + rrfse_fg_root="${RRFSE_NWGES_BASEDIR}" \ + satbias_dir="${SATBIAS_DIR}" \ + ob_type="${OB_TYPE}" \ + gridspec_dir="${gridspec_dir}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_ENKF b/jobs/JREGIONAL_RUN_ENKF new file mode 100755 index 000000000..e415b46a4 --- /dev/null +++ b/jobs/JREGIONAL_RUN_ENKF @@ -0,0 +1,112 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the EnKF updates +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + enkfworkdir="${CYCLE_DIR}/enkfupdt_${OB_TYPE}_spinup" +else + enkfworkdir="${CYCLE_DIR}/enkfupdt_${OB_TYPE}" +fi +rm -fr ${enkfworkdir} +mkdir_vrfy -p ${enkfworkdir} + +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_enkf.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + enkfworkdir="${enkfworkdir}" \ + NWGES_DIR="${NWGES_DIR}" \ + ob_type="${OB_TYPE}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_ENSPOST b/jobs/JREGIONAL_RUN_ENSPOST new file mode 100755 index 000000000..bada4a68d --- /dev/null +++ b/jobs/JREGIONAL_RUN_ENSPOST @@ -0,0 +1,115 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script calls a python script to create postprocessed ensemble +# fields in GRIB-2 format from the full set of member GRIB-2 files +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that creates ensemble fields from +the member files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set directories. +# +#----------------------------------------------------------------------- +ens_dir="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc" +rrfs_dir="${ENSCTRL_COMOUT_BASEDIR}/$RUN.$PDY/$cyc" +enspost_dir="${ens_dir}/ensprod" +mkdir_vrfy -p "${enspost_dir}" +cd_vrfy "${enspost_dir}" +ffg_local_dir="${ens_dir}/ensprod/ffg" +mkdir_vrfy -p "${ffg_local_dir}" +ffg_latest="${FFG_DIR}/latest.FFG" +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# + +python -u $SCRIPTSDIR/exregional_enspost.py \ + "${FIX_UPP}/enspost" \ + "${USHDIR}" \ + "${ens_dir}" \ + "${rrfs_dir}" \ + "${enspost_dir}" \ + "${PDY}" \ + "${cyc}" \ + "${fhr}" \ + "${ffg_latest}" \ + "${ffg_local_dir}" \ +print_err_msg_exit "\ +Call to pyscript \"${scrfunc_fn}\" failed." + +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_FCST b/jobs/JREGIONAL_RUN_FCST index a4806c765..695491399 100755 --- a/jobs/JREGIONAL_RUN_FCST +++ b/jobs/JREGIONAL_RUN_FCST @@ -61,11 +61,28 @@ the specified cycle. # Create the INPUT and RESTART directories under the run directory. # #----------------------------------------------------------------------- -# -run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}" +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +CYCLE_SUBTYPE=${CYCLE_SUBTYPE:-empty} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" + if [ ${CYCLE_SUBTYPE} == "ensinit" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_ensinit" + fi +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi mkdir_vrfy -p ${run_dir}/INPUT mkdir_vrfy -p ${run_dir}/RESTART # +# +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +mkdir_vrfy -p ${gridspec_dir} +# #----------------------------------------------------------------------- # # Call the ex-script for this J-job and pass to it the necessary varia- @@ -75,9 +92,14 @@ mkdir_vrfy -p ${run_dir}/RESTART # $SCRIPTSDIR/exregional_run_fcst.sh \ cdate="${CDATE}" \ - cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + cycle_subtype="${CYCLE_SUBTYPE}" \ + cycle_dir="${run_dir}" \ + gridspec_dir="${gridspec_dir}" \ ensmem_indx="${ENSMEM_INDX}" \ - slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" || \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" \ + NWGES_BASEDIR="${NWGES_BASEDIR}" \ + RESTART_HRS="${RESTART_HRS}" || \ print_err_msg_exit "\ Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." # diff --git a/jobs/JREGIONAL_RUN_GSIDIAG b/jobs/JREGIONAL_RUN_GSIDIAG new file mode 100755 index 000000000..1ddc15c69 --- /dev/null +++ b/jobs/JREGIONAL_RUN_GSIDIAG @@ -0,0 +1,149 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the GSI analysis +# for the FV3-LAM model +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +observer_nwges_dir="" + +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="_gsi_spinup" +else + analworkname="_gsi" +fi + +if [[ ! -v OB_TYPE ]]; then + OB_TYPE="conv" +fi +if [ ${GSI_TYPE} == "OBSERVER" ]; then + echo " Error, GSI_TYPE should no be OBSERVER" + exit 1 +else + analworkdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/anal_${OB_TYPE}${analworkname}" +fi + +if [ ! -d "${SATBIAS_DIR}" ]; then + echo "making satbias_dir directory for cycling bias correction files" + mkdir_vrfy -p ${SATBIAS_DIR} +fi + +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + else + if [ ${MEM_TYPE} == "MEAN" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc/ensmean" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}${SLASH_ENSMEM_SUBDIR}" + fi + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_gsidiag.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + gsi_type="${GSI_TYPE}" \ + mem_type="${MEM_TYPE}" \ + analworkdir="${analworkdir}" \ + observer_nwges_dir="${observer_nwges_dir}" \ + comout="${COMOUT}" \ + satbias_dir="${SATBIAS_DIR}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_MAXT b/jobs/JREGIONAL_RUN_MAXT new file mode 100755 index 000000000..14a6fced9 --- /dev/null +++ b/jobs/JREGIONAL_RUN_MAXT @@ -0,0 +1,193 @@ +#!/bin/bash + +########################################################## +# This job... +# +######################################################## + +date +export PS4=' $SECONDS + ' +set -x + +if [ ${cyc} != "07" ] ; then + echo -e "\nWARNING: GETMINT only runs at 07z. Exiting.\n" + exit 0 +fi + + +####################################################### +## The following variable could be defined in the +## submission script (the ecf script), if +## not they will take the default values which is set +## for the NCO running enviroment +######################################################## +export RUN_ENVIR=${RUN_ENVIR:-nco} +# +################## +## Set RUN +################## +export RUN=rtma3d +# +## Note: grib_util module loaded in submission (lsf or ecFlow) script +# +########################################################### +## obtain unique process id (pid) and make temp directories +# +# +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- + + +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh + +################Set previous day cycle index################## +export PDYm1=`$NDATE -24 ${PDY}${cyc} | cut -c 1-8` +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- + + + +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 + + +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" + +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + COMOUT_ges="${COMOUT_BASEDIR_ges}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + COMOUT_ges="${COMOUT_BASEDIR_ges}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir -p "${COMOUT}" + mkdir -p "${COMOUT_ges}" +fi +# +#----------------------------------------------------------------------- +# +# Check for post directory +# +#----------------------------------------------------------------------- +postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd" +if [ ${CYCLE_TYPE} == "spinup" ]; then + postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd_spinup" +fi +mkdir -p "${postprd_dir}" + +fhr_dir="${postprd_dir}/$fhr" +check_for_preexist_dir_file "${fhr_dir}" "delete" +mkdir -p "${fhr_dir}" +###################### +## Execute the scripts. +####################### +# +###################### +## Compute Max T +####################### +# +$SCRIPTSDIR/exregional_run_maxtbg.ksh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ + comout_ges="${COMOUT_ges}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +###################### +## Compute Min RH +####################### +# +$SCRIPTSDIR/exregional_run_minrh.ksh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ + comout_ges="${COMOUT_ges}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_MINT b/jobs/JREGIONAL_RUN_MINT new file mode 100755 index 000000000..85a10a800 --- /dev/null +++ b/jobs/JREGIONAL_RUN_MINT @@ -0,0 +1,195 @@ +#!/bin/bash + +########################################################## +# This job... +# +######################################################## + +date +export PS4=' $SECONDS + ' +set -x + +if [ ${cyc} != "19" ] ; then + echo -e "\nWARNING: GETMINT only runs at 19z. Exiting.\n" + exit 0 +fi + + +####################################################### +## The following variable could be defined in the +## submission script (the ecf script), if +## not they will take the default values which is set +## for the NCO running enviroment +######################################################## +export RUN_ENVIR=${RUN_ENVIR:-nco} +# +################## +## Set RUN +################## +export RUN=rtma3d +# +## Note: grib_util module loaded in submission (lsf or ecFlow) script +# +########################################################### +## obtain unique process id (pid) and make temp directories +# +# +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- + + +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh + +################Set previous day cycle index################## +export PDYm1=`$NDATE -24 ${PDY}${cyc} | cut -c 1-8` + +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- + + + +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 + + +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" + +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + COMOUT_ges="${COMOUT_BASEDIR_ges}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + COMOUT_ges="${COMOUT_BASEDIR_ges}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir -p "${COMOUT}" + mkdir -p "${COMOUT_ges}" +fi +# +#----------------------------------------------------------------------- +# +# Check for post directory +# +#----------------------------------------------------------------------- +postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd" +if [ ${CYCLE_TYPE} == "spinup" ]; then + postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd_spinup" +fi +mkdir -p "${postprd_dir}" + +fhr_dir="${postprd_dir}/$fhr" +check_for_preexist_dir_file "${fhr_dir}" "delete" +mkdir -p "${fhr_dir}" +###################### +## Execute the scripts. +####################### +# + +###################### +## Compute Min T +####################### +# +$SCRIPTSDIR/exregional_run_mintbg.ksh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ + comout_ges="${COMOUT_ges}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +###################### +## Compute Max RH +####################### +# +$SCRIPTSDIR/exregional_run_maxrh.ksh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ + comout_ges="${COMOUT_ges}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_POST b/jobs/JREGIONAL_RUN_POST index e4e2122e4..a23b86fb3 100755 --- a/jobs/JREGIONAL_RUN_POST +++ b/jobs/JREGIONAL_RUN_POST @@ -60,8 +60,16 @@ on the output files corresponding to a specified forecast hour. # Set the run directory. # #----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle # -run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}" +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi # #----------------------------------------------------------------------- # @@ -82,9 +90,15 @@ run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}" # if [ "${RUN_ENVIR}" = "nco" ]; then COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" - postprd_dir="$COMOUT" -else - postprd_dir="${run_dir}/postprd" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd" +if [ ${CYCLE_TYPE} == "spinup" ]; then + postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd_spinup" fi mkdir_vrfy -p "${postprd_dir}" @@ -96,20 +110,6 @@ cd_vrfy "${fhr_dir}" # #----------------------------------------------------------------------- # -# Make sure that fhr is a non-empty string consisting of only digits. -# -#----------------------------------------------------------------------- -# -fhr=$( printf "%s" "${fhr}" | sed -n -r -e "s/^([0-9]+)$/\1/p" ) -if [ -z "$fhr" ]; then - print_err_msg_exit "\ -The forecast hour (fhr) must be a non-empty string consisting of only -digits: - fhr = \"${fhr}\"" -fi -# -#----------------------------------------------------------------------- -# # Call the ex-script for this J-job and pass to it the necessary varia- # bles. # @@ -119,8 +119,11 @@ $SCRIPTSDIR/exregional_run_post.sh \ cdate="${CDATE}" \ run_dir="${run_dir}" \ postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ fhr_dir="${fhr_dir}" \ - fhr="${fhr}" || \ + fhr="${fhr}" \ + tmmark="${TMMARK}" \ + cycle_type="${CYCLE_TYPE}" || \ print_err_msg_exit "\ Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." # diff --git a/jobs/JREGIONAL_RUN_POSTANAL b/jobs/JREGIONAL_RUN_POSTANAL new file mode 100755 index 000000000..830c0f181 --- /dev/null +++ b/jobs/JREGIONAL_RUN_POSTANAL @@ -0,0 +1,156 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script runs the applications after analysis +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +observer_nwges_dir="" + +if [ ${CYCLE_TYPE} == "spinup" ]; then + analworkname="_gsi_spinup" +else + analworkname="_gsi" +fi + +if [[ ! -v OB_TYPE ]]; then + OB_TYPE="conv" +fi +if [ ${GSI_TYPE} == "OBSERVER" ]; then + if [ ${MEM_TYPE} == "MEAN" ]; then + analworkdir="${CYCLE_DIR}/ensmean/observer${analworkname}" + SLASH_ENSMEM_SUBDIR="" + observer_nwges_dir="${NWGES_DIR}/ensmean/observer${analworkname}" + else + analworkdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/observer${analworkname}" + observer_nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/observer${analworkname}" + fi + mkdir_vrfy -p ${observer_nwges_dir} +else + analworkdir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/anal_${OB_TYPE}${analworkname}" +fi + +if [[ ! -d ${analworkdir} ]]; then + echo "cannot find analysis directory" + exit +fi +# +# directory has grid_spec files for restart subdomains +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +# +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir_vrfy -p "${COMOUT}" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_postanal.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + gsi_type="${GSI_TYPE}" \ + mem_type="${MEM_TYPE}" \ + analworkdir="${analworkdir}" \ + observer_nwges_dir="${observer_nwges_dir}" \ + slash_ensmem_subdir="${SLASH_ENSMEM_SUBDIR}" \ + comout="${COMOUT}" \ + satbias_dir="${SATBIAS_DIR}" \ + ob_type="${OB_TYPE}" \ + gridspec_dir="${gridspec_dir}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_PRDGEN b/jobs/JREGIONAL_RUN_PRDGEN new file mode 100755 index 000000000..f2ace3294 --- /dev/null +++ b/jobs/JREGIONAL_RUN_PRDGEN @@ -0,0 +1,151 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script runs wgrib2 to create various subdomain GRIB2 files from +# the raw UPP-generated GRIB2 output from the run_post task of the +# FV3-LAM model. +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs wgrib2 on the output +files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set the run directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +# +#----------------------------------------------------------------------- +# +# If it doesn't already exist, create the directory (postprd_dir) in which +# to store post-processing output. (Note that postprd_dir may already +# have been created by this post-processing script run for a different +# forecast hour of the same cycle and/or ensemble member.) Also, create +# a temporary work directory (fhr_dir) for the current forecast hour. +# fhr_dir will be deleted later after the processing for the current +# forecast hour is complete. Then change location to fhr_dir. +# +# Note that there may be a preexisting version of fhr_dir from previous +# runs of this script for the current forecast hour (and current cycle), +# e.g. from the workflow task that runs this script failing and then being +# called again. Thus, we first make sure preexisting versions are deleted. +# +#----------------------------------------------------------------------- +# +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup${SLASH_ENSMEM_SUBDIR}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd" +if [ ${CYCLE_TYPE} == "spinup" ]; then + postprd_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/postprd_spinup" +fi +mkdir_vrfy -p "${postprd_dir}" + +fhr_dir="${postprd_dir}/$fhr" +check_for_preexist_dir_file "${fhr_dir}" "delete" +mkdir_vrfy -p "${fhr_dir}" + +cd_vrfy "${fhr_dir}" +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_prdgen.sh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + postprd_dir="${postprd_dir}" \ + comout="${COMOUT}" \ + fhr_dir="${fhr_dir}" \ + fhr="${fhr}" \ + tmmark="${TMMARK}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_PREPSTART b/jobs/JREGIONAL_RUN_PREPSTART new file mode 100755 index 000000000..02b090c80 --- /dev/null +++ b/jobs/JREGIONAL_RUN_PREPSTART @@ -0,0 +1,125 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script stages initial and boundary conditions for +# the analysis and model of the cycle it is running. The initial +# could come from external model or previous cycles forecast. +# The boundary could come from previous many cycles. +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +CYCLE_SUBTYPE=${CYCLE_SUBTYPE:-empty} +if [ ${CYCLE_TYPE} == "spinup" ]; then + modelinputdir=${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup/INPUT + if [ ${DO_ENSINIT} == "TRUE" ] && [ ${CYCLE_SUBTYPE} == "ensinit" ]; then + modelinputdir=${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_ensinit/INPUT + fi +else + modelinputdir=${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/INPUT +fi + +rm -fr ${modelinputdir} +mkdir_vrfy -p ${modelinputdir} +# +# +# +gridspec_dir=${NWGES_BASEDIR}/grid_spec +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_prepstart.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + cycle_subtype="${CYCLE_SUBTYPE}" \ + gridspec_dir="${gridspec_dir}" \ + modelinputdir="${modelinputdir}" \ + lbcs_root="${LBCS_ROOT}" \ + fg_root="${FG_ROOT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_PREPSTART_ENSMEAN b/jobs/JREGIONAL_RUN_PREPSTART_ENSMEAN new file mode 100755 index 000000000..1d3f5c8f1 --- /dev/null +++ b/jobs/JREGIONAL_RUN_PREPSTART_ENSMEAN @@ -0,0 +1,111 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script stages initial and boundary conditions for +# the analysis and model of the cycle it is running. The initial +# could come from external model or previous cycles forecast. +# The boundary could come from previous many cycles. +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + modelinputdir=${CYCLE_DIR}/ensmean/fcst_fv3lam_spinup/INPUT +else + modelinputdir=${CYCLE_DIR}/ensmean/fcst_fv3lam/INPUT +fi +rm -fr ${modelinputdir} +mkdir_vrfy -p ${modelinputdir} +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_prepstart_ensmean.sh \ + cycle_type="${CYCLE_TYPE}" \ + modelinputdir="${modelinputdir}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_PREPSTART_FROMEXT b/jobs/JREGIONAL_RUN_PREPSTART_FROMEXT new file mode 100755 index 000000000..23063aaff --- /dev/null +++ b/jobs/JREGIONAL_RUN_PREPSTART_FROMEXT @@ -0,0 +1,114 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script stages initial and boundary conditions for +# the analysis and model of the cycle it is running. The initial +# could come from external model or previous cycles forecast. +# The boundary could come from previous many cycles. +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + modelinputdir=${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup/INPUT +else + modelinputdir=${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/INPUT +fi +rm -fr ${modelinputdir} +mkdir_vrfy -p ${modelinputdir} +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_prepstart_fromext.sh \ + cycle_dir="${CYCLE_DIR}" \ + cycle_type="${CYCLE_TYPE}" \ + modelinputdir="${modelinputdir}" \ + lbcs_root="${LBCS_ROOT}" \ + fg_root="${FG_ROOT}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_PYTHON_GRAPHICS b/jobs/JREGIONAL_RUN_PYTHON_GRAPHICS new file mode 100755 index 000000000..6b0778df2 --- /dev/null +++ b/jobs/JREGIONAL_RUN_PYTHON_GRAPHICS @@ -0,0 +1,256 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script runs the pygraf create_graphics driver for creating +# PNG figures and zipping them for dissemination to the web. +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs the post-processor (UPP) +on the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set the run directory and post directories. +# +#----------------------------------------------------------------------- +# + +if [ "${RUN_ENVIR}" = "nco" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc${SLASH_ENSMEM_SUBDIR}" + COMOUT_mem0="${ENSCTRL_COMOUT_BASEDIR}/$RUN.$PDY/$cyc" + postprd_dir="${COMOUT}/${ENSPROD:-}" + run_dir="${COMOUT}/pyprd" + zip_dir="${COMOUT}/nclprd" +else + postprd_dir="${run_dir}/postprd" + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/pyprd" + zip_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/nclprd" +fi + +if [ "${IS_RTMA}" = "TRUE" ]; then + fcst_length=${FCST_LEN_HRS_CYCLES[$((10#$cyc))]/%.*/} +else + fcst_length=${FCST_LEN_HRS_CYCLES[$((10#$cyc))]} +fi + +IMAGES_FN=${IMAGES_FN:-$PYTHON_GRAPHICS_YML_FN} +# Choose an appropriate sites file for the grid +sites_file=conus_raobs.txt +tiles=${TILES:-full} + +if [[ "${PREDEF_GRID_NAME}" =~ "AK" || \ + "${TILELABEL:-}" == "242" || \ + "${TILELABEL:-}" == "hrrrak" ]] ; then + sites_file=alaska_raobs.txt + tiles=${TILES:-hrrrak} + +elif [[ "${PREDEF_GRID_NAME}" =~ "RAP" || \ + "${PREDEF_GRID_NAME}" =~ "NA" || \ + "${TILELABEL:-}" = "221" ]] ; then + age=5 + wait_time=15 + sites_file=na_raobs.txt + tiles=${TILES:-full} + +elif [[ "${TILELABEL:-}" = hrrr ]] ; then + + # This domain comes from a NA domain, so wait longer. + age=5 + wait_time=15 + tiles=${TILES:-hrrr} + +fi + +# Use a subdirectory for input from alternative wgrib2-produced grids. +wgrib2_grids=( hrrr hrrrak full ) +first_grid=${tiles%%,*} # First in a comma separated list +first_grid=${first_grid%%_*} # First part of an underscore separated string (requirement set by Rocoto) + +sub_conus_grids=( SE SC SW NE NC NW \ + ATL CA-NV CentralCA CHI-DET DCArea EastCO GreatLakes NYC-BOS SEA-POR SouthCA SouthFL VortexSE ) + +sub_ak_grids=( AKRange Anchorage Juneau ) + +if [[ "${sub_conus_grids[*]}" =~ $first_grid ]] ; then + subdir=hrrr_grid +elif [[ "${sub_ak_grids[*]}" =~ $first_grid ]] ; then + subdir=hrrrak_grid +elif [[ "${wgrib2_grids[*]}" =~ $first_grid ]] ; then + subdir=${first_grid:-}_grid +fi + +if [ -d ${postprd_dir}/${subdir} ] ; then + postprd_dir=${postprd_dir}/${subdir} + run_dir=${run_dir}/${subdir:-} + zip_dir=${zip_dir}/${subdir:-} +fi + +if [ "${ENSPROD:-}" = 'ensprod' ] ; then + file_id="ens" + start_hour=1 +fi + +# Choose the appropriate file template for graphics type +net4=$(echo ${NET:0:4} | tr '[:upper:]' '[:lower:]') +if [ ${PREDEF_GRID_NAME} = "RRFS_CONUS_3km" ]; then + gridname="conus_3km." +elif [ ${PREDEF_GRID_NAME} = "RRFS_NA_3km" ]; then + gridname="" +fi + +case ${GRAPHICS_TYPE} in + + "maps") + + file_tmpl="${net4}.t${CDATE:8:2}z.prslev.f{FCST_TIME:03d}.${gridname}grib2" + file_type=prs + extra_args="\ + --tiles $tiles \ + --images ${PYTHON_GRAPHICS_DIR}/image_lists/${IMAGES_FN} hourly" + if [ ${ALL_LEADS:-true} = "true" ] ; then + extra_args="\ + ${extra_args} \ + --all_leads" + fi + ;; + + "skewts") + + file_tmpl="${net4}.t${CDATE:8:2}z.natlev.f{FCST_TIME:03d}.${gridname}grib2" + file_type=nat + extra_args="\ + --sites ${PYTHON_GRAPHICS_DIR}/static/${sites_file} \ + --max_plev 100" + ;; + + "enspanel") + + file_tmpl="${net4}.t${CDATE:8:2}z.prslev.f{FCST_TIME:03d}.${gridname}grib2" + file_type=prs + extra_args="\ + --tiles $tiles \ + --images ${PYTHON_GRAPHICS_DIR}/image_lists/rrfs_ens.yml hourly" + + # Link in control member to the location it should be + ens_mem0=${postprd_dir/'#mem#'/'0000'/} + mem0_fp=${COMOUT_mem0} + mem0_fn=${file_tmpl/'{FCST_TIME:03d}'/'*'} + + mkdir_vrfy -p ${ens_mem0} + pushd ${ens_mem0} + + rm *.grib2 + + for mem0_file in $( find ${mem0_fp} -name ${mem0_fn} ) ; do + cp_vrfy ${mem0_file} . + done + popd + + # Create a python template for postprd_dir + postprd_dir=${postprd_dir/'#mem#'/'{mem:04d}'/} + + # Remove ensemble reference from output locations + run_dir=${run_dir/'/mem#mem#/'//} + zip_dir=${zip_dir/'/mem#mem#/'//} + + ;; + + *) + print_err_msg_exit "\ + GRAPHICS_TYPE \"${GRAPHICS_TYPE}\" is not recognized." + ;; +esac +mkdir_vrfy -p "${run_dir}" +# +#----------------------------------------------------------------------- +# +# Call the graphics driver script. +# +#----------------------------------------------------------------------- +# +cd_vrfy ${PYTHON_GRAPHICS_DIR} +python -u ${PYTHON_GRAPHICS_DIR}/create_graphics.py \ + ${GRAPHICS_TYPE} \ + -a ${age:-3} \ + -d ${postprd_dir} \ + -f ${start_hour:-0} ${fcst_length} \ + --file_tmpl ${file_tmpl} \ + --file_type ${file_type} \ + -m "${MODEL}" \ + -n ${SLURM_CPUS_ON_NODE:-12} \ + -o ${run_dir} \ + -s ${CDATE} \ + -w ${wait_time:-30} \ + -z ${zip_dir} \ + ${extra_args} || +print_err_msg_exit "\ +Call to pyscript \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_RUN_RECENTER b/jobs/JREGIONAL_RUN_RECENTER new file mode 100755 index 000000000..fe251f4cc --- /dev/null +++ b/jobs/JREGIONAL_RUN_RECENTER @@ -0,0 +1,138 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This J-JOB script stages initial and boundary conditions for +# the analysis and model of the cycle it is running. The initial +# could come from external model or previous cycles forecast. +# The boundary could come from previous many cycles. +# +#----------------------------------------------------------------------- + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs a analysis with FV3 for +the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create the working directory under the cycle directory. +# +#----------------------------------------------------------------------- +# +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +if [ ${CYCLE_TYPE} == "spinup" ]; then + recenterdir=${CYCLE_DIR}/recenter/fcst_fv3lam_spinup/INPUT +else + recenterdir=${CYCLE_DIR}/recenter/fcst_fv3lam/INPUT +fi +rm -fr ${recenterdir} +mkdir_vrfy -p ${recenterdir} +#----------------------------------------------------------------------- +# +# create COMOUT directory +# +#----------------------------------------------------------------------- + +if [ "${RUN_ENVIR}" = "nco" ]; then + if [ ${CYCLE_TYPE} == "spinup" ]; then + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}_spinup" + else + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/${cyc}" + fi + mkdir_vrfy -p "${COMOUT}" +fi + +#----------------------------------------------------------------------- +# +# Specify the control anaylsis file location +# +#----------------------------------------------------------------------- +if [[ ${DO_ENSFCST} == "TRUE" ]]; then + ctrlpath=${ENSCTRL_NWGES_DIR} +else + ctrlpath=${ENSCTRL_CYCLE_DIR} +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_run_recenter.sh \ + cycle_type="${CYCLE_TYPE}" \ + comout="${COMOUT}" \ + recenterdir="${recenterdir}" \ + ctrlpath="${ctrlpath}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_SAVE_DA_OUTPUT b/jobs/JREGIONAL_SAVE_DA_OUTPUT new file mode 100755 index 000000000..868a1a6d2 --- /dev/null +++ b/jobs/JREGIONAL_SAVE_DA_OUTPUT @@ -0,0 +1,116 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script runs the save_da_output to save DA analysis files to nwges +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs the post-processor (UPP) +on the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set the run directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +# NWGES_DIR is the directory in which the model IC file (DA analysis) will be saved +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +CYCLE_SUBTYPE=${CYCLE_SUBTYPE:-empty} +if [ ${CYCLE_TYPE} == "prod" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +if [ "${RUN_ENVIR}" = "nco" ]; then + mkdir_vrfy -p "${nwges_dir}/DA_OUTPUT" +fi + +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_save_da_output.sh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + nwges_dir="${nwges_dir}" \ + cycle_type="${CYCLE_TYPE}" \ + cycle_subtype="${CYCLE_SUBTYPE}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/jobs/JREGIONAL_SAVE_RESTART b/jobs/JREGIONAL_SAVE_RESTART new file mode 100755 index 000000000..80ad03f7d --- /dev/null +++ b/jobs/JREGIONAL_SAVE_RESTART @@ -0,0 +1,149 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# This script runs the save_restart to save restart files to nwges +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the J-job script for the task that runs the post-processor (UPP) +on the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Set the run directory. +# +#----------------------------------------------------------------------- +# CYCLE_TYPE is to indicate which type of cycle this job for: +# spinup: this job is for spin-up cycles +# others(prod): this job is for product cycle +# +# NWGES_DIR is the directory in which the model restart file will be saved +# +CYCLE_TYPE=${CYCLE_TYPE:-prod} +CYCLE_SUBTYPE=${CYCLE_SUBTYPE:-empty} +SURFACE_DIR=${SURFACE_DIR:-empty} +if [ ${CYCLE_TYPE} == "spinup" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_spinup" + if [ ${CYCLE_SUBTYPE} == "ensinit" ]; then + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_ensinit" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam_ensinit" + fi +else + run_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" + nwges_dir="${NWGES_DIR}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" +fi + +if [ "${RUN_ENVIR}" == "nco" ]; then + mkdir_vrfy -p "${nwges_dir}/RESTART" + mkdir_vrfy -p "${nwges_dir}/INPUT" + if [ "${SURFACE_DIR}" != "empty" ]; then + mkdir_vrfy -p "${SURFACE_DIR}" + fi +fi + +len_ensmem=${#SLASH_ENSMEM_SUBDIR} +if [ ${len_ensmem} -eq 0 ]; then + CYCLE_SUBTYPE="control" +fi + +# +#----------------------------------------------------------------------- +# +# Make sure that fhr is a non-empty string consisting of only digits. +# +#----------------------------------------------------------------------- +# +fhr=$( printf "%s" "${fhr}" | sed -n -r -e "s/^([0-9]+)$/\1/p" ) +if [ -z "$fhr" ]; then + print_err_msg_exit "\ +The forecast hour (fhr) must be a non-empty string consisting of only +digits: + fhr = \"${fhr}\"" +fi +# +#----------------------------------------------------------------------- +# +# Call the ex-script for this J-job and pass to it the necessary varia- +# bles. +# +#----------------------------------------------------------------------- +# +$SCRIPTSDIR/exregional_save_restart.sh \ + cdate="${CDATE}" \ + run_dir="${run_dir}" \ + nwges_dir="${nwges_dir}" \ + surface_dir="${SURFACE_DIR}" \ + fhr="${fhr}" \ + cycle_type="${CYCLE_TYPE}" \ + cycle_subtype="${CYCLE_SUBTYPE}" || \ +print_err_msg_exit "\ +Call to ex-script corresponding to J-job \"${scrfunc_fn}\" failed." +# +#----------------------------------------------------------------------- +# +# Print exit message. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/modulefiles/tasks/hera/jedienvar_ioda.local b/modulefiles/tasks/hera/jedienvar_ioda.local new file mode 100644 index 000000000..4ce94addb --- /dev/null +++ b/modulefiles/tasks/hera/jedienvar_ioda.local @@ -0,0 +1,8 @@ +#%Module##################################################### +### Module file for jedi ioda task. +############################################################## +# + +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 + diff --git a/modulefiles/tasks/hera/make_grid.local b/modulefiles/tasks/hera/make_grid.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/hera/make_grid.local +++ b/modulefiles/tasks/hera/make_grid.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/make_ics.local b/modulefiles/tasks/hera/make_ics.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/hera/make_ics.local +++ b/modulefiles/tasks/hera/make_ics.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/make_lbcs.local b/modulefiles/tasks/hera/make_lbcs.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/hera/make_lbcs.local +++ b/modulefiles/tasks/hera/make_lbcs.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/run_anal_gsi.local b/modulefiles/tasks/hera/run_anal_gsi.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/hera/run_anal_gsi.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/run_fcst.local b/modulefiles/tasks/hera/run_fcst.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/hera/run_fcst.local +++ b/modulefiles/tasks/hera/run_fcst.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/run_graphics.local b/modulefiles/tasks/hera/run_graphics.local new file mode 100644 index 000000000..12971afc2 --- /dev/null +++ b/modulefiles/tasks/hera/run_graphics.local @@ -0,0 +1,8 @@ +#%Module + +module purge + +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 + +setenv SRW_ENV pygraf diff --git a/modulefiles/tasks/hera/run_post.local b/modulefiles/tasks/hera/run_post.local new file mode 100644 index 000000000..e6e8b14de --- /dev/null +++ b/modulefiles/tasks/hera/run_post.local @@ -0,0 +1,3 @@ +#%Module + +module load wgrib2 diff --git a/modulefiles/tasks/hera/run_prdgen.local b/modulefiles/tasks/hera/run_prdgen.local new file mode 100644 index 000000000..dcb0dd06c --- /dev/null +++ b/modulefiles/tasks/hera/run_prdgen.local @@ -0,0 +1,8 @@ +#%Module + +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow + +#module load cfp/2.0.4 + diff --git a/modulefiles/tasks/hera/run_prepstart.local b/modulefiles/tasks/hera/run_prepstart.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/hera/run_prepstart.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/hera/run_proc_smoke.local b/modulefiles/tasks/hera/run_proc_smoke.local new file mode 100644 index 000000000..a5922e45d --- /dev/null +++ b/modulefiles/tasks/hera/run_proc_smoke.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV /scratch1/BMC/acomp/Johana/miniconda/envs/interpol_esmpy diff --git a/modulefiles/tasks/hera/run_recenter.local b/modulefiles/tasks/hera/run_recenter.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/hera/run_recenter.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/make_grid.local b/modulefiles/tasks/jet/make_grid.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/jet/make_grid.local +++ b/modulefiles/tasks/jet/make_grid.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/make_ics.local b/modulefiles/tasks/jet/make_ics.local index d03fe381e..5f998518b 100644 --- a/modulefiles/tasks/jet/make_ics.local +++ b/modulefiles/tasks/jet/make_ics.local @@ -1,8 +1,6 @@ #%Module module load wgrib2/2.0.8 -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/make_lbcs.local b/modulefiles/tasks/jet/make_lbcs.local index d03fe381e..691b6c03f 100644 --- a/modulefiles/tasks/jet/make_lbcs.local +++ b/modulefiles/tasks/jet/make_lbcs.local @@ -1,8 +1,7 @@ #%Module module load wgrib2/2.0.8 -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 + +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/run_anal_gsi.local b/modulefiles/tasks/jet/run_anal_gsi.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/jet/run_anal_gsi.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/run_enspost.local b/modulefiles/tasks/jet/run_enspost.local new file mode 100644 index 000000000..573a1db02 --- /dev/null +++ b/modulefiles/tasks/jet/run_enspost.local @@ -0,0 +1,9 @@ +#%Module + +module purge + +module load wgrib2/2.0.8 +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 + +setenv SRW_ENV pygraf diff --git a/modulefiles/tasks/jet/run_fcst.local b/modulefiles/tasks/jet/run_fcst.local index 52955b476..24ab727c5 100644 --- a/modulefiles/tasks/jet/run_fcst.local +++ b/modulefiles/tasks/jet/run_fcst.local @@ -1,6 +1,4 @@ #%Module -module use -a /contrib/miniconda3/modulefiles -module load miniconda3 -if [module-info mode load] { - system "conda activate regional_workflow" -} +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/run_graphics.local b/modulefiles/tasks/jet/run_graphics.local new file mode 100644 index 000000000..12971afc2 --- /dev/null +++ b/modulefiles/tasks/jet/run_graphics.local @@ -0,0 +1,8 @@ +#%Module + +module purge + +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 + +setenv SRW_ENV pygraf diff --git a/modulefiles/tasks/jet/run_post.local b/modulefiles/tasks/jet/run_post.local new file mode 100644 index 000000000..e6e8b14de --- /dev/null +++ b/modulefiles/tasks/jet/run_post.local @@ -0,0 +1,3 @@ +#%Module + +module load wgrib2 diff --git a/modulefiles/tasks/jet/run_prdgen.local b/modulefiles/tasks/jet/run_prdgen.local new file mode 100644 index 000000000..dcb0dd06c --- /dev/null +++ b/modulefiles/tasks/jet/run_prdgen.local @@ -0,0 +1,8 @@ +#%Module + +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow + +#module load cfp/2.0.4 + diff --git a/modulefiles/tasks/jet/run_prepstart.local b/modulefiles/tasks/jet/run_prepstart.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/jet/run_prepstart.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/jet/run_proc_smoke.local b/modulefiles/tasks/jet/run_proc_smoke.local new file mode 100644 index 000000000..1900fc5aa --- /dev/null +++ b/modulefiles/tasks/jet/run_proc_smoke.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV /home/Johana.Romero-Alvarez/miniconda3/envs/interpol_esmpy diff --git a/modulefiles/tasks/jet/run_recenter.local b/modulefiles/tasks/jet/run_recenter.local new file mode 100644 index 000000000..24ab727c5 --- /dev/null +++ b/modulefiles/tasks/jet/run_recenter.local @@ -0,0 +1,4 @@ +#%Module +module use /contrib/miniconda3/modulefiles +module load miniconda3/4.5.12 +setenv SRW_ENV regional_workflow diff --git a/modulefiles/tasks/orion/make_grid.local b/modulefiles/tasks/orion/make_grid.local index 1dd1c7e50..3014fa6b6 100644 --- a/modulefiles/tasks/orion/make_grid.local +++ b/modulefiles/tasks/orion/make_grid.local @@ -1,6 +1,6 @@ #%Module module use -a /apps/contrib/miniconda3-noaa-gsl/modulefiles -module load miniconda3 +module load miniconda3/3.8 if [module-info mode load] { system "conda activate regional_workflow" } diff --git a/modulefiles/tasks/orion/make_ics.local b/modulefiles/tasks/orion/make_ics.local index 1dd1c7e50..3014fa6b6 100644 --- a/modulefiles/tasks/orion/make_ics.local +++ b/modulefiles/tasks/orion/make_ics.local @@ -1,6 +1,6 @@ #%Module module use -a /apps/contrib/miniconda3-noaa-gsl/modulefiles -module load miniconda3 +module load miniconda3/3.8 if [module-info mode load] { system "conda activate regional_workflow" } diff --git a/modulefiles/tasks/orion/make_lbcs.local b/modulefiles/tasks/orion/make_lbcs.local index 1dd1c7e50..3014fa6b6 100644 --- a/modulefiles/tasks/orion/make_lbcs.local +++ b/modulefiles/tasks/orion/make_lbcs.local @@ -1,6 +1,6 @@ #%Module module use -a /apps/contrib/miniconda3-noaa-gsl/modulefiles -module load miniconda3 +module load miniconda3/3.8 if [module-info mode load] { system "conda activate regional_workflow" } diff --git a/modulefiles/tasks/orion/run_fcst.local b/modulefiles/tasks/orion/run_fcst.local index 1dd1c7e50..3014fa6b6 100644 --- a/modulefiles/tasks/orion/run_fcst.local +++ b/modulefiles/tasks/orion/run_fcst.local @@ -1,6 +1,6 @@ #%Module module use -a /apps/contrib/miniconda3-noaa-gsl/modulefiles -module load miniconda3 +module load miniconda3/3.8 if [module-info mode load] { system "conda activate regional_workflow" } diff --git a/modulefiles/tasks/wcoss_dell_p3/get_extrn_ics.local b/modulefiles/tasks/wcoss2/get_extrn_ics.local similarity index 62% rename from modulefiles/tasks/wcoss_dell_p3/get_extrn_ics.local rename to modulefiles/tasks/wcoss2/get_extrn_ics.local index 1502c04d5..852843de1 100644 --- a/modulefiles/tasks/wcoss_dell_p3/get_extrn_ics.local +++ b/modulefiles/tasks/wcoss2/get_extrn_ics.local @@ -3,7 +3,5 @@ ############################################################# module purge -module load HPSS/5.0.2.5 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 +module load intel/19.1.3.304 +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss_dell_p3/get_extrn_lbcs.local b/modulefiles/tasks/wcoss2/get_extrn_lbcs.local similarity index 62% rename from modulefiles/tasks/wcoss_dell_p3/get_extrn_lbcs.local rename to modulefiles/tasks/wcoss2/get_extrn_lbcs.local index 74e8f878c..4ce61a0eb 100644 --- a/modulefiles/tasks/wcoss_dell_p3/get_extrn_lbcs.local +++ b/modulefiles/tasks/wcoss2/get_extrn_lbcs.local @@ -3,7 +3,5 @@ ############################################################# module purge -module load HPSS/5.0.2.5 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 +module load intel/19.1.3.304 +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/make_grid.local b/modulefiles/tasks/wcoss2/make_grid.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/make_grid.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/make_ics.local b/modulefiles/tasks/wcoss2/make_ics.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/make_ics.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/make_lbcs.local b/modulefiles/tasks/wcoss2/make_lbcs.local new file mode 100644 index 000000000..e79d46436 --- /dev/null +++ b/modulefiles/tasks/wcoss2/make_lbcs.local @@ -0,0 +1,4 @@ +#%Module + +module load python/3.8.6 + diff --git a/modulefiles/tasks/wcoss_cray/make_orog.local b/modulefiles/tasks/wcoss2/make_orog.local similarity index 100% rename from modulefiles/tasks/wcoss_cray/make_orog.local rename to modulefiles/tasks/wcoss2/make_orog.local diff --git a/modulefiles/tasks/wcoss_cray/make_sfc_climo.local b/modulefiles/tasks/wcoss2/make_sfc_climo.local similarity index 100% rename from modulefiles/tasks/wcoss_cray/make_sfc_climo.local rename to modulefiles/tasks/wcoss2/make_sfc_climo.local diff --git a/modulefiles/tasks/wcoss2/run_anal_gsi.local b/modulefiles/tasks/wcoss2/run_anal_gsi.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_anal_gsi.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/run_fcst.local b/modulefiles/tasks/wcoss2/run_fcst.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_fcst.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/run_post.local b/modulefiles/tasks/wcoss2/run_post.local new file mode 100644 index 000000000..a4d01957b --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_post.local @@ -0,0 +1,5 @@ +#%Module + +module load python/3.8.6 +module load cfp/2.0.4 + diff --git a/modulefiles/tasks/wcoss2/run_prdgen.local b/modulefiles/tasks/wcoss2/run_prdgen.local new file mode 100644 index 000000000..a4d01957b --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_prdgen.local @@ -0,0 +1,5 @@ +#%Module + +module load python/3.8.6 +module load cfp/2.0.4 + diff --git a/modulefiles/tasks/wcoss2/run_prepstart.local b/modulefiles/tasks/wcoss2/run_prepstart.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_prepstart.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/run_proc_smoke.local b/modulefiles/tasks/wcoss2/run_proc_smoke.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_proc_smoke.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss2/run_recenter.local b/modulefiles/tasks/wcoss2/run_recenter.local new file mode 100644 index 000000000..1312e014e --- /dev/null +++ b/modulefiles/tasks/wcoss2/run_recenter.local @@ -0,0 +1,3 @@ +#%Module + +module load python/3.8.6 diff --git a/modulefiles/tasks/wcoss_cray/get_extrn_ics.local b/modulefiles/tasks/wcoss_cray/get_extrn_ics.local deleted file mode 100644 index d540aea2c..000000000 --- a/modulefiles/tasks/wcoss_cray/get_extrn_ics.local +++ /dev/null @@ -1,11 +0,0 @@ -#%Module##################################################### -## Module file for get_extrn_ics task. -############################################################# - -module purge - -module use /usrx/local/prod/modulefiles -module load hpss/4.1.0.3 - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_cray/get_extrn_lbcs.local b/modulefiles/tasks/wcoss_cray/get_extrn_lbcs.local deleted file mode 100644 index d7ec3794e..000000000 --- a/modulefiles/tasks/wcoss_cray/get_extrn_lbcs.local +++ /dev/null @@ -1,11 +0,0 @@ -#%Module##################################################### -## Module file for get_extrn_lbcs task. -############################################################# - -module purge - -module use /usrx/local/prod/modulefiles -module load hpss/4.1.0.3 - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_cray/make_grid.local b/modulefiles/tasks/wcoss_cray/make_grid.local deleted file mode 100644 index edee5d724..000000000 --- a/modulefiles/tasks/wcoss_cray/make_grid.local +++ /dev/null @@ -1,15 +0,0 @@ -#%Module - -module use /opt/cray/ari/modulefiles -module load alps -module load gni-headers -module load pmi/5.0.11 -module load rca -module load udreg -module load ugni -module load xpmem - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 - -module list diff --git a/modulefiles/tasks/wcoss_cray/make_ics.local b/modulefiles/tasks/wcoss_cray/make_ics.local deleted file mode 100644 index 04eb686e1..000000000 --- a/modulefiles/tasks/wcoss_cray/make_ics.local +++ /dev/null @@ -1,17 +0,0 @@ -#%Module - -module use /opt/cray/ari/modulefiles -module load alps -module load gni-headers -module load pmi/5.0.11 -module load rca -module load udreg -module load ugni -module load xpmem - -module use /usrx/local/prod/modulefiles -module load hpss/4.1.0.3 - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 - diff --git a/modulefiles/tasks/wcoss_cray/make_lbcs.local b/modulefiles/tasks/wcoss_cray/make_lbcs.local deleted file mode 100644 index 04eb686e1..000000000 --- a/modulefiles/tasks/wcoss_cray/make_lbcs.local +++ /dev/null @@ -1,17 +0,0 @@ -#%Module - -module use /opt/cray/ari/modulefiles -module load alps -module load gni-headers -module load pmi/5.0.11 -module load rca -module load udreg -module load ugni -module load xpmem - -module use /usrx/local/prod/modulefiles -module load hpss/4.1.0.3 - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 - diff --git a/modulefiles/tasks/wcoss_cray/run_fcst.local b/modulefiles/tasks/wcoss_cray/run_fcst.local deleted file mode 100644 index edee5d724..000000000 --- a/modulefiles/tasks/wcoss_cray/run_fcst.local +++ /dev/null @@ -1,15 +0,0 @@ -#%Module - -module use /opt/cray/ari/modulefiles -module load alps -module load gni-headers -module load pmi/5.0.11 -module load rca -module load udreg -module load ugni -module load xpmem - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 - -module list diff --git a/modulefiles/tasks/wcoss_cray/run_post.local b/modulefiles/tasks/wcoss_cray/run_post.local deleted file mode 100644 index 4529dd2f3..000000000 --- a/modulefiles/tasks/wcoss_cray/run_post.local +++ /dev/null @@ -1,18 +0,0 @@ -#%Module - -module use /opt/cray/ari/modulefiles -module load alps -module load gni-headers -module load pmi/5.0.11 -module load rca -module load udreg -module load ugni -module load xpmem - -module use /usrx/local/prod/modulefiles -module load hpss/4.1.0.3 - -module use /usrx/local/nceplibs/modulefiles -module load srw-app-python/1.0.0 - - diff --git a/modulefiles/tasks/wcoss_dell_p3/make_grid.local b/modulefiles/tasks/wcoss_dell_p3/make_grid.local deleted file mode 100644 index 0e2555064..000000000 --- a/modulefiles/tasks/wcoss_dell_p3/make_grid.local +++ /dev/null @@ -1,7 +0,0 @@ -#%Module - -module load lsf/10.1 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_dell_p3/make_ics.local b/modulefiles/tasks/wcoss_dell_p3/make_ics.local deleted file mode 100644 index 0e2555064..000000000 --- a/modulefiles/tasks/wcoss_dell_p3/make_ics.local +++ /dev/null @@ -1,7 +0,0 @@ -#%Module - -module load lsf/10.1 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_dell_p3/make_lbcs.local b/modulefiles/tasks/wcoss_dell_p3/make_lbcs.local deleted file mode 100644 index 0e2555064..000000000 --- a/modulefiles/tasks/wcoss_dell_p3/make_lbcs.local +++ /dev/null @@ -1,7 +0,0 @@ -#%Module - -module load lsf/10.1 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_dell_p3/run_fcst.local b/modulefiles/tasks/wcoss_dell_p3/run_fcst.local deleted file mode 100644 index 5b62d935f..000000000 --- a/modulefiles/tasks/wcoss_dell_p3/run_fcst.local +++ /dev/null @@ -1,7 +0,0 @@ -#%Module - -module unload python/2.7.14 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 diff --git a/modulefiles/tasks/wcoss_dell_p3/run_post.local b/modulefiles/tasks/wcoss_dell_p3/run_post.local deleted file mode 100644 index 9e6f62305..000000000 --- a/modulefiles/tasks/wcoss_dell_p3/run_post.local +++ /dev/null @@ -1,7 +0,0 @@ -#%Module - -module load lsf/10.1 - -module use /usrx/local/nceplibs/dev/modulefiles -module load srw-app-python/1.0.0 - diff --git a/scripts/exregional_archive.ksh b/scripts/exregional_archive.ksh new file mode 100755 index 000000000..57649d1c8 --- /dev/null +++ b/scripts/exregional_archive.ksh @@ -0,0 +1,164 @@ +#!/bin/ksh --login +module load hpss +set -u -x + +. ${GLOBAL_VAR_DEFNS_FP} + +if [[ "${NET}" = "RTMA"* ]]; then #archive RTMA runs +<< FORTEST #comment out "FORTEST" lines to do offline tests +PDY=20230224 +cyc=00 +CYCLE_DIR=/tmp/gge/rtma +CDATE=$PDY$cyc +BASEDIR=/lfs4/BMC/nrtrr/NCO_dirs/rtma.v0.3.0 +RUN=RTMA_CONUS +cd $CYCLE_DIR +ln -snf $BASEDIR/stmp/$CDATE/* . +COMROOT=$BASEDIR/com +COMOUT_BASEDIR=$BASEDIR/com/prod +ARCHIVEDIR=/BMC/wrfruc/5year/rtma_b +FORTEST +# + YYYY=${PDY:0:4} + MM=${PDY:4:2} + DD=${PDY:6:2} + + workdir=$CYCLE_DIR/archive + rm -rf $workdir + mkdir -p $workdir + cd $workdir + mkdir -p bkg com.prod rundir + + #bkg + cd bkg + ln -snf $CYCLE_DIR/fcst_fv3lam/INPUT/bk_fv_core.res.tile1.nc . + ln -snf $CYCLE_DIR/fcst_fv3lam/INPUT/bk_phy_data.nc . + ln -snf $CYCLE_DIR/fcst_fv3lam/INPUT/bk_sfc_data.nc . + ln -snf $CYCLE_DIR/fcst_fv3lam/INPUT/bk_fv_tracer.res.tile1.nc . + zip -9 fv3_dynvars.zip bk_fv_core.res.tile1.nc & + zip -9 fv3_phyvars.zip bk_phy_data.nc & + zip -9 fv3_tracer.zip bk_fv_tracer.res.tile1.nc & + zip -9 fv3_sfcdata.zip bk_sfc_data.nc & + cd .. + + #log + ln -snf ${COMROOT}/logs/$RUN.$PDY/$cyc logs + zip -9 logs.zip logs/* & + + #rundir + cd rundir + mkdir -p gsi process_bufr process_radarref/00 + cd gsi + ln -snf $CYCLE_DIR/anal_conv_gsi/* . + rm -rf pe0* *eff.bin diag* gsi.x fv3_tracer fv3*vars fv3_sfcdata obs_input.00* + cd .. + zip -9 gsi.zip gsi/* & + + cd process_bufr + ln -snf $CYCLE_DIR/process_bufr/* . + rm -rf *.exe + cd .. + zip -9 process_bufr.zip process_bufr/* & + + cd process_radarref/00 + ln -snf $CYCLE_DIR/process_radarref/00/* . + rm -rf *.exe + cd ../.. + zip -9 process_radarref.zip process_radarref/*/* & + cd .. + + #com.prod + cd com.prod + COMOUT="${COMOUT_BASEDIR}/$RUN.$PDY/$cyc" + ln -snf $COMOUT/* . + rm -rf ${RUN}*.grib2 BG*0 #remove duplicate links + cd .. + zip -9 com.prod.zip com.prod/* & + + wait + + #remove links + rm -rf bkg/bk_*.nc #remove the link + rm -rf logs + rm -rf rundir/{gsi,process_bufr,process_radarref} + rm -rf com.prod + + #check whether HPSS is accessible + timeout 10s hsi ls 1>/dev/null 2>/dev/null + if [ $? -ne 0 ]; then + echo "HPSS is not accessible, exit" + exit 1 + fi + + hsi mkdir -p ${ARCHIVEDIR}/$YYYY/$MM/$DD + htar -cvf ${ARCHIVEDIR}/$YYYY/$MM/$DD/$CDATE.tar * + + cd .. + rm -rf $workdir + + exit 0 +fi + +#------------------------------ RRFS ------------------------------# +currentime=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +day=$(date +%d -d "${currentime} 24 hours ago") +month=$(date +%m -d "${currentime} 24 hours ago") +year=$(date +%Y -d "${currentime} 24 hours ago") + +cd ${COMOUT_BASEDIR} +set -A XX `ls -d ${RUN}.$year$month$day/* | sort -r` +runcount=${#XX[*]} +if [[ $runcount -gt 0 ]];then + + hsi mkdir -p $ARCHIVEDIR/$year/$month/$day + + for onerun in ${XX[*]};do + + echo "Archive files from ${onerun}" + hour=${onerun##*/} + + if [[ -e ${COMOUT_BASEDIR}/${onerun}/nclprd/full/files.zip ]];then + echo "Graphics..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/nclprd/* $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + fi + + set -A YY `ls -d ${COMOUT_BASEDIR}/${onerun}/*bg*tm*` + postcount=${#YY[*]} + echo $postcount + if [[ $postcount -gt 0 ]];then + echo "GRIB-2..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/postprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/*bg*tm* $COMOUT_BASEDIR/stage/$year$month$day$hour/postprd + fi + + if [[ -e ${COMOUT_BASEDIR}/stage/$year$month$day$hour ]];then + cd ${COMOUT_BASEDIR}/stage + htar -chvf $ARCHIVEDIR/$year/$month/$day/post_$year$month$day$hour.tar $year$month$day$hour + rm -rf $year$month$day$hour + fi + + done +fi + +rmdir $COMOUT_BASEDIR/stage + +cd ${NWGES_BASEDIR} +set -A YY `ls -d ${year}${month}${day}?? | sort -r` +runcount=${#YY[*]} +if [[ $runcount -gt 0 ]];then + + hsi mkdir -p $ARCHIVEDIR/$year/$month/$day + + for onerun in ${YY[*]};do + hour=$(echo $onerun | cut -c9-10 ) + htar -chvf $ARCHIVEDIR/$year/$month/$day/nwges_${onerun} ${onerun} + done + +fi + + +dateval=`date` +echo "Completed archive at "$dateval +exit 0 + diff --git a/scripts/exregional_archive_emc.ksh b/scripts/exregional_archive_emc.ksh new file mode 100755 index 000000000..7c69b64b0 --- /dev/null +++ b/scripts/exregional_archive_emc.ksh @@ -0,0 +1,116 @@ +#!/bin/bash + +#module load HPSS/5.0.2.5 + +set -x +module list + +currentime=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +day=$(date +%d -d "${currentime} 0 hours ago") +month=$(date +%m -d "${currentime} 0 hours ago") +year=$(date +%Y -d "${currentime} 0 hours ago") +hour=$(date +%H -d "${currentime} 0 hours ago") + + +. ${GLOBAL_VAR_DEFNS_FP} + +echo $CDATE +echo $currentime +echo $year $month $day $hour +cd ${COMOUT_BASEDIR}/${RUN}.$year$month$day/$hour + +files0=`ls -1 rrfs.*.testbed*` +files1=`ls -1 rrfs.*.prslev*` +files2=`ls -1 rrfs.*.natlev*` + +runcount=${#files0} + +echo $runcount + +if [[ $runcount -gt 0 ]];then + hsi mkdir -p $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.prslev.conus_3km.grib2.tar rrfs.t${hour}z.prslev.f*.conus_3km.grib2 + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.natlev.conus_3km.grib2.tar rrfs.t${hour}z.natlev.f*.conus_3km.grib2 + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.testbed.conus_3km.grib2.tar rrfs.t${hour}z.testbed.f*.conus_3km.grib2 +fi + + +files3=`ls -1 rrfs.*.conusfv3*` +runcount3=${#files3} +if [[ $runcount3 -gt 0 ]];then + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.conus_3km.bufrsnd.tar rrfs.t${hour}z.conusfv3.bufrsnd.tar.gz rrfs.t${hour}z.conusfv3.class1.bufr rrfs.t${hour}z.conusfv3.profilm.c1 +fi + +files4=`ls -1 rrfs.*.fits*` +runcount4=${#files4} +if [[ $runcount4 -gt 0 ]];then + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.fits.tar rrfs.t${hour}z.fit*.tm00 +fi + +fitdir=${COMOUT_BASEDIR}/${RUN}.$year$month$day/${hour}_spinup +if [ -d $fitdir ];then + cd $fitdir + files5=`ls -1 rrfs.*.fits*` + runcount5=${#files5} + if [[ $runcount5 -gt 0 ]];then + htar -chvf $ARCHIVEDIR/rh$year/$year$month/$year$month$day/$hour/prod/rrfs.t${hour}z.fits.spinup.tar rrfs.t${hour}z.fit*.tm00 + fi +fi + +exit + + + +exit +#!/bin/ksh --login + +module load hpss + +day=`date -u "+%d" -d "-1 day"` +month=`date -u "+%m" -d "-1 day"` +year=`date -u "+%Y" -d "-1 day"` + +. ${GLOBAL_VAR_DEFNS_FP} + +cd ${COMOUT_BASEDIR} +set -A XX `ls -d ${RUN}.$year$month$day/* | sort -r` +runcount=${#XX[*]} +if [[ $runcount -gt 0 ]];then + + hsi mkdir -p $ARCHIVEDIR/$year/$month/$day + + for onerun in ${XX[*]};do + + echo "Archive files from ${onerun}" + hour=${onerun##*/} + + if [[ -e ${COMOUT_BASEDIR}/${onerun}/nclprd/full/files.zip ]];then + echo "Graphics..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/nclprd/* $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + fi + + set -A YY `ls -d ${COMOUT_BASEDIR}/${onerun}/*bg*tm*` + postcount=${#YY[*]} + echo $postcount + if [[ $postcount -gt 0 ]];then + echo "GRIB-2..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/postprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/*bg*tm* $COMOUT_BASEDIR/stage/$year$month$day$hour/postprd + fi + + if [[ -e ${COMOUT_BASEDIR}/stage/$year$month$day$hour ]];then + cd ${COMOUT_BASEDIR}/stage + htar -chvf $ARCHIVEDIR/$year/$month/$day/$year$month$day$hour.tar $year$month$day$hour + rm -rf $year$month$day$hour + fi + + done +fi + +rmdir $COMOUT_BASEDIR/stage + +dateval=`date` +echo "Completed archive at "$dateval +exit 0 + diff --git a/scripts/exregional_archive_ens.ksh b/scripts/exregional_archive_ens.ksh new file mode 100755 index 000000000..26b6b09d3 --- /dev/null +++ b/scripts/exregional_archive_ens.ksh @@ -0,0 +1,187 @@ +#!/bin/ksh --login + +module load hpss + +day=$(date -u "+%d" -d "-1 day") +month=$(date -u "+%m" -d "-1 day") +year=$(date -u "+%Y" -d "-1 day") + +. ${GLOBAL_VAR_DEFNS_FP} + +cd ${COMOUT_BASEDIR} +set -A XX $(ls -d ${RUN}.$year$month$day/* | sort) +runcount=${#XX[*]} + +if [[ $runcount -gt 0 ]];then + + hsi mkdir -p $ARCHIVEDIR/$year/$month/$day + + for onerun in ${XX[*]}; do + + echo "Archive files from ${onerun}" + hour=${onerun##*/} +# +#------------------------------------------------------------------------- +# +# Archiving python graphics +# +#------------------------------------------------------------------------- +# + if [ "$(ls ${COMOUT_BASEDIR}/${onerun}/pyprd)" ]; then + echo "Python Graphics..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/pyprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/pyprd/* $COMOUT_BASEDIR/stage/$year$month$day$hour/pyprd + fi +# +#------------------------------------------------------------------------- +# +# Archiving ncl graphics +# +#------------------------------------------------------------------------- +# + if [ "$(ls ${COMOUT_BASEDIR}/${onerun}/nclprd)" ]; then + echo "NCL Graphics..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/nclprd/* $COMOUT_BASEDIR/stage/$year$month$day$hour/nclprd + fi +# +#------------------------------------------------------------------------- +# +# Archiving ensprod +# +#------------------------------------------------------------------------- +# + if [ "$(ls ${COMOUT_BASEDIR}/${onerun}/ensprod)" ]; then + echo "ensprod..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/ensprod + cp -rsv ${COMOUT_BASEDIR}/${onerun}/ensprod/* $COMOUT_BASEDIR/stage/$year$month$day$hour/ensprod + fi +# +#------------------------------------------------------------------------- +# +# Archiving EnKF diag files +# +#------------------------------------------------------------------------- +# + if [[ -d ${CYCLE_BASEDIR}/$year$month$day$hour/enkfupdt ]];then + echo "EnKF Diag ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/enkfupdt + cp ${CYCLE_BASEDIR}/$year$month$day$hour/enkfupdt/std* $COMOUT_BASEDIR/stage/$year$month$day$hour/enkfupdt + cp ${CYCLE_BASEDIR}/$year$month$day$hour/enkfupdt/enkf.nml $COMOUT_BASEDIR/stage/$year$month$day$hour/enkfupdt + fi +# +#------------------------------------------------------------------------- +# +# Archiving INPUT/ files +# +#------------------------------------------------------------------------- +# + if [[ -d ${CYCLE_BASEDIR}/$year$month$day$hour/recenter/fcst_fv3lam/INPUT ]];then + echo "Re-center Diag ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/recenter/fcst_fv3lam/INPUT + cp ${CYCLE_BASEDIR}/$year$month$day$hour/recenter/fcst_fv3lam/INPUT/std* $COMOUT_BASEDIR/stage/$year$month$day$hour/recenter/fcst_fv3lam/INPUT + cp ${CYCLE_BASEDIR}/$year$month$day$hour/recenter/fcst_fv3lam/INPUT/fv3sar_tile1_dynvar $COMOUT_BASEDIR/stage/$year$month$day$hour/recenter/fcst_fv3lam/INPUT + cp ${CYCLE_BASEDIR}/$year$month$day$hour/recenter/fcst_fv3lam/INPUT/fv3sar_tile1_tracer $COMOUT_BASEDIR/stage/$year$month$day$hour/recenter/fcst_fv3lam/INPUT + cp ${CYCLE_BASEDIR}/$year$month$day$hour/recenter/fcst_fv3lam/INPUT/fv3sar_tile1_phyvar $COMOUT_BASEDIR/stage/$year$month$day$hour/recenter/fcst_fv3lam/INPUT + fi +# +#------------------------------------------------------------------------- +# +# Archiving GRIB-2 forecast data +# +#------------------------------------------------------------------------- +# + for imem in $(seq 1 $nens) ; do + + ensmem="mem"$(printf %04i $imem) + + set -A YY $(ls -d ${COMOUT_BASEDIR}/${onerun}/${ensmem}/*bg*tm*) + postcount=${#YY[*]} + echo $postcount + if [[ $postcount -gt 0 ]];then + echo "GRIB-2 for ${ensmem} ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/postprd + cp -rsv ${COMOUT_BASEDIR}/${onerun}/${ensmem}/*bg*tm* $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/postprd + fi + + if [[ -e ${CYCLE_BASEDIR}/$year$month$day$hour/${ensmem}/fcst_fv3lam/INPUT/gfs_data.tile7.halo0.nc ]]; then + echo "INPUT for ${ensmem} ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/fcst_fv3lam/input + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/${ensmem}/fcst_fv3lam/INPUT $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/fcst_fv3lam/input + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/${ensmem}/fcst_fv3lam/input.nml $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/fcst_fv3lam/input + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/${ensmem}/fcst_fv3lam/model_configure $COMOUT_BASEDIR/stage/$year$month$day$hour/${ensmem}/fcst_fv3lam/input + fi + + done + +# +#------------------------------------------------------------------------- +# +# Archiving restart and input data from NWGES +# +#------------------------------------------------------------------------- +# + for imem in $(seq 1 $nens) ; do + + ensmem="mem"$(printf %04i $imem) + + set -A YY $(ls -d ${NWGES_BASEDIR}/$year$month$day$hour/${ensmem}/*) + postcount=${#YY[*]} + echo $postcount + if [[ $postcount -gt 0 ]];then + echo "NWGES (fcst_fv3lam, observer_gsi) for ${ensmem} ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/nwges/${ensmem} + cp -rsv ${NWGES_BASEDIR}/$year$month$day$hour/${ensmem}/* $COMOUT_BASEDIR/stage/$year$month$day$hour/nwges/${ensmem} + fi + + done +# +#------------------------------------------------------------------------- +# +# Archiving GSI diag files from observer runs +# +#------------------------------------------------------------------------- +# + for imem in $(seq 1 $nens) ensmean; do + if [ ${imem} == "ensmean" ]; then + ensmem="ensmean" + else + ensmem="mem"$(printf %04i $imem) + fi + if [[ -d ${CYCLE_BASEDIR}/$year$month$day$hour/$ensmem/observer_gsi ]];then + echo "GSI Diag for $ensmem ..." + mkdir -p $COMOUT_BASEDIR/stage/$year$month$day$hour/$ensmem/observer_gsi + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/$ensmem/observer_gsi/diag* $COMOUT_BASEDIR/stage/$year$month$day$hour/$ensmem/observer_gsi + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/$ensmem/observer_gsi/stdout $COMOUT_BASEDIR/stage/$year$month$day$hour/$ensmem/observer_gsi + cp -rsv ${CYCLE_BASEDIR}/$year$month$day$hour/$ensmem/observer_gsi/gsiparm.anl $COMOUT_BASEDIR/stage/$year$month$day$hour/$ensmem/observer_gsi + fi + done + +# +#------------------------------------------------------------------------- +# +# Using htar to put the staged data to HPSS +# +#------------------------------------------------------------------------- +# + if [[ -e ${COMOUT_BASEDIR}/stage/$year$month$day$hour ]];then + cd ${COMOUT_BASEDIR}/stage + htar -chvf $ARCHIVEDIR/$year/$month/$day/$year$month$day$hour.tar $year$month$day$hour + rm -rf $year$month$day$hour + fi + + done +fi +# +#------------------------------------------------------------------------- +# +# Remove the staged data on disk +# +#------------------------------------------------------------------------- +# +rmdir $COMOUT_BASEDIR/stage + +dateval=$(date) +echo "Completed archive at "$dateval +exit 0 + diff --git a/scripts/exregional_bufrsnd.sh b/scripts/exregional_bufrsnd.sh new file mode 100755 index 000000000..235c00e01 --- /dev/null +++ b/scripts/exregional_bufrsnd.sh @@ -0,0 +1,480 @@ +#!/bin/bash + +# +module load gempak/7.15.1 +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the bufr-sounding +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"nwges_dir" \ +"bufrsnd_dir" \ +"comout" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +"cycle_type" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in + + "WCOSS2") + ncores=$(( NNODES_RUN_BUFRSND*PPN_RUN_BUFRSND)) + APRUNC="mpiexec -n ${ncores} -ppn ${PPN_RUN_BUFRSND}" + APRUNS="time" + ;; + + "HERA") + APRUN="srun" + ;; + + "ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; + + "JET") + APRUN="srun" + ;; + + "ODIN") + APRUN="srun -n 1" + ;; + + "CHEYENNE") + module list + nprocs=$(( NNODES_RUN_POST*PPN_RUN_POST )) + APRUN="mpirun -np $nprocs" + ;; + + "STAMPEDE") + nprocs=$(( NNODES_RUN_POST*PPN_RUN_POST )) + APRUN="ibrun -n $nprocs" + ;; + + *) + print_err_msg_exit "\ +Run command has not been specified for this machine: + MACHINE = \"$MACHINE\" + APRUN = \"$APRUN\"" + ;; + +esac +set -x +# +#----------------------------------------------------------------------- +# +# Remove any files from previous runs. +# +#----------------------------------------------------------------------- +# +rm_vrfy -f fort.* +# +#----------------------------------------------------------------------- +# +# Get the cycle date and hour (in formats of yyyymmdd and hh, respectively) +# from cdate. +# +#----------------------------------------------------------------------- +# +yyyymmdd=${cdate:0:8} +hh=${cdate:8:2} +cyc=$hh +# +#----------------------------------------------------------------------- +# +# Create a text file (itag) containing arguments to pass to the post- +# processing executable. +# +#----------------------------------------------------------------------- +# +dom=conus +NEST=${dom} +MODEL=fv3 +PARMfv3=${FIX_BUFRSND} #/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS/bufrsnd + +DATA=$bufrsnd_dir +EXECfv3=$EXECDIR +COMOUT=$comout + +mkdir -p $DATA/bufrpost +cd $DATA/bufrpost + +RUNLOC=${NEST}${MODEL} + +export tmmark=tm00 + +#echo FIXsar is $FIXsar +#echo profdat file name is regional_${RUNLOC}_profdat + + +cp $PARMfv3/${PREDEF_GRID_NAME}/rrfs_profdat regional_profdat + +OUTTYP=netcdf + +model=FV3S + +INCR=01 +FHRLIM=60 +#FHRLIM=1 + +let NFILE=1 + +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +PDY=$cdate + +YYYY=`echo $PDY | cut -c1-4` +MM=`echo $PDY | cut -c5-6` +DD=`echo $PDY | cut -c7-8` +CYCLE=$PDY$cyc + +startd=$YYYY$MM$DD +startdate=$CYCLE + +STARTDATE=${YYYY}-${MM}-${DD}_${cyc}:00:00 +#endtime=`$NDATE $FHRLIM $CYCLE` +endtime=$(date +%Y%m%d%H -d "${START_DATE} +60 hours") + +YYYY=`echo $endtime | cut -c1-4` +MM=`echo $endtime | cut -c5-6` +DD=`echo $endtime | cut -c7-8` + +FINALDATE=${YYYY}-${MM}-${DD}_${cyc}:00:00 + +if [ -e sndpostdone00.tm00 ] +then + +lasthour=`ls -1rt sndpostdone??.tm00 | tail -1 | cut -c 12-13` +typeset -Z2 lasthour + +let "fhr=lasthour+1" +typeset -Z2 fhr + +else + +fhr=00 + +fi + +echo starting with fhr $fhr + +#cd $DATA/bufrpost + + +INPUT_DATA=$run_dir +######################################################## + +while [ $fhr -le $FHRLIM ] +do + +#date=`$NDATE $fhr $CYCLE` +date=$(date +%Y%m%d%H -d "${START_DATE} +${fhr} hours") + +let fhrold="$fhr - 1" + +if [ $model == "FV3S" ] +then + +OUTFILDYN=$INPUT_DATA/dynf0${fhr}.nc +OUTFILPHYS=$INPUT_DATA/phyf0${fhr}.nc + +icnt=1 + + +# wait for model restart file +while [ $icnt -lt 1000 ] +do + if [ -s $INPUT_DATA/log.atm.f0${fhr} ] + then + break + else + icnt=$((icnt + 1)) + sleep 9 + fi +if [ $icnt -ge 200 ] +then + msg="FATAL ERROR: ABORTING after 30 minutes of waiting for FV3S ${RUNLOC} FCST F${fhr} to end." + exit + #err_exit $msg +fi +done + +else + msg="FATAL ERROR: ABORTING due to bad model selection for this script" + exit + #err_exit $msg +fi + +NSTAT=1850 +datestr=`date` +echo top of loop after found needed log file for $fhr at $datestr + +cat > itag < pgmout.log_${fhr} 2>&1 +export err=$? +#err_chk + +echo DONE $fhr at `date` + +mv $DATA/bufrpost/profilm.c1.${tmmark} $DATA/profilm.c1.${tmmark}.f${fhr} +echo done > $DATA/sndpostdone${fhr}.${tmmark} + +cat $DATA/profilm.c1.${tmmark} $DATA/profilm.c1.${tmmark}.f${fhr} > $DATA/profilm_int +mv $DATA/profilm_int $DATA/profilm.c1.${tmmark} + +fhr=`expr $fhr + $INCR` + + +if [ $fhr -lt 10 ] +then +fhr=0$fhr +fi + +#wdate=`$NDATE ${fhr} $CYCLE` + +done + +cd $DATA + +######################################################## +############### SNDP code +######################################################## + +export pgm=hiresw_sndp_${RUNLOC} + +cp $PARMfv3/regional_sndp.parm.mono $DATA/regional_sndp.parm.mono +cp $PARMfv3/regional_bufr.tbl $DATA/regional_bufr.tbl + +export FORT11="$DATA/regional_sndp.parm.mono" +export FORT32="$DATA/regional_bufr.tbl" +export FORT66="$DATA/profilm.c1.${tmmark}" +export FORT78="$DATA/class1.bufr" + +#startmsg + +echo here RUNLOC $RUNLOC +echo here MODEL $MODEL +echo here model $model + +pgmout=sndplog + +nlev=65 +#echo "${model} $nlev" > itag + +FCST_LEN_HRS=$FHRLIM +echo "$nlev $NSTAT $FCST_LEN_HRS" > itag +${APRUNS} $EXECfv3/rrfs_sndp.x < itag >> $pgmout 2>$pgmout +#export err=$? + +SENDCOM=YES + +if [ $SENDCOM == "YES" ] +then +cp $DATA/class1.bufr $COMOUT/rrfs.t${cyc}z.${RUNLOC}.class1.bufr +cp $DATA/profilm.c1.${tmmark} ${COMOUT}/rrfs.t${cyc}z.${RUNLOC}.profilm.c1 +fi + +# remove bufr file breakout directory in $COMOUT if it exists + +if [ -d ${COMOUT}/bufr.${NEST}${MODEL}${cyc} ] +then + cd $COMOUT + rm -r bufr.${NEST}${MODEL}${cyc} + cd $DATA +fi + + +rm stnmlist_input + +cat < stnmlist_input +1 +$DATA/class1.bufr +${COMOUT}/bufr.${NEST}${MODEL}${cyc}/${NEST}${MODEL}bufr +EOF + + mkdir -p ${COMOUT}/bufr.${NEST}${MODEL}${cyc} + + export pgm=regional_stnmlist +# . prep_step + + export FORT20=$DATA/class1.bufr + export DIRD=${COMOUT}/bufr.${NEST}${MODEL}${cyc}/${NEST}${MODEL}bufr + +# startmsg +echo "before stnmlist.x" +date +pgmout=stnmlog +${APRUNS} $EXECfv3/rrfs_stnmlist.x < stnmlist_input >> $pgmout 2>errfile +echo "after stnmlist.x" +date + + export err=$? + + echo ${COMOUT}/bufr.${NEST}${MODEL}${cyc} > ${COMOUT}/bufr.${NEST}${MODEL}${cyc}/bufrloc + +# cp class1.bufr.tm00 $COMOUT/${RUN}.${cyc}.class1.bufr + +cd ${COMOUT}/bufr.${NEST}${MODEL}${cyc} + +# Tar and gzip the individual bufr files and send them to /com + tar -cf - . | /usr/bin/gzip > ../rrfs.t${cyc}z.${RUNLOC}.bufrsnd.tar.gz + +GEMPAKrrfs=/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS/gempak +cp $GEMPAKrrfs/fix/snrrfs.prm snrrfs.prm +err1=$? +cp $GEMPAKrrfs/fix/sfrrfs.prm_aux sfrrfs.prm_aux +err2=$? +cp $GEMPAKrrfs/fix/sfrrfs.prm sfrrfs.prm +err3=$? + +mkdir -p $COMOUT/gempak +#cd $COMOUT/gempak + +if [ $err1 -ne 0 -o $err2 -ne 0 -o $err3 -ne 0 ] +then + msg="FATAL ERROR: Missing GEMPAK BUFR tables" + exit + +fi + + +# Set input file name. + +INFILE=$COMOUT/rrfs.t${cyc}z.${NEST}${MODEL}.class1.bufr +export INFILE + +outfilbase=rrfs_${MODEL}_${PDY}${cyc} + +namsnd << EOF > /dev/null +SNBUFR = $INFILE +SNOUTF = ${outfilbase}.snd +SFOUTF = ${outfilbase}.sfc+ +SNPRMF = snrrfs.prm +SFPRMF = sfrrfs.prm +TIMSTN = 61/1600 +r + +exit +EOF +#files=`ls` +#for fl in $files +#do +#${USHobsproc_shared_bufr_cword}/bufr_cword.sh unblk ${fl} ${fl}.unb +#${USHobsproc_shared_bufr_cword}/bufr_cword.sh block ${fl}.unb ${fl}.wcoss +#rm ${fl}.unb +#done + +exit +# +print_info_msg " +======================================================================== +BUFR-sounding -processing completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_calc_ensmean.sh b/scripts/exregional_calc_ensmean.sh new file mode 100755 index 000000000..87f725788 --- /dev/null +++ b/scripts/exregional_calc_ensmean.sh @@ -0,0 +1,295 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that calculates ensemble mean with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_type" "comout" "ensmeandir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=500M + export OMP_NUM_THREADS=1 + ncores=$(( NNODES_RUN_RECENTER*PPN_RUN_RECENTER )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_RECENTER} --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun -np ${np}" + ;; +# +"HERA") + module load nco/4.9.3 + ulimit -s unlimited + ulimit -v unlimited + ulimit -a + export OMP_NUM_THREADS=1 +# export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + module load nco/4.9.3 + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n ${PE_MEMBER01}" + ;; +# +esac + +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +cd_vrfy ${ensmeandir} + +# +#-------------------------------------------------------------------- +# +# loop through ensemble members to link all the member files +# + +if [ ${cycle_type} == "spinup" ]; then + fg_restart_dirname=fcst_fv3lam_spinup +else + fg_restart_dirname=fcst_fv3lam +fi + +imem=1 +for imem in $(seq 1 $nens) + do + ensmem=$( printf "%04d" $imem ) + memberstring=$( printf "%03d" $imem ) + + bkpath=${CYCLE_DIR}/mem${ensmem}/${fg_restart_dirname}/INPUT # cycling, use background from RESTART + + dynvarfile=${bkpath}/fv_core.res.tile1.nc + tracerfile=${bkpath}/fv_tracer.res.tile1.nc + if [ -r "${dynvarfile}" ] && [ -r "${tracerfile}" ] ; then + ln -sf ${bkpath}/fv_core.res.tile1.nc ./fv3sar_tile1_mem${memberstring}_dynvar + ln -sf ${bkpath}/fv_tracer.res.tile1.nc ./fv3sar_tile1_mem${memberstring}_tracer + ln -sf ${bkpath}/sfc_data.nc ./fv3sar_tile1_mem${memberstring}_sfcvar + if [ $imem -eq 1 ]; then +# Prepare the data structure for ensemble mean + cp_vrfy -f ${bkpath}/fv_core.res.tile1.nc fv3sar_tile1_dynvar + cp_vrfy -f ${bkpath}/fv_tracer.res.tile1.nc fv3sar_tile1_tracer + cp_vrfy -f ${bkpath}/sfc_data.nc fv3sar_tile1_sfcvar +# Prepare other needed files for GSI observer run + cp_vrfy -f ${bkpath}/coupler.res coupler.res + ln_vrfy -snf ${bkpath}/fv_core.res.nc fv_core.res.nc + ln_vrfy -snf ${bkpath}/fv_srf_wnd.res.tile1.nc fv_srf_wnd.res.tile1.nc + ln_vrfy -snf ${bkpath}/phy_data.nc phy_data.nc + fi + else + print_err_msg_exit "Error: cannot find background: ${dynvarfile} ${tracerfile}" + fi + (( imem += 1 )) + done + +# +#----------------------------------------------------------------------- +# +# prepare the namelist.ens +# +cat << EOF > namelist.ens +&setup + fv3_io_layout_y=1, + ens_size=${nens}, + filebase='fv3sar_tile1' + filetail(1)='dynvar' + filetail(2)='tracer' + filetail(3)='sfcvar' + numvar(1)=7 + numvar(2)=13 + numvar(3)=14 + varlist(1)="u v W DZ T delp phis" + varlist(2)="sphum liq_wat ice_wat rainwat snowwat graupel water_nc ice_nc rain_nc o3mr liq_aero ice_aero sgs_tke" + varlist(3)="t2m q2m f10m tslb smois tsea tsfc tsfcl alnsf alnwf alvsf alvwf emis_ice emis_lnd" + l_write_mean=.true. + l_recenter=.false. + beta=1, +/ +EOF + +# +#----------------------------------------------------------------------- +# +# Run executable to calculate the ensemble mean +# + +echo pwd is `pwd` +#ENSMEAN_EXEC=${EXECDIR}/gen_ensmean_recenter.exe +ENSMEAN_EXEC=${EXECDIR}/ens_mean_recenter_P2DIO.exe + +if [ -f ${ENSMEAN_EXEC} ]; then + print_info_msg "$VERBOSE" " +Copying the ensemble mean executable to the run directory..." + cp_vrfy ${ENSMEAN_EXEC} ${ensmeandir}/. +else + print_err_msg_exit "\ +The ensemble mean executable specified in ENSMEAN_EXEC does not exist: + ENSMEAN_EXEC = \"${ENSMEAN_EXEC}\" +Build ENSMEAN_EXEC and rerun." +fi + +${APRUN} ${ENSMEAN_EXEC} < namelist.ens > stdout_ensmean 2>&1 || print_err_msg_exit "\ +Call to executable to calculate ensemble ensmean returned with nonzero exit code." + +cp stdout_ensmean ${comout}/stdout.t${HH}z.ensmean +# +#----------------------------------------------------------------------- +# +# Link the ensemble mean files as GSI recognizable names +# +ln -s fv3sar_tile1_dynvar fv_core.res.tile1.nc +ln -s fv3sar_tile1_tracer fv_tracer.res.tile1.nc +ln -s fv3sar_tile1_sfcvar sfc_data.nc +# +#----------------------------------------------------------------------- +# +# Fix checksum for the files after calculating ensemble mean +# +#----------------------------------------------------------------------- +# +for files in fv3sar_tile1_dynvar fv3sar_tile1_sfcvar fv3sar_tile1_tracer ; do + ncatted -a checksum,,d,, $files +done + +# +#----------------------------------------------------------------------- +# +# touch a file to show completion of the task +# +touch ${comout}/calc_ensmean_complete.txt +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Prepare start completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_clean.ksh b/scripts/exregional_clean.ksh new file mode 100755 index 000000000..91891d860 --- /dev/null +++ b/scripts/exregional_clean.ksh @@ -0,0 +1,156 @@ +#!/bin/ksh --login + +# +#----------------------------------------------------------------------- +# Source the variable definitions file. +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +# +#----------------------------------------------------------------------- +# Save current shell options (in a global array). Then set new options +# for this script/function. +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +# +#----------------------------------------------------------------------- +# set up currentime from CDATE +#----------------------------------------------------------------------- +# +currentime=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +listens=$(seq 1 $nens) + +#----------------------------------------------------------------------- +# Delete ptmp directories +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d -d "${currentime} ${CLEAN_OLDPROD_HRS} hours ago") +echo "Deleting ptmp directories before ${deletetime}..." +cd ${COMOUT_BASEDIR} +set -A XX $(ls -d ${RUN}.20* | sort -r) +for dir in ${XX[*]};do + onetime=$(echo $dir | cut -d'.' -f2) + if [[ ${onetime} =~ ^[0-9]+$ ]] && [[ ${onetime} -le ${deletetime} ]]; then + rm -rf ${COMOUT_BASEDIR}/${RUN}.${onetime} + echo "Deleted ${COMOUT_BASEDIR}/${RUN}.${onetime}" + fi +done + +#----------------------------------------------------------------------- +# Delete stmp directories +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d%H -d "${currentime} ${CLEAN_OLDRUN_HRS} hours ago") +echo "Deleting stmp directories before ${deletetime}..." +cd ${CYCLE_BASEDIR} +set -A XX $(ls -d 20* | sort -r) +for onetime in ${XX[*]};do + if [[ ${onetime} =~ ^[0-9]+$ ]] && [[ ${onetime} -le ${deletetime} ]]; then + rm -rf ${CYCLE_BASEDIR}/${onetime} + echo "Deleted ${CYCLE_BASEDIR}/${onetime}" + fi +done + +#----------------------------------------------------------------------- +# Delete netCDF files +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d%H -d "${currentime} ${CLEAN_OLDFCST_HRS} hours ago") +echo "Deleting netCDF files before ${deletetime}..." +cd ${CYCLE_BASEDIR} +set -A XX $(ls -d 20* | sort -r) +for onetime in ${XX[*]};do + if [[ ${onetime} =~ ^[0-9]+$ ]] && [[ ${onetime} -le ${deletetime} ]]; then + if [ ${nens} -gt 1 ]; then + for ii in ${listens} + do + iii=`printf %4.4i $ii` + SLASH_ENSMEM_SUBDIR=/mem${iii} + rm -f ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/phy*nc + rm -f ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/dyn*nc + rm -rf ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/RESTART + echo "Deleted netCDF files in ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam" + done + else + rm -f ${CYCLE_BASEDIR}/${onetime}/fcst_fv3lam/phy*nc + rm -f ${CYCLE_BASEDIR}/${onetime}/fcst_fv3lam/dyn*nc + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi/pe0*.nc4 + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi/pe0*_setup + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi/obs_input.* + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi/diag* + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi_spinup/pe0*.nc4 + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi_spinup/pe0*_setup + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi_spinup/obs_input.* + rm -f ${CYCLE_BASEDIR}/${onetime}/anal_conv_gsi_spinup/diag* + + rm -rf ${CYCLE_BASEDIR}/${onetime}/fcst_fv3lam/RESTART + echo "Deleted netCDF files in ${CYCLE_BASEDIR}/${onetime}/fcst_fv3lam" + fi + fi +done + +#----------------------------------------------------------------------- +# Delete duplicate postprod files in stmp +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d%H -d "${currentime} ${CLEAN_OLDSTMPPOST_HRS} hours ago") +echo "Deleting stmp postprd files before ${deletetime}..." +cd ${CYCLE_BASEDIR} +set -A XX $(ls -d 20* | sort -r) +for onetime in ${XX[*]};do + if [[ ${onetime} =~ ^[0-9]+$ ]] && [[ ${onetime} -le ${deletetime} ]]; then + if [ ${nens} -gt 1 ]; then + for ii in ${listens} + do + iii=`printf %4.4i $ii` + SLASH_ENSMEM_SUBDIR=/mem${iii} + rm -rf ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/postprd + echo "Deleted postprd files in ${CYCLE_BASEDIR}/${onetime}${SLASH_ENSMEM_SUBDIR}/postprd" + done + else + rm -rf ${CYCLE_BASEDIR}/${onetime}/postprd + echo "Deleted postprd files in ${CYCLE_BASEDIR}/${onetime}/postprd" + fi + fi +done + +#----------------------------------------------------------------------- +# Delete old log files +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d%H -d "${currentime} ${CLEAN_OLDLOG_HRS} hours ago") +echo "Deleting log files before ${deletetime}..." + +# Remove template date from last two levels +logs=$(echo ${LOGDIR} | rev | cut -f 3- -d / | rev) +cd ${logs} +pwd +set -A XX $(ls -d ${RUN}.20*/* | sort -r) +for onetime in ${XX[*]}; do + # Remove slash and RUN from directory to get time + filetime=${onetime/\//} + filetime=${filetime##*.} + # Remove cycle subdir from path + logsdate=${onetime%%/*} + if [[ ${filetime} =~ ^[0-9]+$ ]] && [[ ${filetime} -le ${deletetime} ]]; then + echo "Deleting files from ${logs}/${onetime}" + rm -rf ${onetime} + # Remove an empty date directory + [ "$(ls -A $logsdate)" ] || rmdir $logsdate + fi +done + +#----------------------------------------------------------------------- +# Delete nwges directories +#----------------------------------------------------------------------- +deletetime=$(date +%Y%m%d%H -d "${currentime} ${CLEAN_NWGES_HRS} hours ago") +echo "Deleting nwges directories before ${deletetime}..." +cd ${NWGES_BASEDIR} +set -A XX $(ls -d 20* | sort -r) +for onetime in ${XX[*]};do + if [[ ${onetime} =~ ^[0-9]+$ ]] && [[ ${onetime} -le ${deletetime} ]]; then + rm -rf ${NWGES_BASEDIR}/${onetime} + echo "Deleted ${NWGES_BASEDIR}/${onetime}" + fi +done + +#----------------------------------------------------------------------- +exit 0 diff --git a/scripts/exregional_enspost.py b/scripts/exregional_enspost.py new file mode 100755 index 000000000..e94339d62 --- /dev/null +++ b/scripts/exregional_enspost.py @@ -0,0 +1,747 @@ +################################################### +# # +# RRFS-E Ensemble Post Processing # +# # +# Trevor Alcott # +# 28 Apr 2017 # +# # +# Wrapper: ./pypost.ksh # +# User options: ../../static/UPP/pypost_config.py # +# # +################################################### + +import os, sys, time, math, pygrib +import numpy as np +from datetime import datetime, timedelta +from scipy import ndimage +from scipy.signal import fftconvolve + +# fix files +staticdir = sys.argv[1] +# USH dir +ushdir = sys.argv[2] +sys.path.append(ushdir) +from enspost_config import * +# RRFS-E cycle directory +rrfse_dir = sys.argv[3] +# RRFS-B (member 10) directory +rrfs_dir = sys.argv[4] +# Ensemble product output directory +outdir = sys.argv[5] +# cycle date +ymd = sys.argv[6] +# cycle hour +cycle = sys.argv[7] +# forecast hour +fhour = int(sys.argv[8]) +# Flash flood guidance directories +ffg_latest = sys.argv[9] +ffg_local_dir = sys.argv[10] + +print('Processing RRFS-E mean/spread fields') +print('Cycle:',ymd,cycle,'Forecast hour:',fhour) + +# Parse cycle and determine Julian date +cy, cm, cd, ch = int(ymd[0:4]), int(ymd[4:6]), int(ymd[6:8]), int(cycle) +jul = (datetime(cy,cm,cd) - datetime(cy,1,1)).days + 1 +d0 = datetime(cy,cm,cd,ch,0) + +##################### +# FUNCTIONS + +# skinner/NSSL technique +def compute_lpmm(ensemble, p, n, smooth): + + #Calculate a 2d array of the neighborhood probability matched mean when provided with an ensemble mean and raw data + #ensemble - 3d array of raw data (e.g. var[member, y, x]) + #n - grid point radius to perform prob matching within (e.g. 15 corresponds to 30x30 grid point region) + #lpmm - 2d array of probability matched mean + + print('Computing local PMM') + + mem, dx, dy = ensemble.shape + ens_mean = np.mean(ensemble, axis=0) + out = ens_mean * 0. + i_patches = int(dx/p) + j_patches = int(dy/p) + + for i_patch in range(i_patches): + pi_min = i_patch*p + pi_max = (i_patch+1)*p + ci_min = pi_min - n + ci_max = pi_max + n + if ci_min < 0: + ci_min = 0 + ci_max = p+2*n + if ci_max > dx: + ci_min = dx-(p+2*n) + ci_max = dx + + for j_patch in range(j_patches): + pj_min = j_patch*p + pj_max = (j_patch+1)*p + cj_min = pj_min - n + cj_max = pj_max + n + if cj_min < 0: + cj_min = 0 + cj_max = p+2*n + if cj_max > dy: + cj_min = dy-(p+2*n) + cj_max = dy + + ens_mean_calc = ens_mean[ci_min:ci_max,cj_min:cj_max] + ens_calc = ensemble[:,ci_min:ci_max,cj_min:cj_max] + ens_calc_dist = np.sort(ens_calc.flatten())[::-1] + pmm_calc = ens_calc_dist[::mem] + + ens_mean_calc_index = np.argsort(ens_mean_calc.flatten())[::-1] + temp = np.empty_like(pmm_calc) + temp[ens_mean_calc_index] = pmm_calc + temp = np.where(ens_mean_calc.flatten() > 0, temp, 0.0) + + lpmm_calc = temp.reshape((p+2*n,p+2*n)) + out[pi_min:pi_max,pj_min:pj_max] = lpmm_calc[n:n+p,n:n+p] + + out = ndimage.filters.gaussian_filter(out,[int(smooth/3.0),int(smooth/3.0)],mode='constant') + + return out + +# sobash/NCAR technique +def compute_pmm(ensemble, smooth): + + print('Computing PMM') + + mem, dy, dx = ensemble.shape + ens_mean = np.mean(ensemble, axis=0) + ens_dist = np.sort(ensemble.flatten())[::-1] + pmm = ens_dist[::mem] + + ens_mean_index = np.argsort(ens_mean.flatten())[::-1] + temp = np.empty_like(pmm) + temp[ens_mean_index] = pmm + + temp = np.where(ens_mean.flatten() > 0, temp, 0.0) + out = temp.reshape((dy,dx)) + out = ndimage.filters.gaussian_filter(out,[int(smooth/3.0),int(smooth/3.0)],mode='constant') + return out + +# calculate footprint for spatial filter +def get_footprint(r): + footprint = np.ones([(int(r/dx))*2+1,(int(r/dx))*2+1],dtype=np.int8) + footprint[int(math.ceil(r/dx)),int(math.ceil(r/dx))]=0 + dist = ndimage.distance_transform_edt(footprint,sampling=[dx,dx]) + footprint = np.where(np.greater(dist,r),0,1) + return footprint + + +######################################## +# +# ENSEMBLE MEAN/PMM/LPMM/MIN/MAX section +# +######################################## + +neighbor_footprint = get_footprint(pqpf_neighborhood) + +# get sample file from this run to determine dimensions +rrfse_file = rrfse_dir+'/mem0001/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' +if os.path.exists(rrfse_file): + grbs = pygrib.open(rrfse_file) + g1 = grbs[1] + lats, lons = g1.latlons() + grbs.close() + nlats, nlons = np.shape(lats) +else: + print('Sample file from this run could not be found. No dimensions available') + sys.exit() + +# get grib templates based on those dimensions +normal_template_file = staticdir+'/pypost_conus_basic_template.grib2' +accum_template_file = staticdir+'/pypost_conus_accum_template.grib2' +grbs = pygrib.open(normal_template_file) +normal_template = grbs[1] +grbs.close() +grbs = pygrib.open(accum_template_file) +accum_template = grbs[1] +grbs.close() + +# start with a clean slate for this forecast hour +outfile = outdir + '/RRFS_CONUS.t%02d'%ch+'z.bgensf%03d'%fhour+'.tm00.grib2.tmp' +finalfile = outdir + '/RRFS_CONUS.t%02d'%ch+'z.bgensf%03d'%fhour+'.tm00.grib2' +softlink = outdir + '/BGENS_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' +if os.path.exists(outfile): + os.system('rm -f '+outfile) +if os.path.exists(finalfile): + os.system('rm -f '+outfile) +if os.path.exists(softlink): + os.system('unlink '+softlink) + +# determine parameters to process +init_parms = list(set(mean_parms) | set(std_parms) | set(min_parms) | set(max_parms) | set(pmm_parms) | set(lpmm_parms)) + +post_parms = [] +# reduce list to only applicable accumulation intervals +for i in range(len(init_parms)): + p = init_parms[i] + if p[0:2] == '1h' and fhour>=1: + post_parms.append(p) + elif p[0:2] == '3h' and fhour>=3: + post_parms.append(p) + elif p[0:2] == '6h' and fhour>=6: + post_parms.append(p) + elif p[0:3] == '12h' and fhour>=12: + post_parms.append(p) + elif p[0:3] == '24h' and fhour>=24: + post_parms.append(p) + + +# determine whether all necessary files are present +rrfse_files = {} +mems = [] +for m in range(1,nm+1): + missing = 0 + filelist = [] + if m == 10: + rrfse_file = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + else: + rrfse_file = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + print(rrfse_file) + if ('1hqpf' in post_parms) or ('1hsnow' in post_parms) or ('3hqpf' in post_parms) or ('3hsnow' in post_parms) or ('6hqpf' in post_parms) or ('6hsnow' in post_parms) or ('24hqpf' in post_parms) or ('24hsnow' in post_parms): + filelist.append(rrfse_file) + if not os.path.exists(rrfse_file): + missing = 1 + if fhour > 1: + if m == 10: + rrfse_file2 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-1)+'00' + else: + rrfse_file2 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-1)+'00' + filelist.append(rrfse_file2) + if not os.path.exists(rrfse_file2): + missing = 1 + if fhour > 3: + if m == 10: + rrfse_file3 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-3)+'00' + else: + rrfse_file3 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-3)+'00' + filelist.append(rrfse_file3) + if not os.path.exists(rrfse_file3): + missing = 1 + if fhour > 6: + if m == 10: + rrfse_file4 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-6)+'00' + else: + rrfse_file4 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-6)+'00' + filelist.append(rrfse_file4) + if not os.path.exists(rrfse_file4): + missing = 1 + if fhour > 12: + if m == 10: + rrfse_file5 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-12)+'00' + else: + rrfse_file5 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-12)+'00' + filelist.append(rrfse_file5) + if not os.path.exists(rrfse_file5): + missing = 1 + if fhour > 24: + if m == 10: + rrfse_file6 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-24)+'00' + else: + rrfse_file6 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-24)+'00' + filelist.append(rrfse_file6) + if not os.path.exists(rrfse_file6): + missing = 1 + if missing == 0: + print('Found data for member',m) + mems.append(m) + rrfse_files[m] = filelist + else: + print('Missing data from member:',m) + else: + if os.path.exists(rrfse_file): + print('Found data for member',m) + mems.append(m) + rrfse_files[m] = [rrfse_file] + else: + print('Missing data from member:',m) +if len(mems) == nm: + print('Found',nm,'members for hour:',fhour) +else: + print('Could not find all',nm,'members') + sys.exit() + +# calculate sum and sum of squares +psum = {} +psumsq = {} +pmin = {} +pmax = {} +for p in post_parms: + psum[p] = np.zeros((nlats,nlons)) + if p in std_parms: + psumsq[p] = np.zeros((nlats,nlons)) + if p in max_parms: + pmax[p] = np.zeros((nlats,nlons))-999999999. + if p in min_parms: + pmin[p] = np.zeros((nlats,nlons))+999999999. + +if pmm_parms != []: + membervals = {} + for p in pmm_parms: + membervals[p] = np.zeros((len(mems),nlats,nlons)) + +if lpmm_parms != [] and pmm_parms == []: + membervals = {} + for p in lpmm_parms: + membervals[p] = np.zeros((len(mems),nlats,nlons)) + +do_parms = [] +for i in range(len(post_parms)): + intv = int(post_parms[i].split('h')[0]) + if (fhour % ens_proc_intervals[intv] == 0 and fhour >= intv): + do_parms.append(post_parms[i]) + +for m in mems: + print('Processing member',(1+mems.index(m)),'of',len(mems)) + idx = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level') + for p in do_parms: + if 'qpf' in p: + ptable = 'qpf' + elif 'snow' in p: + ptable = 'snow' + else: + ptable = p + if (p == '1hqpf' or p == '1hsnow'): + idx2 = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + if fhour > 1: + idx2 = pygrib.index(rrfse_files[m][1],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = vals - idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + elif (p == '3hqpf' or p == '3hsnow'): + idx2 = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + if fhour > 3: + idx2 = pygrib.index(rrfse_files[m][2],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = vals - idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + elif (p == '6hqpf' or p == '6hsnow'): + idx2 = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + if fhour > 6: + idx2 = pygrib.index(rrfse_files[m][3],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = vals - idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + elif (p == '12hqpf' or p == '12hsnow'): + idx2 = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + if fhour > 12: + idx2 = pygrib.index(rrfse_files[m][4],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = vals - idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + elif (p == '24hqpf' or p == '24hsnow'): + idx2 = pygrib.index(rrfse_files[m][0],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + if fhour > 24: + idx2 = pygrib.index(rrfse_files[m][5],'discipline','parameterCategory','parameterNumber','typeOfFirstFixedSurface','level','startStep') + vals = vals - idx2(discipline=grib_discipline[ptable],parameterCategory=grib_category[ptable],parameterNumber=grib_number[ptable],typeOfFirstFixedSurface=grib_surface[ptable],level=grib_level[ptable],startStep=0)[0].values + idx2.close() + psum[p] = psum[p] + vals + if p in std_parms: + psumsq[p] = psumsq[p] + vals**2 + if p in max_parms: + pmax[p] = np.where(np.greater(vals,pmax[p]),vals,pmax[p]) + if p in min_parms: + pmin[p] = np.where(np.less(vals,pmin[p]),vals,pmin[p]) + if p in pmm_parms or p in lpmm_parms: + membervals[p][m-1] = vals + idx.close() + +for i in range(len(do_parms)): + print('Working on',p) + p = do_parms[i] + intv = int(p.split('h')[0]) + if ('snow' in p) or ('qpf' in p): + grbtmp = accum_template + if 'qpf' in p: + ptable = 'qpf' + elif 'snow' in p: + ptable = 'snow' + else: + ptable = p + else: + grbtmp = normal_template + + # fill in GRIB time definition metadata + grbtmp['numberOfForecastsInEnsemble'] = len(mems) + grbtmp['year'] = cy + grbtmp['month'] = cm + grbtmp['day'] = cd + grbtmp['hour'] = ch + grbtmp.packingType='grid_jpeg' # complex packing for smallest file size + + # calculate mean + pmean = psum[p]/float(len(mems)) + + # set forecast hour(s) + grbtmp['endStep'] = fhour + grbtmp['startStep'] = fhour-intv + + # fill in GRIB parameter metadata + grbtmp['discipline']=grib_discipline[ptable] + grbtmp['parameterCategory']=grib_category[ptable] + if isinstance(grib_number[ptable],int): + grbtmp['parameterNumber']=grib_number[ptable] + else: + grbtmp['parameterNumber']=grib_number[ptable][2] + if grib_surface == 'sfc': + grbtmp['typeOfFirstFixedSurface']=grib_surface[ptable] + grbtmp['level']=grib_level[ptable] + if 'snow' in p: + grbtmp['decimalPrecision']=3 + + grbout = open(outfile,'ab') + if p in mean_parms: + if 'qpf' in p or 'snow' in p: + pmean = np.clip(pmean,0,10000) + grbtmp['values']=pmean.astype(np.float32) + grbtmp['typeOfGeneratingProcess']=4 + grbtmp['derivedForecast']=0 + grbout.write(grbtmp.tostring()) + if p in std_parms: + pstd = ((psumsq[p])/float(len(mems)) - pmean**2)**0.5 + pstd = np.where(np.greater_equal(pstd,0),pstd,0) # code NaN values as zero to prevent GRIB-API issues + grbtmp['values']=pstd.astype(np.float32) + grbtmp['typeOfGeneratingProcess']=4 + grbtmp['derivedForecast']=4 + grbout.write(grbtmp.tostring()) + if p in max_parms: + if 'qpf' in p or 'snow' in p: + pmax[p] = np.clip(pmax[p],0,10000) + grbtmp['values']=pmax[p].astype(np.float32) + grbtmp['typeOfGeneratingProcess']=4 + grbtmp['derivedForecast']=9 + grbout.write(grbtmp.tostring()) + if p in min_parms: + if 'qpf' in p or 'snow' in p: + pmin[p] = np.clip(pmin[p],0,10000) + grbtmp['values']=pmin[p].astype(np.float32) + grbtmp['typeOfGeneratingProcess']=4 + grbtmp['derivedForecast']=8 + grbout.write(grbtmp.tostring()) + if p in pmm_parms: + pmm = compute_pmm(membervals[p],pmm_smooth) # sobash method + if 'qpf' in p or 'snow' in p: + pmm = np.clip(pmm,0,10000) + grbtmp['values']=pmm.astype(np.float32) + grbtmp['typeOfGeneratingProcess']=193 + grbtmp['derivedForecast']=1 + grbout.write(grbtmp.tostring()) + if p in lpmm_parms: + lpmm = compute_lpmm(membervals[p],lpmm_patch,lpmm_neighborhood,lpmm_smooth) + if 'qpf' in p or 'snow' in p: + lpmm = np.clip(lpmm,0,10000) + grbtmp['values']=lpmm.astype(np.float32) + grbtmp['typeOfGeneratingProcess']=193 + grbtmp['derivedForecast']=6 + grbout.write(grbtmp.tostring()) + + grbout.close() + +print('Wrote derived ensemble fields to:',outfile) + +######################################## +# +# PQPF section +# +######################################## + +# determine all PQPF accumulation intervals to process +for pqpf_acc_interval in pqpf_acc_intervals: + + if fhour % pqpf_proc_intervals[pqpf_acc_interval] == 0 and fhour >= pqpf_acc_interval: + print('Working on ',pqpf_acc_interval,'h PQPF') + + # determine start/end times based on cycle string passed in + starttime = d0+timedelta((fhour-pqpf_acc_interval)/24.0) + endtime = d0+timedelta(fhour/24.0) + + # get sample file from this run to determine dimensions + rrfse_file = rrfse_dir+'/mem0001/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + if os.path.exists(rrfse_file): + grbs = pygrib.open(rrfse_file) + g1 = grbs[1] + lats, lons = g1.latlons() + latin1 = g1['Latin1InDegrees'] + lov = g1['LoVInDegrees'] + grbs.close() + nlats, nlons = np.shape(lats) + else: + print('Sample file from this run could not be found. No dimensions available') + sys.exit() + + # determine name of GRIB-2 template file + template_file = staticdir+'/pypost_conus_pqpf_template.grib2' + ari_template_file = staticdir+'/pypost_conus_ari_template.grib2' + ffg_template_file = staticdir+'/pypost_conus_ffg_template.grib2' + grbs = pygrib.open(template_file) + g = grbs[1] + grbs.close() + if pqpf_acc_interval in ffg_acc_intervals: + grbs = pygrib.open(ffg_template_file) + g_ffg = grbs[1] + grbs.close() + if pqpf_acc_interval in ari_acc_intervals: + grbs = pygrib.open(ari_template_file) + g_ari = grbs[1] + grbs.close() + + # determine whether all necessary files are present + rrfse_files = {} + mems = [] + for m in range(1,nm+1): + files = [] + if fhour == pqpf_acc_interval: + if m == 10: + rrfse_file = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + else: + rrfse_file = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + if os.path.exists(rrfse_file): + rrfse_files[m] = [rrfse_file] + mems.append(m) + print('Found data for member',m) + else: + print('Missing data from member:',m) + else: + if m == 10: + rrfse_file1 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + rrfse_file2 = rrfs_dir+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-pqpf_acc_interval)+'00' + else: + rrfse_file1 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%fhour+'00' + rrfse_file2 = rrfse_dir+'/mem%04d'%m+'/BGSFC_%02d'%(cy-2000)+'%03d'%jul+'%02d'%ch+'00%02d'%(fhour-pqpf_acc_interval)+'00' + if os.path.exists(rrfse_file1) and os.path.exists(rrfse_file2): + rrfse_files[m] = [rrfse_file1,rrfse_file2] + mems.append(m) + print('Found data for member',m) + else: + print('Missing data from member:',m) + if len(mems) == nm: + print('Found',nm,'members valid:',starttime,'-',endtime) + else: + print('Could not find all',nm,'members') + sys.exit() + + # calculate probabilities + prob = {} + nprob = {} + for t in pqpf_thresh[pqpf_acc_interval]: + prob[t] = np.zeros((nlats,nlons)) + nprob[t] = np.zeros((nlats,nlons)) + + # Get ARI data + if pqpf_acc_interval in ari_acc_intervals: + ari_prob = {} + ari_nprob = {} + ari_vals = {} + for y in ari_years[pqpf_acc_interval]: + ari_prob[y] = np.zeros((nlats,nlons)) + ari_nprob[y] = np.zeros((nlats,nlons)) + ari_file = staticdir + '/atlas14/atlas14_conus_%i'%y+'y_%i'%pqpf_acc_interval+'h.grib2' + grbs = pygrib.open(ari_file) + grb = grbs[1] + ari_lat, ari_lon = grb.latlons() + ari_vals[y] = grb.values + grbs.close() + badvals = np.where(np.less(ari_vals[y],5),1,0) + coastal = np.where(np.greater_equal(fftconvolve(badvals,neighbor_footprint,mode='same'),1),1,0) + ari_vals[y] = np.where(np.equal(coastal,1),9999.,ari_vals[y]) + ari_vals[y] = np.where(np.less(ari_vals[y],5),9999.,ari_vals[y]) + + # get FFG data and interpolate to RRFSE grid + if pqpf_acc_interval in ffg_acc_intervals: + ffg_prob = {} + ffg_nprob = {} + for tf in ffg_thresh: + ffg_prob[tf] = np.zeros((nlats,nlons)) + ffg_nprob[tf] = np.zeros((nlats,nlons)) + ffg_local = ffg_local_dir + '/ffg_%02d'%pqpf_acc_interval+'h.grib2' + if not os.path.exists(ffg_local): + griddims = "lambert:%.1f"%(lov-360.0)+":%.1f"%latin1+" %.3f"%lons[0,0]+":%i"%nlons+":3000 %.3f"%lats[0,0]+":%i"%nlats+":3000" + if pqpf_acc_interval not in [24,48]: + remap_command = 'wgrib2 '+ffg_latest+' -match "0-%i'%pqpf_acc_interval+' hour" -end -new_grid_interpolation bilinear -new_grid_winds grid -new_grid '+griddims+' '+ffg_local + elif pqpf_acc_interval == 24: + remap_command = 'wgrib2 '+ffg_latest+' -match "0-1 day" -end -new_grid_interpolation bilinear -new_grid_winds grid -new_grid '+griddims+' '+ffg_local + elif pqpf_acc_interval == 48: + remap_command = 'wgrib2 '+ffg_latest+' -match "0-2 day" -end -new_grid_interpolation bilinear -new_grid_winds grid -new_grid '+griddims+' '+ffg_local + os.system(remap_command) + grbs = pygrib.open(ffg_local) + ffg_vals = grbs[1].values + grbs.close() + + for m in mems: + files = rrfse_files[m] + print('Processing member',(1+mems.index(m)),'of',len(mems)) + + idx = pygrib.index(files[0],'discipline','parameterCategory','parameterNumber','startStep') + qpf = idx(discipline=0,parameterCategory=1,parameterNumber=8,startStep=0)[0].values + idx.close() + if len(files) == 2: + idx = pygrib.index(files[1],'discipline','parameterCategory','parameterNumber','startStep') + qpf = qpf - idx(discipline=0,parameterCategory=1,parameterNumber=8,startStep=0)[0].values + idx.close() + qpf = np.where(np.logical_and(np.greater_equal(qpf,0.0),np.less(qpf,9999)),qpf,0.0) + + # calculate PQPF + for t in pqpf_thresh[pqpf_acc_interval]: + exceed = np.where(np.greater_equal(qpf,t*25.4),1,0) + # point probability + prob[t] = prob[t] + np.where(np.greater_equal(exceed,1),1,0) + # neighborhood probability (stopped using fft approximation 19 Feb 2020 - TA) + #nprob[t] = nprob[t] + np.where(np.greater_equal(fftconvolve(exceed,neighbor_footprint,mode='same'),1),1,0) + nprob[t] = nprob[t] + np.where(np.greater(ndimage.filters.maximum_filter(exceed,footprint=neighbor_footprint,mode='nearest'),0),1,0) + + # calculate probability of exceeding ARI + if pqpf_acc_interval in ari_acc_intervals: + for y in ari_years[pqpf_acc_interval]: + exceed = np.where(np.greater_equal(qpf,ari_vals[y]),1,0) + # point probability + ari_prob[y] = ari_prob[y] + np.where(np.greater_equal(exceed,1),1,0) + # neighborhood probability + ari_nprob[y] = ari_nprob[y] + np.where(np.greater_equal(fftconvolve(exceed,neighbor_footprint,mode='same'),1),1,0) + + # calculate probability of exceeding FFG + if pqpf_acc_interval in ffg_acc_intervals: + for tf in ffg_thresh: + exceed = np.where(np.greater_equal(qpf,ffg_vals+tf*25.4),1,0) + # point probability + ffg_prob[tf] = ffg_prob[tf] + np.where(np.greater_equal(exceed,1),1,0) + # neighborhood probability + ffg_nprob[tf] = ffg_nprob[tf] + np.where(np.greater_equal(fftconvolve(exceed,neighbor_footprint,mode='same'),1),1,0) + + g['dataDate']=int('%i'%d0.year+'%02d'%d0.month+'%02d'%d0.day) + g['dataTime']=int('%02d'%d0.hour+'00') + g['startStep']=int(fhour-pqpf_acc_interval) + g['endStep']=int(fhour) + g['yearOfEndOfOverallTimeInterval']=endtime.year + g['monthOfEndOfOverallTimeInterval']=endtime.month + g['dayOfEndOfOverallTimeInterval']=endtime.day + g['hourOfEndOfOverallTimeInterval']=endtime.hour + g['scaleFactorOfLowerLimit']=3 + g['scaleFactorOfUpperLimit']=0 + if pqpf_acc_interval in ffg_acc_intervals: + g_ffg['dataDate']=int('%i'%d0.year+'%02d'%d0.month+'%02d'%d0.day) + g_ffg['dataTime']=int('%02d'%d0.hour+'00') + g_ffg['startStep']=int(fhour-pqpf_acc_interval) + g_ffg['endStep']=int(fhour) + g_ffg['yearOfEndOfOverallTimeInterval']=endtime.year + g_ffg['monthOfEndOfOverallTimeInterval']=endtime.month + g_ffg['dayOfEndOfOverallTimeInterval']=endtime.day + g_ffg['hourOfEndOfOverallTimeInterval']=endtime.hour + g_ffg['probabilityType']=3 + g_ffg['scaleFactorOfLowerLimit']=3 + g_ffg['scaleFactorOfUpperLimit']=0 + if pqpf_acc_interval in ari_acc_intervals: + g_ari['dataDate']=int('%i'%d0.year+'%02d'%d0.month+'%02d'%d0.day) + g_ari['dataTime']=int('%02d'%d0.hour+'00') + g_ari['startStep']=int(fhour-pqpf_acc_interval) + g_ari['endStep']=int(fhour) + g_ari['yearOfEndOfOverallTimeInterval']=endtime.year + g_ari['monthOfEndOfOverallTimeInterval']=endtime.month + g_ari['dayOfEndOfOverallTimeInterval']=endtime.day + g_ari['hourOfEndOfOverallTimeInterval']=endtime.hour + g_ari['scaleFactorOfLowerLimit']=0 + g_ari['scaleFactorOfUpperLimit']=0 + + # convert probability grid from count to percent and save in output file + # encode neighborhood probability as >thresh and > ${extrn_mdl_staging_dir}/${extrn_mdl_fns_on_disk[@]} + else + ln_vrfy -sf -t ${extrn_mdl_staging_dir} ${extrn_mdl_fps_on_disk[@]} + fi + else + ln_vrfy -sf -t ${extrn_mdl_staging_dir} ${extrn_mdl_fps_on_disk[@]} + fi else diff --git a/scripts/exregional_get_gefs_lbcs_files.sh b/scripts/exregional_get_gefs_lbcs_files.sh new file mode 100755 index 000000000..862ae3037 --- /dev/null +++ b/scripts/exregional_get_gefs_lbcs_files.sh @@ -0,0 +1,352 @@ +#!/bin/bash +set +x +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that copies/fetches to a local directory +either from disk or HPSS) the external model files from which initial or +boundary condition files for the FV3 will be generated. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. Then +# process the arguments provided to this script/function (which should +# consist of a set of name-value pairs of the form arg1="value1", etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"ics_or_lbcs" \ +"use_user_staged_extrn_files" \ +"extrn_mdl_cdate" \ +"extrn_mdl_lbc_spec_fhrs" \ +"extrn_mdl_fns_on_disk" \ +"extrn_mdl_fns_on_disk2" \ +"extrn_mdl_fns_in_arcv" \ +"extrn_mdl_source_dir" \ +"extrn_mdl_source_dir2" \ +"extrn_mdl_staging_dir" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in + + "WCOSS2") + module load wgrib2/2.0.8 + module list + wgrib2=/apps/ops/prod/libs/intel/19.1.3.304/wgrib2/2.0.8_wmo/bin/wgrib2 + ;; + + "HERA") + module load gnu/9.2.0 + module load wgrib2/3.1.0 + wgrib2=/apps/wgrib2/3.1.0/gnu/9.2.0_ncep/bin/wgrib2 + ;; + + "JET") + module load intel/18.0.5.274 + module load wgrib2/2.0.8 + wgrib2=/apps/wgrib2/2.0.8/intel/18.0.5.274/bin/wgrib2 + ;; + + *) + print_err_msg_exit "\ +Wgrib2 has not been specified for this machine: + MACHINE = \"$MACHINE\" + wgrib2 = `which wgrib2` " + ;; + +esac +# +#----------------------------------------------------------------------- +# +# Set num_files_to_copy to the number of external model files that need +# to be copied or linked to from/at a location on disk. Then set +# extrn_mdl_fps_on_disk to the full paths of the external model files +# on disk. +# +#----------------------------------------------------------------------- +# +num_files_to_copy="${#extrn_mdl_fns_on_disk[@]}" +prefix="${extrn_mdl_source_dir}/" +extrn_mdl_fps_on_disk=( "${extrn_mdl_fns_on_disk[@]/#/$prefix}" ) +prefix2="${extrn_mdl_source_dir2}" +extrn_mdl_fps_on_disk2=( "${extrn_mdl_fns_on_disk2[@]/#/$prefix2}" ) +# +#----------------------------------------------------------------------- +# +# Loop through the list of external model files and check whether they +# all exist on disk. The counter num_files_found_on_disk keeps track of +# the number of external model files that were actually found on disk in +# the directory specified by extrn_mdl_source_dir. +# +#----------------------------------------------------------------------- +# +num_files_found_on_disk="0" +min_age="5" # Minimum file age, in minutes. +# +#----------------------------------------------------------------------- +# +# Set the variable (data_src) that determines the source of the external +# model files (either disk or HPSS). +# +#----------------------------------------------------------------------- +# +data_src="disk" +# +#----------------------------------------------------------------------- +# +# If the source of the external model files is "disk", copy the files +# from the source directory on disk to a staging directory. +# +#----------------------------------------------------------------------- +# +extrn_mdl_fns_on_disk_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk[@]}" )")" + +if [ "${RUN_ENVIR}" = "nco" ]; then + + print_info_msg " +Creating links in staging directory (extrn_mdl_staging_dir) to external +model files on disk (extrn_mdl_fns_on_disk) in the source directory +(extrn_mdl_source_dir): + extrn_mdl_staging_dir = \"${extrn_mdl_staging_dir}\" + extrn_mdl_source_dir = \"${extrn_mdl_source_dir}\" + extrn_mdl_fns_on_disk = ${extrn_mdl_fns_on_disk_str}" + + length=${#extrn_mdl_fps_on_disk[@]} + + for (( j=0; j> ${extrn_mdl_staging_dir}/${fps_name} + fi + + print_info_msg " +File fps exists on disk: + fps = \"$fps\"" + fi + done +else + # + # If the external model files are user-staged, then simply link to + # them. Otherwise, if they are on the system disk, copy them to the + # staging directory. + # + if [ "${use_user_staged_extrn_files}" = "TRUE" ]; then + print_info_msg " +Creating symlinks in the staging directory (extrn_mdl_staging_dir) to the +external model files on disk (extrn_mdl_fns_on_disk) in the source directory +(extrn_mdl_source_dir): + extrn_mdl_source_dir = \"${extrn_mdl_source_dir}\" + extrn_mdl_fns_on_disk = ${extrn_mdl_fns_on_disk_str} + extrn_mdl_staging_dir = \"${extrn_mdl_staging_dir}\"" + ln_vrfy -sf -t ${extrn_mdl_staging_dir} ${extrn_mdl_fps_on_disk[@]} + else + print_info_msg " +Copying external model files on disk (extrn_mdl_fns_on_disk) from source +directory (extrn_mdl_source_dir) to staging directory (extrn_mdl_staging_dir): + extrn_mdl_source_dir = \"${extrn_mdl_source_dir}\" + extrn_mdl_fns_on_disk = ${extrn_mdl_fns_on_disk_str} + extrn_mdl_staging_dir = \"${extrn_mdl_staging_dir}\"" + cp_vrfy ${extrn_mdl_fps_on_disk[@]} ${extrn_mdl_staging_dir} + fi +fi +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# + print_info_msg " +======================================================================== +Successfully copied or linked to external model files on disk needed for +generating lateral boundary conditions for the FV3 forecast!!! +Now move to time interpolation!!! +========================================================================" +# +#----------------------------------------------------------------------- +# +# Create a variable definitions file (a shell script) and save in it the +# values of several external-model-associated variables generated in this +# script that will be needed by downstream workflow tasks. +# +#----------------------------------------------------------------------- +# +extrn_mdl_var_defns_fn="${EXTRN_MDL_LBCS_VAR_DEFNS_FN}" +extrn_mdl_var_defns_fp="${extrn_mdl_staging_dir}/${extrn_mdl_var_defns_fn}" +check_for_preexist_dir_file "${extrn_mdl_var_defns_fp}" "delete" + +if [ "${data_src}" = "disk" ]; then + extrn_mdl_fns_str="( "$( printf "\"%s\" " "${extrn_mdl_fns_on_disk[@]}" )")" +fi + +# +#----------------------------------------------------------------------- +# + +yyyymmdd=${extrn_mdl_cdate:0:8} +hh=${extrn_mdl_cdate:8:2} + +echo extrn_mdl_cdate=${extrn_mdl_cdate} +echo " yyyymmddhh= ${yyyymmdd} ${hh} " + +for files in "${extrn_mdl_fps_on_disk[@]}"; do + file=$( basename "$files" ) + echo " Checking for $file " + if [[ -f ${extrn_mdl_staging_dir}/$file ]]; then + echo "Found ${extrn_mdl_staging_dir}/$file " + else + fcsthr=$( echo $file | awk '{print substr($0, length($0)-2)}' | sed 's/^0*//' ) + +print_info_msg " +======================================================================== + +Missing $files for forecast hour $fcsthr ! +Need to do time interpolation! + +========================================================================" + + fcsthr_0=$(( fcsthr % 3 )) + echo fcsthr_0=${fcsthr_0} + fcsthr_m=$(( fcsthr - fcsthr_0 )) + echo fcsthr_m=${fcsthr_m} + fcsthr_p=$(( fcsthr - fcsthr_0 + 3 )) + echo fcsthr_p=${fcsthr_p} + fhrm=$( printf "%03d" ${fcsthr_m} ) + echo fhrm=${fhrm} + fhrp=$( printf "%03d" ${fcsthr_p} ) + echo fhrp=${fhrp} + in1=$( echo $file | sed 's/...$/'${fhrm}'/g' ) + echo in1=${in1} + in2=$( echo $file | sed 's/...$/'${fhrp}'/g' ) + echo in2=${in2} + vtime=$( date +%Y%m%d%H -d "${yyyymmdd} ${hh} +${fcsthr_m} hours" ) + echo vtime = $vtime + a="vt=${vtime}" + d1="${fcsthr} hour forecast" + echo $d1 + c=$( expr ${fcsthr_0}/3 | bc -l ) + c1=$( printf "%.5f\n" $c ) + b1=$( expr 1-$c1 | bc -l ) + echo " b1,c1= $b1 $c1 " + +print_info_msg " +======================================================================== +Deriving ${extrn_mdl_staging_dir}/$file +based on +${extrn_mdl_staging_dir}/$in1 +and +${extrn_mdl_staging_dir}/$in2 +========================================================================" + + $wgrib2 ${extrn_mdl_staging_dir}/$in1 -rpn sto_1 -import_grib ${extrn_mdl_staging_dir}/$in2 -rpn sto_2 -set_grib_type same \ + -if ":$a:" \ + -rpn "rcl_1:$b1:*:rcl_2:$c1:*:+" -set_ftime "$d1" -set_scaling same same -grib_out ${extrn_mdl_staging_dir}/$file + +print_info_msg " +======================================================================== +Done interpolating the GEFS lbcs files for hour \"${fcsthr}\" +========================================================================" + + fi + +done + +settings="\ +DATA_SRC=\"${data_src}\" +EXTRN_MDL_CDATE=\"${extrn_mdl_cdate}\" +EXTRN_MDL_STAGING_DIR=\"${extrn_mdl_staging_dir}\" +EXTRN_MDL_FNS=${extrn_mdl_fns_str}" +# +# If the external model files obtained above were for generating LBCS (as +# opposed to ICs), then add to the external model variable definitions +# file the array variable EXTRN_MDL_LBC_SPEC_FHRS containing the forecast +# hours at which the lateral boundary conditions are specified. +# +extrn_mdl_lbc_spec_fhrs_str="( "$( printf "\"%s\" " "${extrn_mdl_lbc_spec_fhrs[@]}" )")" +settings="$settings +EXTRN_MDL_LBC_SPEC_FHRS=${extrn_mdl_lbc_spec_fhrs_str}" + +{ cat << EOM >> ${extrn_mdl_var_defns_fp} +$settings +EOM +} || print_err_msg_exit "\ +Heredoc (cat) command to create a variable definitions file associated +with the external model from which to generate ${ics_or_lbcs} returned with a +nonzero status. The full path to this variable definitions file is: + extrn_mdl_var_defns_fp = \"${extrn_mdl_var_defns_fp}\"" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/function. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_jedienvar_ioda.sh b/scripts/exregional_jedienvar_ioda.sh new file mode 100755 index 000000000..dede5f2b7 --- /dev/null +++ b/scripts/exregional_jedienvar_ioda.sh @@ -0,0 +1,268 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that conduct JEDI EnVar IODA tasks +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cycle_dir" \ +"cycle_type" \ +"mem_type" \ +"workdir" \ +"slash_ensmem_subdir" \ +"comout" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + ncores=$(( NNODES_RUN_JEDIENVAR_IODA*PPN_RUN_JEDIENVAR_IODA )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_JEDIENVAR_IODA}" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n 1" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x + +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +# +#----------------------------------------------------------------------- +# +# Get into working directory and define fix directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for JEDI EnVAR IODA ..." + +cd_vrfy ${workdir} + +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" + +# +#----------------------------------------------------------------------- +# +# Prepare files and folders +# +#----------------------------------------------------------------------- +# +# Create folders for the working path +mkdir -p GSI_diags +mkdir -p obs +mkdir -p geoval + +# Define either "spinup" or "prod" cycle +if [ ${cycle_type} == "spinup" ]; then + cycle_tag="_spinup" +else + cycle_tag="" +fi + +# +echo "comout="$comout + +# Create folders under COMOUT +mkdir -p ${comout}/jedienvar_ioda +mkdir -p ${comout}/jedienvar_ioda/anal_gsi +mkdir -p ${comout}/jedienvar_ioda/jedi_obs + +# Specify the path of the GSI Analysis working folder +gsidiag_path=${cycle_dir}${slash_ensmem_subdir}/anal_conv_gsi${cycle_tag} + +# Copy GSI ncdiag files to COMOUT +cp_vrfy ${gsidiag_path}/ncdiag* ${comout}/jedienvar_ioda/anal_gsi/ + +# Copy only ncdiag first guess files to the workfing folder +cp_vrfy ${comout}/jedienvar_ioda/anal_gsi/*ges* ${workdir}/GSI_diags + +# +#----------------------------------------------------------------------- +# +# Change the ncdiag file name from *.nc4.$DATE to *.$DATE_ensmean.nc4 +# +#----------------------------------------------------------------------- +# +cd_vrfy ${workdir}/GSI_diags +fl=`ls -1 ncdiag*` + +for ifl in $fl +do + leftpart01=`basename $ifl .$CDATE` + leftpart02=`basename $leftpart01 .nc` + flnm=${leftpart02}.${CDATE}_ensmean.nc4 + echo $flnm + mv $ifl $flnm +done +# +#----------------------------------------------------------------------- +# +# Execute the IODA python script +# +#----------------------------------------------------------------------- +# +cd ${workdir} + +module list +ulimit -v unlimited +which python + +# Specify the IODA python script +IODACDir=/scratch1/BMC/zrtrr/llin/220601_jedi/ioda-bundle_20220530/ioda-bundle/build/bin + +# PYIODA library +export PYTHONPATH=/scratch1/BMC/zrtrr/llin/220501_emc_reg_wflow/dr-jedi-ioda/ioda-bundle/build/lib/python3.7/pyioda + +# Running the python script +PYTHONEXE=/scratch1/NCEPDEV/da/python/hpc-stack/miniconda3/core/miniconda3/4.6.14/envs/iodaconv/bin/python +${PYTHONEXE} ${IODACDir}/proc_gsi_ncdiag.py -o $workdir/obs -g $workdir/geoval $workdir/GSI_diags || print_err_msg_exit "\ +#Call to executable to run No Var Cloud Analysis returned with nonzero exit code." + +# Copy IODA obs files to COMOUT +cp_vrfy ${workdir}/obs/*nc4 ${comout}/jedienvar_ioda/jedi_obs/ + +# +#----------------------------------------------------------------------- +# +# touch jedienvar_ioda_complete.txt to indicate competion of this task +# +#----------------------------------------------------------------------- +# +touch jedienvar_ioda_complete.txt +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +JEDI EnVAR IODA completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_make_grid.sh b/scripts/exregional_make_grid.sh index a7921b5bb..cf00caeaf 100755 --- a/scripts/exregional_make_grid.sh +++ b/scripts/exregional_make_grid.sh @@ -20,7 +20,6 @@ . $USHDIR/link_fix.sh . $USHDIR/set_FV3nml_sfc_climo_filenames.sh . $USHDIR/set_FV3nml_stoch_params.sh -. $USHDIR/create_diag_table_files.sh # #----------------------------------------------------------------------- # @@ -97,25 +96,11 @@ export OMP_STACKSIZE=2048m # case $MACHINE in - "WCOSS_CRAY") - { save_shell_opts; set +x; } > /dev/null 2>&1 - . $MODULESHOME/init/sh - module load PrgEnv-intel cfp-intel-sandybridge/1.1.0 - module list - { restore_shell_opts; } > /dev/null 2>&1 - export NODES=1 - export APRUN="aprun -n 1 -N 1 -j 1 -d 1 -cc depth" - export KMP_AFFINITY=disabled + "WCOSS2") ulimit -s unlimited ulimit -a - ;; - - "WCOSS_DELL_P3") - { save_shell_opts; set +x; } > /dev/null 2>&1 - module list - { restore_shell_opts; } > /dev/null 2>&1 - export APRUN="mpirun" - ulimit -s unlimited + ncores=$(( NNODES_MAKE_GRID*PPN_MAKE_GRID)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_MAKE_GRID}" ;; "HERA") @@ -683,9 +668,6 @@ Call to function to set stochastic parameters in the FV3 namelist files for the various ensemble members failed." fi -create_diag_table_files || print_err_msg_exit "\ -Call to function to create a diagnostics table file under each cycle -directory failed." # #----------------------------------------------------------------------- # diff --git a/scripts/exregional_make_ics.sh b/scripts/exregional_make_ics.sh index f335fa163..3a2a5f163 100755 --- a/scripts/exregional_make_ics.sh +++ b/scripts/exregional_make_ics.sh @@ -57,6 +57,7 @@ This is the ex-script for the task that generates initial condition # valid_args=( \ "ics_dir" \ +"ics_nwges_dir" \ ) process_args valid_args "$@" # @@ -78,14 +79,15 @@ print_input_args valid_args # case "$MACHINE" in - "WCOSS_CRAY") + "WCOSS2") ulimit -s unlimited - APRUN="aprun -b -j1 -n48 -N12 -d1 -cc depth" - ;; - - "WCOSS_DELL_P3") - ulimit -s unlimited - APRUN="mpirun" + export OMP_STACKSIZE=1G + export OMP_NUM_THREADS=${TPP_MAKE_ICS} + export FI_OFI_RXM_SAR_LIMIT=3145728 + export FI_MR_CACHE_MAX_COUNT=0 + export MPICH_OFI_STARTUP_CONNECT=1 + ncores=$(( NNODES_MAKE_ICS*PPN_MAKE_ICS )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_MAKE_ICS} --cpu-bind core --depth ${OMP_NUM_THREADS}" ;; "HERA") @@ -125,7 +127,7 @@ esac # #----------------------------------------------------------------------- # -extrn_mdl_staging_dir="${CYCLE_DIR}/${EXTRN_MDL_NAME_ICS}/for_ICS" +extrn_mdl_staging_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${EXTRN_MDL_NAME_ICS}/for_ICS" extrn_mdl_var_defns_fp="${extrn_mdl_staging_dir}/${EXTRN_MDL_ICS_VAR_DEFNS_FN}" . ${extrn_mdl_var_defns_fp} # @@ -161,12 +163,17 @@ case "${CCPP_PHYS_SUITE}" in "FV3_GSD_SAR" | \ "FV3_RRFS_v1alpha" | \ "FV3_RRFS_v1beta" | \ - "FV3_HRRR" ) + "FV3_HRRR" | \ + "FV3_HRRR_gf" | \ + "FV3_RAP" ) if [ "${EXTRN_MDL_NAME_ICS}" = "RAP" ] || \ + [ "${EXTRN_MDL_NAME_ICS}" = "HRRRDAS" ] || \ [ "${EXTRN_MDL_NAME_ICS}" = "HRRR" ]; then varmap_file="GSDphys_var_map.txt" elif [ "${EXTRN_MDL_NAME_ICS}" = "NAM" ] || \ [ "${EXTRN_MDL_NAME_ICS}" = "FV3GFS" ] || \ + [ "${EXTRN_MDL_NAME_ICS}" = "GEFS" ] || \ + [ "${EXTRN_MDL_NAME_ICS}" = "GDASENKF" ] || \ [ "${EXTRN_MDL_NAME_ICS}" = "GSMGFS" ]; then varmap_file="GFSphys_var_map.txt" fi @@ -338,6 +345,7 @@ convert_nst="" # nsoill_out="4" if [ "${EXTRN_MDL_NAME_ICS}" = "HRRR" -o \ + "${EXTRN_MDL_NAME_ICS}" = "HRRRDAS" -o \ "${EXTRN_MDL_NAME_ICS}" = "RAP" ] && \ [ "${SDF_USES_RUC_LSM}" = "TRUE" ]; then nsoill_out="9" @@ -358,6 +366,7 @@ fi # thomp_mp_climo_file="" if [ "${EXTRN_MDL_NAME_ICS}" != "HRRR" -a \ + "${EXTRN_MDL_NAME_ICS}" != "HRRRDAS" -a \ "${EXTRN_MDL_NAME_ICS}" != "RAP" ] && \ [ "${SDF_USES_THOMPSON_MP}" = "TRUE" ]; then thomp_mp_climo_file="${THOMPSON_MP_CLIMO_FP}" @@ -402,12 +411,57 @@ case "${EXTRN_MDL_NAME_ICS}" in fn_grib2="${EXTRN_MDL_FNS[0]}" input_type="grib2" convert_nst=False + if [ "$MACHINE" == "WCOSS2" ]; then + if [ "${DO_RETRO}" = "TRUE" ]; then + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" + else + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" + fn_sfc_nemsio="${EXTRN_MDL_FNS[1]}" + fi + fi + elif [ "${FV3GFS_FILE_FMT_ICS}" = "netcdf" ]; then + tracers_input="[\"spfh\",\"clwmr\",\"o3mr\",\"icmr\",\"rwmr\",\"snmr\",\"grle\"]" + tracers="[\"sphum\",\"liq_wat\",\"o3mr\",\"ice_wat\",\"rainwat\",\"snowwat\",\"graupel\"]" + external_model="GFS" + input_type="gaussian_netcdf" + convert_nst=False + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" + fn_sfc_nemsio="${EXTRN_MDL_FNS[1]}" fi vgtyp_from_climo=True sotyp_from_climo=True vgfrc_from_climo=True minmax_vgfrc_from_climo=True lai_from_climo=True + tg3_from_soil=True + ;; + +"GDASENKF") + tracers_input="[\"spfh\",\"clwmr\",\"o3mr\",\"icmr\",\"rwmr\",\"snmr\",\"grle\"]" + tracers="[\"sphum\",\"liq_wat\",\"o3mr\",\"ice_wat\",\"rainwat\",\"snowwat\",\"graupel\"]" + external_model="GFS" + input_type="gaussian_netcdf" + convert_nst=False + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" + fn_sfc_nemsio="${EXTRN_MDL_FNS[1]}" + vgtyp_from_climo=True + sotyp_from_climo=True + vgfrc_from_climo=True + minmax_vgfrc_from_climo=True + lai_from_climo=True + tg3_from_soil=True + ;; + +"GEFS") + external_model="GFS" + fn_grib2="${EXTRN_MDL_FNS[0]}" + input_type="grib2" + convert_nst=False + vgtyp_from_climo=True + sotyp_from_climo=True + vgfrc_from_climo=True + minmax_vgfrc_from_climo=True + lai_from_climo=True tg3_from_soil=False ;; @@ -421,11 +475,30 @@ case "${EXTRN_MDL_NAME_ICS}" in geogrid_file_input_grid="${FIXgsm}/geo_em.d01.nc_HRRRX" # Note that vgfrc, shdmin/shdmax (minmax_vgfrc), and lai fields are only available in HRRRX # files after mid-July 2019, and only so long as the record order didn't change afterward - vgtyp_from_climo=True - sotyp_from_climo=True - vgfrc_from_climo=True - minmax_vgfrc_from_climo=True - lai_from_climo=True + vgtyp_from_climo=False + sotyp_from_climo=False + vgfrc_from_climo=False + minmax_vgfrc_from_climo=False + lai_from_climo=False + tg3_from_soil=True + convert_nst=False + ;; + +"HRRRDAS") + external_model="HRRR" + fn_grib2="${EXTRN_MDL_FNS[0]}" + input_type="grib2" +# +# Path to the HRRRX geogrid file. +# + geogrid_file_input_grid="${FIXgsm}/hrrrdas_geo_em.d02.nc" +# Note that vgfrc, shdmin/shdmax (minmax_vgfrc), and lai fields are only available in HRRRX +# files after mid-July 2019, and only so long as the record order didn't change afterward + vgtyp_from_climo=False + sotyp_from_climo=False + vgfrc_from_climo=False + minmax_vgfrc_from_climo=False + lai_from_climo=False tg3_from_soil=True convert_nst=False ;; @@ -438,11 +511,11 @@ case "${EXTRN_MDL_NAME_ICS}" in # Path to the RAPX geogrid file. # geogrid_file_input_grid="${FIXgsm}/geo_em.d01.nc_RAPX" - vgtyp_from_climo=True + vgtyp_from_climo=False sotyp_from_climo=False - vgfrc_from_climo=True - minmax_vgfrc_from_climo=True - lai_from_climo=True + vgfrc_from_climo=False + minmax_vgfrc_from_climo=False + lai_from_climo=False tg3_from_soil=True convert_nst=False ;; @@ -475,9 +548,21 @@ esac # #----------------------------------------------------------------------- # +yyyymmdd="${EXTRN_MDL_CDATE:0:8}" mm="${EXTRN_MDL_CDATE:4:2}" dd="${EXTRN_MDL_CDATE:6:2}" hh="${EXTRN_MDL_CDATE:8:2}" + +fhr="${EXTRN_MDL_ICS_OFFSET_HRS}" +cdate_crnt_fhr=$( date --utc --date "${yyyymmdd} ${hh} UTC + ${fhr} hours" "+%Y%m%d%H" ) +# +# Get the month, day, and hour corresponding to the current forecast time +# of the the external model. +# + mm="${cdate_crnt_fhr:4:2}" + dd="${cdate_crnt_fhr:6:2}" + hh="${cdate_crnt_fhr:8:2}" + # #----------------------------------------------------------------------- # @@ -520,12 +605,11 @@ fi # settings=" 'config': { - 'fix_dir_input_grid': ${FIXgsm}, 'fix_dir_target_grid': ${FIXLAM}, 'mosaic_file_target_grid': ${FIXLAM}/${CRES}${DOT_OR_USCORE}mosaic.halo$((10#${NH4})).nc, 'orog_dir_target_grid': ${FIXLAM}, 'orog_files_target_grid': ${CRES}${DOT_OR_USCORE}oro_data.tile${TILE_RGNL}.halo$((10#${NH4})).nc, - 'vcoord_file_target_grid': ${FIXam}/global_hyblev.l65.txt, + 'vcoord_file_target_grid': ${FIXam}/global_hyblev_fcst_rrfsL65.txt, 'varmap_file': ${UFS_UTILS_DIR}/parm/varmap_tables/${varmap_file}, 'data_dir_input_grid': ${extrn_mdl_staging_dir}, 'atm_files_input_grid': ${fn_atm_nemsio}, @@ -614,45 +698,13 @@ mv_vrfy gfs.bndy.nc ${ics_dir}/gfs_bndy.tile${TILE_RGNL}.000.nc # #----------------------------------------------------------------------- # -# Process FVCOM Data +# copy results to nwges for longe time disk storage. # #----------------------------------------------------------------------- # -if [ "${USE_FVCOM}" = "TRUE" ]; then - fvcom_exec_fn="fvcom_to_FV3" - fvcom_exec_fp="$EXECDIR/${fvcom_exec_fn}" - if [ ! -f "${fvcom_exec_fp}" ]; then - print_err_msg_exit "\ -The executable (fvcom_exec_fp) for processing FVCOM data onto FV3-LAM -native grid does not exist: - fvcom_exec_fp = \"${fvcom_exec_fp}\" -Please ensure that you've built this executable." - fi - cp_vrfy ${fvcom_exec_fp} ${ics_dir}/. - fvcom_data_fp="${FVCOM_DIR}/${FVCOM_FILE}" - if [ ! -f "${fvcom_data_fp}" ]; then - print_err_msg_exit "\ -The file or path (fvcom_data_fp) does not exist: - fvcom_data_fp = \"${fvcom_data_fp}\" -Please check the following user defined variables: - FVCOM_DIR = \"${FVCOM_DIR}\" - FVCOM_FILE= \"${FVCOM_FILE}\" " - fi +cp_vrfy ${ics_dir}/*.nc ${ics_nwges_dir}/. - cp_vrfy ${fvcom_data_fp} ${ics_dir}/fvcom.nc - cd_vrfy ${ics_dir} - ${APRUN} ${fvcom_exec_fn} sfc_data.tile${TILE_RGNL}.halo${NH0}.nc fvcom.nc || \ - print_err_msg_exit "\ -Call to executable (fvcom_exe) to modify sfc fields for FV3-LAM failed: - fvcom_exe = \"${fvcom_exe}\" -The following variables were being used: - FVCOM_DIR = \"${FVCOM_DIR}\" - FVCOM_FILE = \"${FVCOM_FILE}\" - ics_dir = \"${ics_dir}\" - fvcom_exe_dir = \"${fvcom_exe_dir}\" - fvcom_exe = \"${fvcom_exe}\"" -fi # #----------------------------------------------------------------------- # diff --git a/scripts/exregional_make_lbcs.sh b/scripts/exregional_make_lbcs.sh index 6a9fc7365..5fb660ab8 100755 --- a/scripts/exregional_make_lbcs.sh +++ b/scripts/exregional_make_lbcs.sh @@ -57,6 +57,9 @@ hour zero). # valid_args=( \ "lbcs_dir" \ +"lbcs_nwges_dir" \ +"bcgrp" \ +"bcgrpnum" \ ) process_args valid_args "$@" # @@ -78,14 +81,12 @@ print_input_args valid_args # case "$MACHINE" in - "WCOSS_CRAY") + "WCOSS2") ulimit -s unlimited - APRUN="aprun -b -j1 -n48 -N12 -d1 -cc depth" - ;; - - "WCOSS_DELL_P3") - ulimit -s unlimited - APRUN="mpirun" + export OMP_STACKSIZE=1G + export OMP_NUM_THREADS=2 + ncores=$(( NNODES_MAKE_LBCS*PPN_MAKE_LBCS )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_MAKE_LBCS} --cpu-bind core --depth ${OMP_NUM_THREADS}" ;; "HERA") @@ -125,7 +126,7 @@ esac # #----------------------------------------------------------------------- # -extrn_mdl_staging_dir="${CYCLE_DIR}/${EXTRN_MDL_NAME_LBCS}/for_LBCS" +extrn_mdl_staging_dir="${CYCLE_DIR}${SLASH_ENSMEM_SUBDIR}/${EXTRN_MDL_NAME_LBCS}/for_LBCS" extrn_mdl_var_defns_fp="${extrn_mdl_staging_dir}/${EXTRN_MDL_LBCS_VAR_DEFNS_FN}" . ${extrn_mdl_var_defns_fp} # @@ -135,7 +136,7 @@ extrn_mdl_var_defns_fp="${extrn_mdl_staging_dir}/${EXTRN_MDL_LBCS_VAR_DEFNS_FN}" # #----------------------------------------------------------------------- # -workdir="${lbcs_dir}/tmp_LBCS" +workdir="${lbcs_dir}/tmp_LBCS_${bcgrp}" mkdir_vrfy -p "$workdir" cd_vrfy $workdir # @@ -161,12 +162,16 @@ case "${CCPP_PHYS_SUITE}" in "FV3_GSD_SAR" | \ "FV3_RRFS_v1alpha" | \ "FV3_RRFS_v1beta" | \ - "FV3_HRRR" ) + "FV3_HRRR" | \ + "FV3_HRRR_gf" | \ + "FV3_RAP" ) if [ "${EXTRN_MDL_NAME_LBCS}" = "RAP" ] || \ [ "${EXTRN_MDL_NAME_LBCS}" = "HRRR" ]; then varmap_file="GSDphys_var_map.txt" elif [ "${EXTRN_MDL_NAME_LBCS}" = "NAM" ] || \ [ "${EXTRN_MDL_NAME_LBCS}" = "FV3GFS" ] || \ + [ "${EXTRN_MDL_NAME_LBCS}" = "GEFS" ] || \ + [ "${EXTRN_MDL_NAME_LBCS}" = "GDASENKF" ] || \ [ "${EXTRN_MDL_NAME_LBCS}" = "GSMGFS" ]; then varmap_file="GFSphys_var_map.txt" fi @@ -321,9 +326,30 @@ case "${EXTRN_MDL_NAME_LBCS}" in external_model="GFS" fn_grib2="${EXTRN_MDL_FNS[0]}" input_type="grib2" + elif [ "${FV3GFS_FILE_FMT_ICS}" = "netcdf" ]; then + tracers_input="[\"spfh\",\"clwmr\",\"o3mr\",\"icmr\",\"rwmr\",\"snmr\",\"grle\"]" + tracers="[\"sphum\",\"liq_wat\",\"o3mr\",\"ice_wat\",\"rainwat\",\"snowwat\",\"graupel\"]" + external_model="GFS" + input_type="gaussian_netcdf" + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" fi ;; +"GDASENKF") + tracers_input="[\"spfh\",\"clwmr\",\"o3mr\",\"icmr\",\"rwmr\",\"snmr\",\"grle\"]" + tracers="[\"sphum\",\"liq_wat\",\"o3mr\",\"ice_wat\",\"rainwat\",\"snowwat\",\"graupel\"]" + external_model="GFS" + input_type="gaussian_netcdf" + fn_atm_nemsio="${EXTRN_MDL_FNS[0]}" + fn_sfc_nemsio="${EXTRN_MDL_FNS[1]}" + ;; + +"GEFS") + external_model="GFS" + fn_grib2="${EXTRN_MDL_FNS[0]}" + input_type="grib2" + ;; + "RAP") external_model="RAP" input_type="grib2" @@ -332,7 +358,7 @@ case "${EXTRN_MDL_NAME_LBCS}" in "HRRR") external_model="HRRR" input_type="grib2" - ;; +;; "NAM") external_model="NAM" @@ -372,7 +398,12 @@ fi #----------------------------------------------------------------------- # num_fhrs="${#EXTRN_MDL_LBC_SPEC_FHRS[@]}" -for (( i=0; i<${num_fhrs}; i++ )); do +bcgrp10=${bcgrp#0} +bcgrpnum10=${bcgrpnum#0} +for (( ii=0; ii<${num_fhrs}; ii=ii+bcgrpnum10 )); do + i=$(( ii + bcgrp10 )) + if [ ${i} -lt ${num_fhrs} ]; then + echo " group ${bcgrp10} processes member ${i}" # # Get the forecast hour of the external model. # @@ -393,8 +424,17 @@ for (( i=0; i<${num_fhrs}; i++ )); do fn_atm_nemsio="${EXTRN_MDL_FNS[$i]}" elif [ "${FV3GFS_FILE_FMT_LBCS}" = "grib2" ]; then fn_grib2="${EXTRN_MDL_FNS[$i]}" + elif [ "${FV3GFS_FILE_FMT_LBCS}" = "netcdf" ]; then + fn_atm_nemsio="${EXTRN_MDL_FNS[$i]}" fi ;; + "GDASENKF") + fn_atm_nemsio="${EXTRN_MDL_FNS[0][$i]}" + fn_sfc_nemsio="${EXTRN_MDL_FNS[1][$i]}" + ;; + "GEFS") + fn_grib2="${EXTRN_MDL_FNS[$i]}" + ;; "RAP") fn_grib2="${EXTRN_MDL_FNS[$i]}" ;; @@ -453,12 +493,11 @@ list file has not specified for this external LBC model (EXTRN_MDL_NAME_LBCS): # settings=" 'config': { - 'fix_dir_input_grid': ${FIXgsm}, 'fix_dir_target_grid': ${FIXLAM}, 'mosaic_file_target_grid': ${FIXLAM}/${CRES}${DOT_OR_USCORE}mosaic.halo$((10#${NH4})).nc, 'orog_dir_target_grid': ${FIXLAM}, 'orog_files_target_grid': ${CRES}${DOT_OR_USCORE}oro_data.tile${TILE_RGNL}.halo$((10#${NH4})).nc, - 'vcoord_file_target_grid': ${FIXam}/global_hyblev.l65.txt, + 'vcoord_file_target_grid': ${FIXam}/global_hyblev_fcst_rrfsL65.txt, 'varmap_file': ${UFS_UTILS_DIR}/parm/varmap_tables/${varmap_file}, 'data_dir_input_grid': ${extrn_mdl_staging_dir}, 'atm_files_input_grid': ${fn_atm_nemsio}, @@ -524,10 +563,16 @@ located in the following directory: # the forecast hour of the FV3-LAM (which is not necessarily the same as # that of the external model since their start times may be offset). # - fcst_hhh_FV3LAM=$( printf "%03d" "${LBC_SPEC_FCST_HRS[$i]}" ) + lbc_spec_fhrs=( "${EXTRN_MDL_LBC_SPEC_FHRS[$i]}" ) + fcst_hhh=$(( ${lbc_spec_fhrs} - ${EXTRN_MDL_LBCS_OFFSET_HRS} )) + fcst_hhh_FV3LAM=`printf %3.3i $fcst_hhh` mv_vrfy gfs.bndy.nc ${lbcs_dir}/gfs_bndy.tile7.${fcst_hhh_FV3LAM}.nc +# copy results to nwges for longe time disk storage. + cp_vrfy ${lbcs_dir}/gfs_bndy.tile7.${fcst_hhh_FV3LAM}.nc ${lbcs_nwges_dir}/. + fi done + # #----------------------------------------------------------------------- # diff --git a/scripts/exregional_make_orog.sh b/scripts/exregional_make_orog.sh index 04f4dd0bc..84005ea3c 100755 --- a/scripts/exregional_make_orog.sh +++ b/scripts/exregional_make_orog.sh @@ -96,23 +96,11 @@ export OMP_STACKSIZE=2048m # case $MACHINE in - "WCOSS_CRAY") - { save_shell_opts; set +x; } > /dev/null 2>&1 - . $MODULESHOME/init/sh - module load PrgEnv-intel cfp-intel-sandybridge/1.1.0 - module list - { restore_shell_opts; } > /dev/null 2>&1 - export NODES=1 - export APRUN="aprun -n 1 -N 1 -j 1 -d 1 -cc depth" - export KMP_AFFINITY=disabled + "WCOSS2") ulimit -s unlimited ulimit -a - ;; - - "WCOSS_DELL_P3") - ulimit -s unlimited - ulimit -a - APRUN="mpirun" + ncores=$(( NNODES_MAKE_OROG*PPN_MAKE_OROG )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_MAKE_ORO}" ;; "HERA") @@ -324,7 +312,7 @@ mv_vrfy "${raw_orog_fp_orig}" "${raw_orog_fp}" # #----------------------------------------------------------------------- # -if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ]; then +if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR_gf" ] || [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ]; then cp_vrfy ${GWD_HRRRsuite_DIR}/${CRES}*_ls.*.nc ${OROG_DIR} cp_vrfy ${GWD_HRRRsuite_DIR}/${CRES}*_ss.*.nc ${OROG_DIR} fi @@ -436,7 +424,7 @@ cp_vrfy "${raw_orog_fp}" "${filtered_orog_fp}" # point it to the actual grid file specified by grid_fp. # -if [ "${MACHINE}" = "WCOSS_CRAY" ]; then +if [ "${MACHINE}" = "WCOSS2" ]; then ln_vrfy -fs "${grid_fp}" "${filter_dir}/${grid_fn}" else ln_vrfy -fs --relative "${grid_fp}" "${filter_dir}/${grid_fn}" diff --git a/scripts/exregional_make_sfc_climo.sh b/scripts/exregional_make_sfc_climo.sh index 5d5c526d8..97245dbf2 100755 --- a/scripts/exregional_make_sfc_climo.sh +++ b/scripts/exregional_make_sfc_climo.sh @@ -128,19 +128,9 @@ EOF # case $MACHINE in - "WCOSS_CRAY") - APRUN=${APRUN:-"aprun -j 1 -n 6 -N 6"} - ;; - - "WCOSS_DELL_P3") -# Specify computational resources. - export NODES=2 - export ntasks=48 - export ptile=24 - export threads=1 - export MP_LABELIO=yes - export OMP_NUM_THREADS=$threads - APRUN="mpirun" + "WCOSS2") + ncores=$(( NNODES_MAKE_SFC_CLIMO*PPN_MAKE_SFC_CLIMO)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_MAKE_SFC_CLIMO}" ;; "HERA") diff --git a/scripts/exregional_nonvarcldanl.sh b/scripts/exregional_nonvarcldanl.sh new file mode 100755 index 000000000..ba224a005 --- /dev/null +++ b/scripts/exregional_nonvarcldanl.sh @@ -0,0 +1,383 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that conduct non-var cloud analysis +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "gridspec_dir" "mem_type" "workdir" "comout" "comin" "slash_ensmem_subdir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + ncores=$(( NNODES_RUN_NONVARCLDANL*PPN_RUN_NONVARCLDANL )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_NONVARCLDANL}" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n 1" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +# +#----------------------------------------------------------------------- +# +# Get into working directory and define fix directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for radar tten process ..." + +cd_vrfy ${workdir} + +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" + +# +#----------------------------------------------------------------------- +# +# link or copy background and grid configuration files +# +#----------------------------------------------------------------------- + +if [ ${cycle_type} == "spinup" ]; then + cycle_tag="_spinup" +else + cycle_tag="" +fi +if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam${cycle_tag}/INPUT +else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam${cycle_tag}/INPUT +fi + +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +cp_vrfy ${fixgriddir}/fv3_akbk fv3_akbk +cp_vrfy ${fixgriddir}/fv3_grid_spec fv3_grid_spec + +BKTYPE=0 +if [ -r "${bkpath}/coupler.res" ]; then # Use background from warm restart + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -s ${bkpath}/fv_core.res.tile1.nc fv3_dynvars + ln_vrfy -s ${bkpath}/fv_tracer.res.tile1.nc fv3_tracer + ln_vrfy -s ${bkpath}/sfc_data.nc fv3_sfcdata + ln_vrfy -s ${bkpath}/phy_data.nc fv3_phydata + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -s ${bkpath}/fv_core.res.tile1.nc.${iii} fv3_dynvars.${iii} + ln_vrfy -s ${bkpath}/fv_tracer.res.tile1.nc.${iii} fv3_tracer.${iii} + ln_vrfy -s ${bkpath}/sfc_data.nc.${iii} fv3_sfcdata.${iii} + ln_vrfy -s ${bkpath}/phy_data.nc.${iii} fv3_phydata.${iii} + ln_vrfy -s ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec.${iii} + done + fi + BKTYPE=0 +else # Use background from input (cold start) + ln_vrfy -s ${bkpath}/sfc_data.tile7.halo0.nc fv3_sfcdata + ln_vrfy -s ${bkpath}/phy_data.tile7.halo0.nc fv3_phydata + ln_vrfy -s ${bkpath}/gfs_data.tile7.halo0.nc fv3_dynvars + ln_vrfy -s ${bkpath}/gfs_data.tile7.halo0.nc fv3_tracer + BKTYPE=1 +fi + +# +#----------------------------------------------------------------------- +# +# link/copy observation files to working directory +# +#----------------------------------------------------------------------- + +process_bufr_path=${comin} + +obs_files_source[0]=${comin}/rrfs.t${HH}z.NASALaRC_cloud4fv3.bin +obs_files_target[0]=NASALaRC_cloud4fv3.bin + +obs_files_source[1]=${comin}/rrfs.t${HH}z.fv3_metarcloud.bin +obs_files_target[1]=fv3_metarcloud.bin + +obs_files_source[2]=${comin}/rrfs.t${HH}z.LightningInFV3LAM.bin +obs_files_target[2]=LightningInFV3LAM.dat + +obs_number=${#obs_files_source[@]} +for (( i=0; i<${obs_number}; i++ )); +do + obs_file=${obs_files_source[$i]} + obs_file_t=${obs_files_target[$i]} + if [ -r "${obs_file}" ]; then + cp_vrfy "${obs_file}" "${obs_file_t}" + else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" + fi +done + +# radar reflectivity on esg grid over each subdomain. +process_radarref_path=${cycle_dir}/process_radarref${cycle_tag} +ss=0 +for bigmin in 0; do + bigmin=$( printf %2.2i $bigmin ) + obs_file=${comin}/rrfs.t${HH}z.RefInGSI3D.bin.${bigmin} + if [ "${IO_LAYOUT_Y}" == "1" ]; then + obs_file_check=${obs_file} + else + obs_file_check=${obs_file}.0000 + fi + ((ss+=1)) + num=$( printf %2.2i ${ss} ) + if [ -r "${obs_file_check}" ]; then + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy "${obs_file}" "RefInGSI3D.dat_${num}" + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy "${obs_file}.${iii}" "RefInGSI3D.dat.${iii}_${num}" + done + fi + else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" + fi +done + +#----------------------------------------------------------------------- +# +# Build namelist +# +#----------------------------------------------------------------------- + +if [ ${BKTYPE} -eq 1 ]; then + n_iolayouty=1 +else + n_iolayouty=$(($IO_LAYOUT_Y)) +fi +if [ ${DO_ENKF_RADAR_REF} == "TRUE" ]; then + l_qnr_from_qr=".true." +fi +if [ -r "${comout}/gsi_complete_radar.txt" ] ; then + l_precip_clear_only=".true." + l_qnr_from_qr=".true." +fi + +cat << EOF > gsiparm.anl + + &SETUP + iyear=${YYYY}, + imonth=${MM}, + iday=${DD}, + ihour=${HH}, + iminute=00, + fv3_io_layout_y=${n_iolayouty}, + fv3sar_bg_opt=${BKTYPE} + / + &RAPIDREFRESH_CLDSURF + dfi_radar_latent_heat_time_period=20.0, + metar_impact_radius=10.0, + metar_impact_radius_lowCloud=4.0, + l_pw_hgt_adjust=.true., + l_limit_pw_innov=.true., + max_innov_pct=0.1, + l_cleanSnow_WarmTs=.true., + r_cleanSnow_WarmTs_threshold=5.0, + l_conserve_thetaV=.true., + i_conserve_thetaV_iternum=3, + l_cld_bld=.true., + l_numconc=.true., + cld_bld_hgt=${cld_bld_hgt}, + l_precip_clear_only=${l_precip_clear_only}, + build_cloud_frac_p=0.50, + clear_cloud_frac_p=0.10, + iclean_hydro_withRef_allcol=1, + i_gsdcldanal_type=6, + i_gsdsfc_uselist=1, + i_lightpcp=1, + i_gsdqc=2, + l_saturate_bkCloud=.true., + l_qnr_from_qr=${l_qnr_from_qr}, + n0_rain=100000000.0 + i_T_Q_adjust=${i_T_Q_adjust}, + l_rtma3d=${l_rtma3d}, + i_precip_vertical_check=${i_precip_vertical_check}, + / +EOF + + + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# +exect="fv3lam_nonvarcldana.exe" + +if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " +Copying the nonVar Cloud Analysis executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${workdir} +else + print_err_msg_exit "\ +The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" +Build executable and rerun." +fi +# +# +# +#----------------------------------------------------------------------- +# +# Run the non-var cloud analysis application. +# +#----------------------------------------------------------------------- +# +if [ ${BKTYPE} -eq 0 ]; then +$APRUN ./${exect} > stdout 2>&1 || print_err_msg_exit "\ +Call to executable to run No Var Cloud Analysis returned with nonzero exit code." +cp stdout ${comout}/stdout.t${HH}z.nonvarcloudanalysis +cat stdout_cloudanalysis.* > ${comout}/stdout.t${HH}z.nonvarcloudanalysis.all +fi +# +#----------------------------------------------------------------------- +# +# touch nonvarcldanl_complete.txt to indicate competion of this task +# +touch ${comout}/nonvarcldanl_complete.txt +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +RADAR REFL TTEN PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_prep_fvcom.sh b/scripts/exregional_prep_fvcom.sh new file mode 100755 index 000000000..7e48fe332 --- /dev/null +++ b/scripts/exregional_prep_fvcom.sh @@ -0,0 +1,248 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This script, along with the python script it calls, is used to remap the fvcom output from the 5 lakes onto the RRFS grid. It maps skin temp and ice concentration. The resulting file is used by RRFS for improving lake effect snow forecasts. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "modelinputdir" "FIXLAM" "FVCOM_DIR" "YYYYJJJHH" "YYYYMMDD" "YYYYMMDDm1" "HH") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- + +set -x + +# Working directory +dir=${modelinputdir}/fvcom_remap + +mkdir -m 775 -p ${dir} +cd_vrfy ${dir} + +# FVCOM output files +# PDY and cycle of forecast period - if most recent files are not available, look back one cycle +if [ $HH -eq 02 -o $HH -eq 03 -o $HH -eq 04 -o $HH -eq 05 -o $HH -eq 06 -o $HH -eq 07 ]; then + PDYf=$YYYYMMDD + PDYfm1=$YYYYMMDDm1 + cycf=00 # 00Z forecast files are available ~02Z on WCOSS2 + cycfm1=18 # 18Z forecast files from the previous day +elif [ $HH -eq 08 -o $HH -eq 09 -o $HH -eq 10 -o $HH -eq 11 -o $HH -eq 12 -o $HH -eq 13 ]; then + PDYf=$YYYYMMDD + PDYfm1=$YYYYMMDD + cycf=06 # 06Z forecast files are available ~08Z on WCOSS2 + cycfm1=00 # 00Z forecast files +elif [ $HH -eq 14 -o $HH -eq 15 -o $HH -eq 16 -o $HH -eq 17 -o $HH -eq 18 -o $HH -eq 19 ]; then + PDYf=$YYYYMMDD + PDYfm1=$YYYYMMDD + cycf=12 # 12Z forecast files are available ~14Z on WCOSS2 + cycfm1=06 # 06Z forecast files +elif [ $HH -eq 20 -o $HH -eq 21 -o $HH -eq 22 -o $HH -eq 23 ]; then + PDYf=$YYYYMMDD + PDYfm1=$YYYYMMDD + cycf=18 # 18Z forecast files are available ~20Z on WCOSS2 + cycfm1=12 # 12Z forecast files +elif [ $HH -eq 00 -o $HH -eq 01 ]; then + PDYf=$YYYYMMDDm1 + PDYfm1=$YYYYMMDDm1 + cycf=18 # 18Z forecast files from the previous day are available ~20Z on WCOSS2 + cycfm1=12 # 12Z forecast files from the previous day +fi + +# Hour of forecast period - if most recent files are not available, look back one cycle +if [ $HH -eq 00 -o $HH -eq 06 -o $HH -eq 12 -o $HH -eq 18 ]; then + fhr=006 # The 6-hr forecast from cycf (defined above) + fhrm1=012 # The 12-hr forecast from cycfm1 (defined above) +elif [ $HH -eq 01 -o $HH -eq 07 -o $HH -eq 13 -o $HH -eq 19 ]; then + fhr=007 # The 7-hr forecast from cycf + fhrm1=013 # The 13-hr forecast from cycfm1 +elif [ $HH -eq 02 -o $HH -eq 08 -o $HH -eq 14 -o $HH -eq 20 ]; then + fhr=002 # The 2-hr forecast from cycf + fhrm1=008 # The 8-hr forecast from cycfm1 +elif [ $HH -eq 03 -o $HH -eq 09 -o $HH -eq 15 -o $HH -eq 21 ]; then + fhr=003 # The 3-hr forecast from cycf + fhrm1=009 # The 9-hr forecast from cycfm1 +elif [ $HH -eq 04 -o $HH -eq 10 -o $HH -eq 16 -o $HH -eq 22 ]; then + fhr=004 # The 4-hr forecast from cycf + fhrm1=010 # The 10-hr forecast from cycfm1 +elif [ $HH -eq 05 -o $HH -eq 11 -o $HH -eq 17 -o $HH -eq 23 ]; then + fhr=005 # The 5-hr forecast from cycf + fhrm1=011 # The 11-hr forecast from cycfm1 +fi + +# Find the most recent FVCOM files +erie="${FVCOM_DIR}/leofs.${PDYf}/nos.leofs.fields.f${fhr}.${PDYf}.t${cycf}z.nc" +mh="${FVCOM_DIR}/lmhofs.${PDYf}/nos.lmhofs.fields.f${fhr}.${PDYf}.t${cycf}z.nc" +sup="${FVCOM_DIR}/lsofs.${PDYf}/nos.lsofs.fields.f${fhr}.${PDYf}.t${cycf}z.nc" +ont="${FVCOM_DIR}/loofs.${PDYf}/nos.loofs.fields.f${fhr}.${PDYf}.t${cycf}z.nc" + +erie2="${FVCOM_DIR}/leofs.${PDYfm1}/nos.leofs.fields.f${fhrm1}.${PDYfm1}.t${cycfm1}z.nc" +mh2="${FVCOM_DIR}/lmhofs.${PDYfm1}/nos.lmhofs.fields.f${fhrm1}.${PDYfm1}.t${cycfm1}z.nc" +sup2="${FVCOM_DIR}/lsofs.${PDYfm1}/nos.lsofs.fields.f${fhrm1}.${PDYfm1}.t${cycfm1}z.nc" +ont2="${FVCOM_DIR}/loofs.${PDYfm1}/nos.loofs.fields.f${fhrm1}.${PDYfm1}.t${cycfm1}z.nc" + +if [[ -e "$erie" && -e "$mh" && -e "$sup" && -e "$ont" ]]; then + output_erie=$erie + output_mh=$mh + output_sup=$sup + output_ont=$ont +elif [[ -e "$erie2" && -e "$mh2" && -e "$sup2" && -e "$ont2" ]]; then + output_erie=$erie2 + output_mh=$mh2 + output_sup=$sup2 + output_ont=$ont2 +else + echo "WARNING: No FVCOM data is available." + exit +fi + + +# names of missing input files to the Python script +siglay0_tmp1="erie_siglay0_missing.nc" +siglay0_tmp2="lmhofs_siglay0_missing.nc" +siglay0_tmp3="sup_siglay0_missing.nc" +siglay0_tmp4="ont_siglay0_missing.nc" + +ilake=1 +ilake_use=0 +for fn in $output_erie $output_mh $output_sup $output_ont +do + ilake_use=`expr $ilake_use + 1` + echo 'subsetting surface layer only using nowcast file' + echo $fn + + ncks -O -d siglay,0 -d siglev,0 $fn siglay0_tmp${ilake}.nc + + if [ $ilake -eq 1 ]; then siglay0_tmp1=siglay0_tmp${ilake}.nc; fi + if [ $ilake -eq 2 ]; then siglay0_tmp2=siglay0_tmp${ilake}.nc; fi + if [ $ilake -eq 3 ]; then siglay0_tmp3=siglay0_tmp${ilake}.nc; fi + if [ $ilake -eq 4 ]; then siglay0_tmp4=siglay0_tmp${ilake}.nc; fi + ls -l siglay0_tmp${ilake}.nc + samplefn=siglay0_tmp${ilake}.nc + ilake=`expr $ilake + 1` +done + +echo $ilake_use' fvcom output files found - proceed...' + +# extract GL mask variables +echo 'Copying a file for GL mask on RRFS grid ...' +cp ${FIXLAM}/${CRES}_fvcom_mask.nc ./tmp.nc # RRFS CONUS + +# get time info +echo 'getting time information from a sample FVCOM output file...' +echo $samplefn +ncks -O -h -v time,Times $samplefn time.nc +ncrename -O -h -d time,Time time.nc # rename +ncks -h -A time.nc tmp.nc # append +ncdump -v Times tmp.nc | tail -52 +rm time.nc + +# add a variable container for tsfc +echo 'adding variables (blank for now) to output file ...' +ncap2 -O -h -s 'twsfc[$Time,$lat,$lon]=glmask' tmp.nc out_fv3grid.nc +ncatted -O -h -a long_name,twsfc,o,c,water_surface_temperature out_fv3grid.nc +ncatted -O -h -a units,twsfc,o,c,degC out_fv3grid.nc +ncatted -O -h -a description,twsfc,o,c,"water surface temperature" out_fv3grid.nc +ncap2 -O -h -s 'tisfc[$Time,$lat,$lon]=glmask' out_fv3grid.nc out_fv3grid.nc +ncatted -O -h -a long_name,twsfc,o,c,water_surface_temperature out_fv3grid.nc +ncatted -O -h -a long_name,tisfc,o,c,ice_surface_temperature out_fv3grid.nc +ncatted -O -h -a units,tisfc,o,c,degC out_fv3grid.nc +ncatted -O -h -a description,tisfc,o,c,"ice surface temperature" out_fv3grid.nc +ncap2 -O -h -s 'aice[$Time,$lat,$lon]=glmask' out_fv3grid.nc out_fv3grid.nc +ncatted -O -h -a long_name,aice,o,c,ice_concentration out_fv3grid.nc +ncatted -O -h -a units,aice,o,c,- out_fv3grid.nc +ncatted -O -h -a description,aice,o,c,"ice fraction [0-1]" out_fv3grid.nc +ncap2 -O -h -s 'vice[$Time,$lat,$lon]=glmask' out_fv3grid.nc out_fv3grid.nc +ncatted -O -h -a long_name,vice,o,c,mean_ice_volume out_fv3grid.nc +ncatted -O -h -a units,vice,o,c,m out_fv3grid.nc +ncatted -O -h -a description,vice,o,c,"mean ice volume [m]" out_fv3grid.nc +ncap2 -O -h -s 'tsfc[$Time,$lat,$lon]=glmask' out_fv3grid.nc out_fv3grid.nc +ncatted -O -h -a long_name,tsfc,o,c,lake_skin_temperature out_fv3grid.nc +ncatted -O -h -a units,tsfc,o,c,degC out_fv3grid.nc +ncatted -O -h -a description,tsfc,o,c,"skin temperature of lake and ice surfaces (weighted-mean based on ice concentration)" out_fv3grid.nc + +# edit mask attributes +ncatted -O -h -a description,glmask,o,c,'Great Lakes mask (1 if overwater 0 otherwise)' out_fv3grid.nc + +# run interpolation script +echo 'now running the Python script for remapping ...' +echo $siglay0_tmp1 $siglay0_tmp2 $siglay0_tmp3 $siglay0_tmp4 +python ${SCRIPTSDIR}/fvcom_remap.py $siglay0_tmp1 $siglay0_tmp2 $siglay0_tmp3 $siglay0_tmp4 $PREDEF_GRID_NAME > python.log +cat python.log +if [ "`tail -1 python.log`" != "fvcom_remap.py completed successfully" ] +then + echo 'WARNING: Problem with fvcom_remap.py - ABORT' + exit +fi + +# extract skin temp info +ncks -O -h -v geolon,geolat,glmask,twsfc,tisfc,aice,vice,tsfc,time,Times out_fv3grid.nc tsfc_fv3grid.nc +ncap2 -O -s 'geolon=double(geolon);geolat=double(geolat);time=double(time)' tsfc_fv3grid.nc tsfc_fv3grid.nc +echo 'skin temp info extracted' + +mv tsfc_fv3grid.nc tsfc_fv3grid_${YYYYJJJHH}.nc + +ncksopts='-4 --deflate 1' +echo +echo "compressing (${ncksopts})..." +ncks $ncksopts tsfc_fv3grid_${YYYYJJJHH}.nc tsfc_fv3grid_${YYYYJJJHH}2.nc +mv tsfc_fv3grid_${YYYYJJJHH}2.nc ${FVCOM_FILE}_${YYYYJJJHH}.nc + +exit diff --git a/scripts/exregional_process_bufr.sh b/scripts/exregional_process_bufr.sh new file mode 100755 index 000000000..72056fc35 --- /dev/null +++ b/scripts/exregional_process_bufr.sh @@ -0,0 +1,465 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs bufr (cloud, metar, lightning) preprocess +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "CYCLE_DIR" "WORKDIR" "comout") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + APRUN="mpiexec -n 1 -ppn 1" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +YYJJJHH=$(date +"%y%j%H" -d "${START_DATE}") +PREYYJJJHH=$(date +"%y%j%H" -d "${START_DATE} 1 hours ago") + +# +#----------------------------------------------------------------------- +# +# Get into working directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for BUFR obseration process ..." + +cd ${WORKDIR} + +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} + +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" + +# +#----------------------------------------------------------------------- +# +# link or copy background files +# +#----------------------------------------------------------------------- + +cp_vrfy ${fixgriddir}/fv3_grid_spec fv3sar_grid_spec.nc + +#----------------------------------------------------------------------- +# +# copy bufr table +# +#----------------------------------------------------------------------- +BUFR_TABLE=${FIX_GSI}/prepobs_prep_RAP.bufrtable +cp_vrfy $BUFR_TABLE prepobs_prep.bufrtable + +#----------------------------------------------------------------------- +# +# set observation soruce +# +#----------------------------------------------------------------------- +if [[ "${NET}" = "RTMA"* ]] && [[ "${RTMA_OBS_FEED}" = "NCO" ]]; then + SUBH=$(date +%M -d "${START_DATE}") + obs_source="rtma_ru" + obsfileprefix=${obs_source} + obspath_tmp=${OBSPATH}/${obs_source}.${YYYYMMDD} + +else + SUBH="" + obs_source=rap + if [[ ${HH} -eq '00' || ${HH} -eq '12' ]]; then + obs_source=rap_e + fi + + case $MACHINE in + + "WCOSS2") + + obsfileprefix=${obs_source} + obspath_tmp=${OBSPATH}/${obs_source}.${YYYYMMDD} + + if [ "${DO_RETRO}" = "TRUE" ]; then + obsfileprefix=${YYYYMMDDHH}.${obs_source} + obspath_tmp=${OBSPATH} + fi + + ;; + "JET" | "HERA" | "ORION") + + obsfileprefix=${YYYYMMDDHH}.${obs_source} + obspath_tmp=${OBSPATH} + + esac +fi + +# +#----------------------------------------------------------------------- +#----------------------------------------------------------------------- +# +# Link to the observation lightning bufr files +# +#----------------------------------------------------------------------- + +run_lightning=false +obs_file=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.lghtng.tm00.bufr_d +print_info_msg "$VERBOSE" "obsfile is $obs_file" +if [ -r "${obs_file}" ]; then + cp_vrfy "${obs_file}" "lghtngbufr" + run_lightning=true +else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" +fi + + +#----------------------------------------------------------------------- +# +# Build namelist and run executable for lightning +# +# analysis_time : process obs used for this analysis date (YYYYMMDDHH) +# minute : process obs used for this analysis minute (integer) +# trange_start : obs time window start (minutes before analysis time) +# trange_end : obs time window end (minutes after analysis time) +# bkversion : grid type (background will be used in the analysis) +# 0 for ARW (default) +# 1 for FV3LAM +#----------------------------------------------------------------------- + +cat << EOF > namelist.lightning + &setup + analysis_time = ${YYYYMMDDHH}, + minute=00, + trange_start=-10, + trange_end=10, + grid_type = "${PREDEF_GRID_NAME}", + obs_type = "bufr" + / + +EOF + +# +#----------------------------------------------------------------------- +# +# link/copy executable file to working directory +# +#----------------------------------------------------------------------- +# +exect="process_Lightning.exe" + +if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " +Copying the lightning process executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${WORKDIR}/${exect} +else + print_err_msg_exit "\ +The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" +Build lightning process and rerun." +fi +# +# +#----------------------------------------------------------------------- +# +# Run the process for lightning bufr file +# +#----------------------------------------------------------------------- +# +if [[ "$run_lightning" == true ]]; then + $APRUN ./${exect} > stdout_lightning_bufr 2>&1 || print_err_msg "\ + Call to executable to run lightning process returned with nonzero exit code." + cp stdout_lightning_bufr $comout/stdout.t${HH}z.lightning_bufr + cp LightningInFV3LAM.dat $comout/rrfs.t${HH}z.LightningInFV3LAM.bin +fi + +# +#----------------------------------------------------------------------- +#----------------------------------------------------------------------- +# +# Link to the observation NASA LaRC cloud bufr file +# +#----------------------------------------------------------------------- + +obs_file=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.lgycld.tm00.bufr_d +print_info_msg "$VERBOSE" "obsfile is $obs_file" +run_cloud=false +if [ -r "${obs_file}" ]; then + cp_vrfy "${obs_file}" "lgycld.bufr_d" + run_cloud=true +else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" +fi + +#----------------------------------------------------------------------- +# +# Build namelist and run executable for NASA LaRC cloud +# +# analysis_time : process obs used for this analysis date (YYYYMMDDHH) +# bufrfile : result BUFR file name +# npts_rad : number of grid point to build search box (integer) +# ioption : interpolation options +# = 1 is nearest neighrhood +# = 2 is median of cloudy fov +# bkversion : grid type (background will be used in the analysis) +# = 0 for ARW (default) +# = 1 for FV3LAM +#----------------------------------------------------------------------- + +if [ ${PREDEF_GRID_NAME} == "GSD_RAP13km" ] || [ ${PREDEF_GRID_NAME} == "RRFS_CONUS_13km" ] ; then + npts_rad_number=1 + metar_impact_radius_number=9 +else + npts_rad_number=3 + metar_impact_radius_number=15 +fi + +cat << EOF > namelist.nasalarc + &setup + analysis_time = ${YYYYMMDDHH}, + bufrfile='NASALaRCCloudInGSI_bufr.bufr', + npts_rad=$npts_rad_number, + ioption = 2, + grid_type = "${PREDEF_GRID_NAME}", + / +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# +exect="process_larccld.exe" + +if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " +Copying the NASA LaRC cloud process executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${WORKDIR}/${exect} +else + print_err_msg_exit "\ +The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" +Build lightning process and rerun." +fi +# +# +#----------------------------------------------------------------------- +# +# Run the process for NASA LaRc cloud bufr file +# +#----------------------------------------------------------------------- +# +if [[ "$run_cloud" == true ]]; then + $APRUN ./${exect} > stdout_nasalarc 2>&1 || print_err_msg "\ + Call to executable to run NASA LaRC Cloud process returned with nonzero exit code." + cp stdout_nasalarc $comout/stdout.t${HH}z.nasalarc + cp NASALaRC_cloud4fv3.bin $comout/rrfs.t${HH}z.NASALaRC_cloud4fv3.bin +fi + +# +#----------------------------------------------------------------------- +#----------------------------------------------------------------------- +# +# Link to the observation prepbufr bufr file for METAR cloud +# +#----------------------------------------------------------------------- + +obs_file=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.prepbufr.tm00 +print_info_msg "$VERBOSE" "obsfile is $obs_file" +run_metar=false +if [ -r "${obs_file}" ]; then + cp_vrfy "${obs_file}" "prepbufr" + run_metar=true +else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" +fi + +#----------------------------------------------------------------------- +# +# Build namelist for METAR cloud +# +# analysis_time : process obs used for this analysis date (YYYYMMDDHH) +# analysis_minute : process obs used for this analysis minute (integer) +# prepbufrfile : input prepbufr file name +# twindin : observation time window (real: hours before and after analysis time) +# +#----------------------------------------------------------------------- + +cat << EOF > namelist.metarcld + &setup + analysis_time = ${YYYYMMDDHH}, + prepbufrfile='prepbufr', + twindin=0.5, + metar_impact_radius=$metar_impact_radius_number, + grid_type = "${PREDEF_GRID_NAME}", + / +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# +exect="process_metarcld.exe" + +if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " +Copying the METAR cloud process executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${WORKDIR}/${exect} +else + print_err_msg_exit "\ +The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" +Build lightning process and rerun." +fi +# +# +#----------------------------------------------------------------------- +# +# Run the process for METAR cloud bufr file +# +#----------------------------------------------------------------------- +# +if [[ "$run_metar" == true ]]; then + $APRUN ./${exect} > stdout_metarcld 2>&1 || print_err_msg "\ + Call to executable to run METAR cloud process returned with nonzero exit code." + cp stdout_metarcld $comout/stdout.t${HH}z.metarcld + cp fv3_metarcloud.bin $comout/rrfs.t${HH}z.fv3_metarcloud.bin +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +BUFR PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_process_lightning.sh b/scripts/exregional_process_lightning.sh new file mode 100755 index 000000000..b50c79d2a --- /dev/null +++ b/scripts/exregional_process_lightning.sh @@ -0,0 +1,279 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs lightning preprocess +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "CYCLE_DIR" "WORKDIR" "comout") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + APRUN="mpiexec -n 1 -ppn 1" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n 1" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +YYJJJHH=$(date +"%y%j%H" -d "${START_DATE}") +PREYYJJJHH=$(date +"%y%j%H" -d "${START_DATE} 1 hours ago") + +# +#----------------------------------------------------------------------- +# +# Get into working directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for lightning process ..." + +cd ${WORKDIR} + +fixdir=$FIX_GSI +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} + +print_info_msg "$VERBOSE" "fixdir is $fixdir" +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" + +# +#----------------------------------------------------------------------- +# +# link or copy background and grid files +# +#----------------------------------------------------------------------- + +cp_vrfy ${fixgriddir}/fv3_grid_spec fv3sar_grid_spec.nc + +#----------------------------------------------------------------------- +# +# Link to the NLDN data +# +#----------------------------------------------------------------------- +run_lightning=false +filenum=0 +LIGHTNING_FILE=${LIGHTNING_ROOT}/vaisala/netcdf +for n in 00 05 ; do + filename=${LIGHTNING_FILE}/${YYJJJHH}${n}0005r + if [ -r ${filename} ]; then + ((filenum += 1 )) + ln -sf ${filename} ./NLDN_lightning_${filenum} + else + echo " ${filename} does not exist" + fi +done +for n in 55 50 45 40 35 ; do + filename=${LIGHTNING_FILE}/${PREYYJJJHH}${n}0005r + if [ -r ${filename} ]; then + ((filenum += 1 )) + ln -sf ${filename} ./NLDN_lightning_${filenum} + run_lightning=true + else + echo " ${filename} does not exist" + fi +done + +echo "found GLD360 files: ${filenum}" + +#----------------------------------------------------------------------- +# +# copy bufr table from fix directory +# +#----------------------------------------------------------------------- +BUFR_TABLE=${fixdir}/prepobs_prep_RAP.bufrtable + +cp_vrfy $BUFR_TABLE prepobs_prep.bufrtable + +#----------------------------------------------------------------------- +# +# Build namelist and run executable +# +# analysis_time : process obs used for this analysis date (YYYYMMDDHH) +# NLDN_filenum : number of NLDN lighting observation files +# IfAlaska : logic to decide if to process Alaska lightning obs +# bkversion : grid type (background will be used in the analysis) +# = 0 for ARW (default) +# = 1 for FV3LAM +#----------------------------------------------------------------------- + +cat << EOF > namelist.lightning + &setup + analysis_time = ${YYYYMMDDHH}, + NLDN_filenum = ${filenum}, + grid_type = "${PREDEF_GRID_NAME}", + obs_type = "nldn_nc" + / + +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# +exect="process_Lightning.exe" + +if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " +Copying the lightning process executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${WORKDIR} +else + print_err_msg_exit "\ +The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" +Build lightning process and rerun." +fi +# +# +#----------------------------------------------------------------------- +# +# Run the process +# +#----------------------------------------------------------------------- +# + +if [[ "$run_lightning" == true ]]; then + $APRUN ./${exect} < namelist.lightning > stdout 2>&1 || print_err_msg "\ + Call to executable to run lightning (nc) process returned with nonzero exit code." + cp stdout $comout/stdout.t${HH}z.lightning + cp LightningInFV3LAM.dat ${comin}/rrfs.t${HH}z.LightningInFV3LAM_NLDN.bin +fi +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +LIGHTNING PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_process_radarref.sh b/scripts/exregional_process_radarref.sh new file mode 100755 index 000000000..099f69e3d --- /dev/null +++ b/scripts/exregional_process_radarref.sh @@ -0,0 +1,408 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs radar reflectivity preprocess +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "CYCLE_DIR" "cycle_type" "gridspec_dir" "WORKDIR" "RADAR_REF_THINNING" "comout") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + ncores=$(( NNODES_PROC_RADAR*PPN_PROC_RADAR)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_PROC_RADAR}" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n 36" + ;; +# +esac + +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +# +#----------------------------------------------------------------------- +# +# Find cycle type: cold or warm +# BKTYPE=0: warm start +# BKTYPE=1: cold start +# +#----------------------------------------------------------------------- +# +BKTYPE=0 +if [ ${DO_SPINUP} == "TRUE" ]; then + if [ ${cycle_type} == "spinup" ]; then + for cyc_start in "${CYCL_HRS_SPINSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + BKTYPE=1 + fi + done + fi +else + for cyc_start in "${CYCL_HRS_PRODSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + BKTYPE=1 + fi + done +fi + +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +# +#----------------------------------------------------------------------- +# +# Loop through different time levels +# Get into working directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for radar reflectivity process ..." + +for bigmin in ${RADARREFL_TIMELEVEL[@]}; do + bigmin=$( printf %2.2i $bigmin ) + mkdir_vrfy ${WORKDIR}/${bigmin} + cd ${WORKDIR}/${bigmin} + + fixdir=$FIX_GSI/ + fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} + + print_info_msg "$VERBOSE" "fixdir is $fixdir" + print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" + +# +#----------------------------------------------------------------------- +# +# link or copy background files +# +#----------------------------------------------------------------------- + + if [ ${BKTYPE} -eq 1 ]; then + cp_vrfy ${fixgriddir}/fv3_grid_spec fv3sar_grid_spec.nc + else + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy ${fixgriddir}/fv3_grid_spec fv3sar_grid_spec.nc + else + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + cp_vrfy ${gridspec_dir}/fv3_grid_spec.${iii} fv3sar_grid_spec.nc.${iii} + done + fi + fi + +# +#----------------------------------------------------------------------- +# +# link/copy observation files to working directory +# +#----------------------------------------------------------------------- + + +case $MACHINE in + +"WCOSS2") + + obs_appendix=grib2.gz + ;; +"JET" | "HERA" | "ORION") + + obs_appendix=grib2 +esac + + NSSL=${OBSPATH_NSSLMOSIAC} + + mrms="MergedReflectivityQC" + +# Link to the MRMS operational data + echo "bigmin = ${bigmin}" + echo "RADARREFL_MINS = ${RADARREFL_MINS[@]}" + +# Link to the MRMS operational data + for min in ${RADARREFL_MINS[@]} + do + min=$( printf %2.2i $((bigmin+min)) ) + echo "Looking for data valid:"${YYYY}"-"${MM}"-"${DD}" "${HH}":"${min} + s=0 + while [[ $s -le 59 ]]; do + ss=$(printf %2.2i ${s}) + nsslfile=${NSSL}/*${mrms}_00.50_${YYYY}${MM}${DD}-${HH}${min}${ss}.${obs_appendix} + if [ -s $nsslfile ]; then + echo 'Found '${nsslfile} + nsslfile1=*${mrms}_*_${YYYY}${MM}${DD}-${HH}${min}*.${obs_appendix} + numgrib2=$(ls ${NSSL}/${nsslfile1} | wc -l) + echo 'Number of GRIB-2 files: '${numgrib2} + if [ ${numgrib2} -ge 10 ] && [ ! -e filelist_mrms ]; then + cp ${NSSL}/${nsslfile1} . + ls ${nsslfile1} > filelist_mrms + echo 'Creating links for ${YYYY}${MM}${DD}-${HH}${min}' + fi + fi + ((s+=1)) + done + done + +# remove filelist_mrms if zero bytes + if [ ! -s filelist_mrms ]; then + rm -f filelist_mrms + fi + + if [ -s filelist_mrms ]; then + + if [ ${obs_appendix} == "grib2.gz" ]; then + gzip -d *.gz + mv filelist_mrms filelist_mrms_org + ls MergedReflectivityQC_*_${YYYY}${MM}${DD}-${HH}????.grib2 > filelist_mrms + fi + + numgrib2=$(more filelist_mrms | wc -l) + print_info_msg "$VERBOSE" "Using radar data from: `head -1 filelist_mrms | cut -c10-15`" + print_info_msg "$VERBOSE" "NSSL grib2 file levels = $numgrib2" + else + echo "WARNING: Not enough radar reflectivity files available for loop ${bigmin}." + continue + fi + + +#----------------------------------------------------------------------- +# +# copy bufr table from fix directory +# +#----------------------------------------------------------------------- + BUFR_TABLE=${fixdir}/prepobs_prep_RAP.bufrtable + + cp_vrfy $BUFR_TABLE prepobs_prep.bufrtable + +#----------------------------------------------------------------------- +# +# Build namelist and run executable +# +# tversion : data source version +# = 1 NSSL 1 tile grib2 for single level +# = 4 NSSL 4 tiles binary +# = 8 NSSL 8 tiles netcdf +# fv3_io_layout_y : subdomain of restart files +# analysis_time : process obs used for this analysis date (YYYYMMDDHH) +# dataPath : path of the radar reflectivity mosaic files. +# +#----------------------------------------------------------------------- + +if [ ${BKTYPE} -eq 1 ]; then + n_iolayouty=1 +else + n_iolayouty=$(($IO_LAYOUT_Y)) +fi + +cat << EOF > namelist.mosaic + &setup + tversion=1, + analysis_time = ${YYYYMMDDHH}, + dataPath = './', + fv3_io_layout_y=${n_iolayouty}, + / +EOF + +if [ ${RADAR_REF_THINNING} -eq 2 ]; then + # heavy data thinning, typically used for EnKF + precipdbzhorizskip=1 + precipdbzvertskip=2 + clearairdbzhorizskip=5 + clearairdbzvertskip=-1 +else + if [ ${RADAR_REF_THINNING} -eq 1 ]; then + # light data thinning, typically used for hybrid EnVar + precipdbzhorizskip=0 + precipdbzvertskip=0 + clearairdbzhorizskip=1 + clearairdbzvertskip=1 + else + # no data thinning + precipdbzhorizskip=0 + precipdbzvertskip=0 + clearairdbzhorizskip=0 + clearairdbzvertskip=0 + fi +fi + +cat << EOF > namelist.mosaic_netcdf + &setup_netcdf + output_netcdf = .true., + max_height = 11001.0, + use_clear_air_type = .true., + precip_dbz_thresh = 10.0, + clear_air_dbz_thresh = 5.0, + clear_air_dbz_value = 0.0, + precip_dbz_horiz_skip = ${precipdbzhorizskip}, + precip_dbz_vert_skip = ${precipdbzvertskip}, + clear_air_dbz_horiz_skip = ${clearairdbzhorizskip}, + clear_air_dbz_vert_skip = ${clearairdbzvertskip}, + / +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# + exect="process_NSSL_mosaic.exe" + + if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " + Copying the radar process executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} . + else + print_err_msg_exit "\ + The executable specified in GSI_exect does not exist: + exect = \"${EXECDIR}/$exect\" + Build radar process and rerun." + fi +# +# +#----------------------------------------------------------------------- +# +# Run the process. +# +#----------------------------------------------------------------------- +# + $APRUN ./${exect} > stdout 2>&1 || print_info_msg "\ + Call to executable to run radar refl process returned with nonzero exit code." + cp stdout $comout/stdout.t${HH}z.NSSL_mosaic.${bigmin} + cp RefInGSI3D.dat $comout/rrfs.t${HH}z.RefInGSI3D.bin.${bigmin} +done # done with the bigmin for-loop +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +RADAR REFL PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_refl2tten.sh b/scripts/exregional_refl2tten.sh new file mode 100755 index 000000000..e99e0734c --- /dev/null +++ b/scripts/exregional_refl2tten.sh @@ -0,0 +1,333 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that generates radar reflectivity tten +with FV3 for the specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "gridspec_dir" "mem_type" "workdir" "comout" "comin" "slash_ensmem_subdir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") + ulimit -s unlimited + ulimit -a + ncores=$(( NNODES_RUN_REF2TTEN*PPN_RUN_NONVARCLDANL)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_NONVARCLDANL}" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n 1" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +set -x +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +# +#----------------------------------------------------------------------- +# +# Get into working directory and define fix directory +# +#----------------------------------------------------------------------- +# +print_info_msg "$VERBOSE" " +Getting into working directory for radar tten process ..." + +cd_vrfy ${workdir} + +fixdir=$FIX_GSI +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} + +print_info_msg "$VERBOSE" "fixdir is $fixdir" +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" +pwd + +# +#----------------------------------------------------------------------- +# +# link or copy background and grid configuration files +# +#----------------------------------------------------------------------- + +if [ ${cycle_type} == "spinup" ]; then + cycle_tag="_spinup" +else + cycle_tag="" +fi +if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam${cycle_tag}/INPUT +else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam${cycle_tag}/INPUT +fi + +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +cp_vrfy ${fixgriddir}/fv3_akbk fv3_akbk +cp_vrfy ${fixgriddir}/fv3_grid_spec fv3_grid_spec + +if [ -r "${bkpath}/coupler.res" ]; then # Use background from warm restart + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -s ${bkpath}/fv_core.res.tile1.nc fv3_dynvars + ln_vrfy -s ${bkpath}/fv_tracer.res.tile1.nc fv3_tracer + ln_vrfy -s ${bkpath}/sfc_data.nc fv3_sfcdata + ln_vrfy -s ${bkpath}/phy_data.nc fv3_phydata + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -s ${bkpath}/fv_core.res.tile1.nc.${iii} fv3_dynvars.${iii} + ln_vrfy -s ${bkpath}/fv_tracer.res.tile1.nc.${iii} fv3_tracer.${iii} + ln_vrfy -s ${bkpath}/sfc_data.nc.${iii} fv3_sfcdata.${iii} + ln_vrfy -s ${bkpath}/phy_data.nc.${iii} fv3_phydata.${iii} + ln_vrfy -s ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec.${iii} + done + fi + BKTYPE=0 +else # Use background from cold start + ln_vrfy -s ${bkpath}/sfc_data.tile7.halo0.nc fv3_sfcdata + ln_vrfy -s ${bkpath}/gfs_data.tile7.halo0.nc fv3_dynvars + ln_vrfy -s ${bkpath}/gfs_data.tile7.halo0.nc fv3_tracer + print_info_msg "$VERBOSE" "radar2tten is not ready for cold start" + BKTYPE=1 + exit 0 +fi + +# +#----------------------------------------------------------------------- +# +# link/copy observation files to working directory +# +#----------------------------------------------------------------------- + +ss=0 +for bigmin in ${RADARREFL_TIMELEVEL[@]}; do + bigmin=$( printf %2.2i $bigmin ) + obs_file=${comin}/rrfs.t${HH}z.RefInGSI3D.bin.${bigmin} + if [ "${IO_LAYOUT_Y}" == "1" ]; then + obs_file_check=${obs_file} + else + obs_file_check=${obs_file}.0000 + fi + ((ss+=1)) + num=$( printf %2.2i ${ss} ) + if [ -r "${obs_file_check}" ]; then + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy "${obs_file}" "RefInGSI3D.dat_${num}" + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy "${obs_file}.${iii}" "RefInGSI3D.dat.${iii}_${num}" + done + fi + else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" + fi +done + +obs_file=${comin}/rrfs.t${HH}z.LightningInFV3LAM.bin +if [ -r "${obs_file}" ]; then + cp_vrfy "${obs_file}" "LightningInGSI.dat_01" +else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" +fi + + +#----------------------------------------------------------------------- +# +# Create links to BUFR table, which needed for generate the BUFR file +# +#----------------------------------------------------------------------- +bufr_table=${fixdir}/prepobs_prep_RAP.bufrtable + +# Fixed fields +cp_vrfy $bufr_table prepobs_prep.bufrtable + + +#----------------------------------------------------------------------- +# +# Build namelist and run executable +# +# fv3_io_layout_y : subdomain of restart files +# +#----------------------------------------------------------------------- + +if [ ${BKTYPE} -eq 1 ]; then + n_iolayouty=1 +else + n_iolayouty=$(($IO_LAYOUT_Y)) +fi + +cat << EOF > namelist.ref2tten + &setup + dfi_radar_latent_heat_time_period=15.0, + convection_refl_threshold=28.0, + l_tten_for_convection_only=.true., + l_convection_suppress=.false., + fv3_io_layout_y=${n_iolayouty}, + timelevel=${ss}, + / +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the executable to the run directory. +# +#----------------------------------------------------------------------- +# + +exect="${EXECDIR}/ref2tten.exe" + +if [ -f ${exect} ]; then + print_info_msg "$VERBOSE" " +Copying the radar refl tten executable to the run directory..." + cp_vrfy ${exect} ${workdir}/ref2ttenfv3lam.exe +else + print_err_msg_exit "\ +The radar refl tten executable specified in exect does not exist: + exect = \"$exect\" +Build radar refl tten and rerun." +fi +# +# +# +#----------------------------------------------------------------------- +# +# Run the radar to tten application. +# +#----------------------------------------------------------------------- +# +$APRUN ./ref2ttenfv3lam.exe > stdout 2>&1 || print_err_msg_exit "\ +Call to executable to run radar refl tten returned with nonzero exit code." +cp stdout ${comout}/stdout.t${HH}z.ref2ttenfv3lam +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +RADAR REFL TTEN PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_analysis.sh b/scripts/exregional_run_analysis.sh new file mode 100755 index 000000000..dcd17c2ed --- /dev/null +++ b/scripts/exregional_run_analysis.sh @@ -0,0 +1,1194 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "gsi_type" "mem_type" "analworkdir" \ + "observer_nwges_dir" "slash_ensmem_subdir" "comout" \ + "rrfse_fg_root" "satbias_dir" "ob_type" "gridspec_dir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=500M + export OMP_NUM_THREADS=${TPP_RUN_ANAL} + ncores=$(( NNODES_RUN_ANAL*PPN_RUN_ANAL)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_ANAL} --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + export OMP_NUM_THREADS=2 + export OMP_STACKSIZE=1024M + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +# +# YYYY-MM-DD_meso_uselist.txt and YYYYMMDD_rejects.txt: +# both contain past 7 day OmB averages till ~YYYYMMDD_23:59:59 UTC +# So they are to be used by next day cycles +MESO_USELIST_FN=$(date +%Y-%m-%d -d "${START_DATE} -1 day")_meso_uselist.txt +AIR_REJECT_FN=$(date +%Y%m%d -d "${START_DATE} -1 day")_rejects.txt +# +#----------------------------------------------------------------------- +# +# go to working directory. +# define fix and background path +# +#----------------------------------------------------------------------- + +cd_vrfy ${analworkdir} + +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} +if [ ${cycle_type} == "spinup" ]; then + if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam_spinup/INPUT + else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam_spinup/INPUT + fi +else + if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam/INPUT + else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam/INPUT + fi +fi +# decide background type +if [ -r "${bkpath}/coupler.res" ]; then + BKTYPE=0 # warm start +else + BKTYPE=1 # cold start + regional_ensemble_option=1 +fi + +if [ ${ob_type} != "conv" ] || [ ${BKTYPE} -eq 1 ]; then #not using GDAS + l_both_fv3sar_gfs_ens=.false. +fi + +#--------------------------------------------------------------------- +# +# decide regional_ensemble_option: global ensemble (1) or FV3LAM ensemble (5) +# +#--------------------------------------------------------------------- +# +echo "regional_ensemble_option is ",${regional_ensemble_option:-1} + +print_info_msg "$VERBOSE" "FIX_GSI is $FIX_GSI" +print_info_msg "$VERBOSE" "fixgriddir is $fixgriddir" +print_info_msg "$VERBOSE" "default bkpath is $bkpath" +print_info_msg "$VERBOSE" "background type is $BKTYPE" + +# +# Check if we have enough FV3-LAM ensembles when regional_ensemble_option=5 +# +if [[ ${regional_ensemble_option:-1} -eq 5 ]]; then + ens_nstarthr=$( printf "%02d" ${DA_CYCLE_INTERV} ) + imem=1 + ifound=0 + for hrs in ${CYCL_HRS_HYB_FV3LAM_ENS[@]}; do + if [ $HH == ${hrs} ]; then + + while [[ $imem -le ${NUM_ENS_MEMBERS} ]];do + memcharv0=$( printf "%03d" $imem ) + memchar=mem$( printf "%04d" $imem ) + + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${DA_CYCLE_INTERV} hours ago" ) + restart_prefix="${YYYYMMDD}.${HH}0000." + slash_ensmem_subdir=$memchar + bkpathmem=${rrfse_fg_root}/${YYYYMMDDHHmInterv}/${slash_ensmem_subdir}/fcst_fv3lam/RESTART + if [ ${DO_SPINUP} == "TRUE" ]; then + for cycl_hrs in ${CYCL_HRS_PRODSTART_ENS[@]}; do + if [ $HH == ${cycl_hrs} ]; then + bkpathmem=${rrfse_fg_root}/${YYYYMMDDHHmInterv}/${slash_ensmem_subdir}/fcst_fv3lam_spinup/RESTART + fi + done + fi + dynvarfile=${bkpathmem}/${restart_prefix}fv_core.res.tile1.nc + tracerfile=${bkpathmem}/${restart_prefix}fv_tracer.res.tile1.nc + phyvarfile=${bkpathmem}/${restart_prefix}phy_data.nc + if [ -r "${dynvarfile}" ] && [ -r "${tracerfile}" ] && [ -r "${phyvarfile}" ] ; then + ln_vrfy -snf ${bkpathmem}/${restart_prefix}fv_core.res.tile1.nc fv3SAR${ens_nstarthr}_ens_mem${memcharv0}-fv3_dynvars + ln_vrfy -snf ${bkpathmem}/${restart_prefix}fv_tracer.res.tile1.nc fv3SAR${ens_nstarthr}_ens_mem${memcharv0}-fv3_tracer + ln_vrfy -snf ${bkpathmem}/${restart_prefix}phy_data.nc fv3SAR${ens_nstarthr}_ens_mem${memcharv0}-fv3_phyvars + (( ifound += 1 )) + else + print_info_msg "Error: cannot find ensemble files: ${dynvarfile} ${tracerfile} ${phyvarfile} " + fi + (( imem += 1 )) + done + + fi + done + + if [[ $ifound -ne ${NUM_ENS_MEMBERS} ]] || [[ ${BKTYPE} -eq 1 ]]; then + print_info_msg "Not enough FV3_LAM ensembles, will fall to GDAS" + regional_ensemble_option=1 + l_both_fv3sar_gfs_ens=.false. + fi +fi +# +if [[ ${regional_ensemble_option:-1} -eq 1 || ${l_both_fv3sar_gfs_ens} = ".true." ]]; then #using GDAS + #----------------------------------------------------------------------- + # Make a list of the latest GFS EnKF ensemble + #----------------------------------------------------------------------- + stampcycle=$(date -d "${START_DATE}" +%s) + minHourDiff=100 + loops="009" # or 009s for GFSv15 + ftype="nc" # or nemsio for GFSv15 + foundgdasens="false" + cat "no ens found" >> filelist03 + + case $MACHINE in + + "WCOSS2") + + for loop in $loops; do + for timelist in $(ls ${ENKF_FCST}/enkfgdas.*/*/atmos/mem080/gdas*.atmf${loop}.${ftype}); do + availtimeyyyymmdd=$(echo ${timelist} | cut -d'/' -f9 | cut -c 10-17) + availtimehh=$(echo ${timelist} | cut -d'/' -f10) + availtime=${availtimeyyyymmdd}${availtimehh} + avail_time=$(echo "${availtime}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + avail_time=$(date -d "${avail_time}") + + loopfcst=$(echo ${loop}| cut -c 1-3) # for nemsio 009s to get 009 + stamp_avail=$(date -d "${avail_time} ${loopfcst} hours" +%s) + + hourDiff=$(echo "($stampcycle - $stamp_avail) / (60 * 60 )" | bc); + if [[ ${stampcycle} -lt ${stamp_avail} ]]; then + hourDiff=$(echo "($stamp_avail - $stampcycle) / (60 * 60 )" | bc); + fi + + if [[ ${hourDiff} -lt ${minHourDiff} ]]; then + minHourDiff=${hourDiff} + enkfcstname=gdas.t${availtimehh}z.atmf${loop} + eyyyymmdd=$(echo ${availtime} | cut -c1-8) + ehh=$(echo ${availtime} | cut -c9-10) + foundgdasens="true" + fi + done + done + + if [ ${foundgdasens} = "true" ] + then + ls ${ENKF_FCST}/enkfgdas.${eyyyymmdd}/${ehh}/atmos/mem???/${enkfcstname}.nc > filelist03 + fi + + ;; + "JET" | "HERA" | "ORION" ) + + for loop in $loops; do + for timelist in $(ls ${ENKF_FCST}/*.gdas.t*z.atmf${loop}.mem080.${ftype}); do + availtimeyy=$(basename ${timelist} | cut -c 1-2) + availtimeyyyy=20${availtimeyy} + availtimejjj=$(basename ${timelist} | cut -c 3-5) + availtimemm=$(date -d "${availtimeyyyy}0101 +$(( 10#${availtimejjj} - 1 )) days" +%m) + availtimedd=$(date -d "${availtimeyyyy}0101 +$(( 10#${availtimejjj} - 1 )) days" +%d) + availtimehh=$(basename ${timelist} | cut -c 6-7) + availtime=${availtimeyyyy}${availtimemm}${availtimedd}${availtimehh} + avail_time=$(echo "${availtime}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + avail_time=$(date -d "${avail_time}") + + loopfcst=$(echo ${loop}| cut -c 1-3) # for nemsio 009s to get 009 + stamp_avail=$(date -d "${avail_time} ${loopfcst} hours" +%s) + + hourDiff=$(echo "($stampcycle - $stamp_avail) / (60 * 60 )" | bc); + if [[ ${stampcycle} -lt ${stamp_avail} ]]; then + hourDiff=$(echo "($stamp_avail - $stampcycle) / (60 * 60 )" | bc); + fi + + if [[ ${hourDiff} -lt ${minHourDiff} ]]; then + minHourDiff=${hourDiff} + enkfcstname=${availtimeyy}${availtimejjj}${availtimehh}00.gdas.t${availtimehh}z.atmf${loop} + foundgdasens="true" + fi + done + done + + if [ $foundgdasens = "true" ]; then + ls ${ENKF_FCST}/${enkfcstname}.mem0??.${ftype} >> filelist03 + fi + + esac +fi + +# +#----------------------------------------------------------------------- +# +# set default values for namelist +# +#----------------------------------------------------------------------- + +ifsatbufr=.false. +ifsoilnudge=.false. +ifhyb=.false. +miter=2 +niter1=50 +niter2=50 +lread_obs_save=.false. +lread_obs_skip=.false. +if_model_dbz=.false. +nummem_gfs=0 +nummem_fv3sar=0 +anav_type=${ob_type} +i_use_2mQ4B=2 +i_use_2mT4B=1 + +# Determine if hybrid option is available +memname='atmf009' + +if [ ${regional_ensemble_option:-1} -eq 5 ] && [ ${BKTYPE} != 1 ]; then + if [ ${l_both_fv3sar_gfs_ens} = ".true." ]; then + nummem_gfs=$(more filelist03 | wc -l) + nummem_gfs=$((nummem_gfs - 3 )) + fi + nummem_fv3sar=$NUM_ENS_MEMBERS + nummem=`expr ${nummem_gfs} + ${nummem_fv3sar}` + print_info_msg "$VERBOSE" "Do hybrid with FV3LAM ensemble" + ifhyb=.true. + print_info_msg "$VERBOSE" " Cycle ${YYYYMMDDHH}: GSI hybrid uses FV3LAM ensemble with n_ens=${nummem}" + echo " ${YYYYMMDDHH}(${cycle_type}): GSI hybrid uses FV3LAM ensemble with n_ens=${nummem}" >> ${EXPTDIR}/log.cycles + grid_ratio_ens="1" + ens_fast_read=.false. +else + nummem_gfs=$(more filelist03 | wc -l) + nummem_gfs=$((nummem_gfs - 3 )) + nummem=${nummem_gfs} + if [[ ${nummem} -ge ${HYBENSMEM_NMIN} ]]; then + print_info_msg "$VERBOSE" "Do hybrid with ${memname}" + ifhyb=.true. + print_info_msg "$VERBOSE" " Cycle ${YYYYMMDDHH}: GSI hybrid uses ${memname} with n_ens=${nummem}" + echo " ${YYYYMMDDHH}(${cycle_type}): GSI hybrid uses ${memname} with n_ens=${nummem}" >> ${EXPTDIR}/log.cycles + else + print_info_msg "$VERBOSE" " Cycle ${YYYYMMDDHH}: GSI does pure 3DVAR." + print_info_msg "$VERBOSE" " Hybrid needs at least ${HYBENSMEM_NMIN} ${memname} ensembles, only ${nummem} available" + echo " ${YYYYMMDDHH}(${cycle_type}): GSI dose pure 3DVAR" >> ${EXPTDIR}/log.cycles + fi + if [[ ${anav_type} == "conv_dbz" ]]; then + anav_type="conv" + fi +fi + +# +#----------------------------------------------------------------------- +# +# link or copy background and grib configuration files +# +# Using ncks to add phis (terrain) into cold start input background. +# it is better to change GSI to use the terrain from fix file. +# Adding radar_tten array to fv3_tracer. Should remove this after add this array in +# radar_tten converting code. +#----------------------------------------------------------------------- + +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +ln_vrfy -snf ${fixgriddir}/fv3_akbk fv3_akbk +ln_vrfy -snf ${fixgriddir}/fv3_grid_spec fv3_grid_spec + +if [ ${BKTYPE} -eq 1 ]; then # cold start uses background from INPUT + ln_vrfy -snf ${fixgriddir}/phis.nc phis.nc + ncks -A -v phis phis.nc ${bkpath}/gfs_data.tile7.halo0.nc + + ln_vrfy -snf ${bkpath}/sfc_data.tile7.halo0.nc fv3_sfcdata + ln_vrfy -snf ${bkpath}/gfs_data.tile7.halo0.nc fv3_dynvars + ln_vrfy -s fv3_dynvars fv3_tracer + + fv3lam_bg_type=1 +else # cycle uses background from restart + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -snf ${bkpath}/fv_core.res.tile1.nc fv3_dynvars + ln_vrfy -snf ${bkpath}/fv_tracer.res.tile1.nc fv3_tracer + ln_vrfy -snf ${bkpath}/sfc_data.nc fv3_sfcdata + ln_vrfy -snf ${bkpath}/phy_data.nc fv3_phyvars + else + for ii in ${list_iolayout} + do + iii=`printf %4.4i $ii` + ln_vrfy -snf ${bkpath}/fv_core.res.tile1.nc.${iii} fv3_dynvars.${iii} + ln_vrfy -snf ${bkpath}/fv_tracer.res.tile1.nc.${iii} fv3_tracer.${iii} + ln_vrfy -snf ${bkpath}/sfc_data.nc.${iii} fv3_sfcdata.${iii} + ln_vrfy -snf ${bkpath}/phy_data.nc.${iii} fv3_phyvars.${iii} + ln_vrfy -snf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec.${iii} + done + fi + fv3lam_bg_type=0 +fi + +# update times in coupler.res to current cycle time +cp_vrfy ${fixgriddir}/fv3_coupler.res coupler.res +sed -i "s/yyyy/${YYYY}/" coupler.res +sed -i "s/mm/${MM}/" coupler.res +sed -i "s/dd/${DD}/" coupler.res +sed -i "s/hh/${HH}/" coupler.res + +# +#----------------------------------------------------------------------- +# +# link observation files +# copy observation files to working directory +# +#----------------------------------------------------------------------- +if [[ "${NET}" = "RTMA"* ]] && [[ "${RTMA_OBS_FEED}" = "NCO" ]]; then + SUBH=$(date +%M -d "${START_DATE}") + obs_source="rtma_ru" + obsfileprefix=${obs_source} + obspath_tmp=${OBSPATH}/${obs_source}.${YYYYMMDD} + +else + SUBH="" + obs_source=rap + if [ ${HH} -eq '00' ] || [ ${HH} -eq '12' ]; then + obs_source=rap_e + fi + + case $MACHINE in + + "WCOSS2") + obsfileprefix=${obs_source} + obspath_tmp=${OBSPATH}/${obs_source}.${YYYYMMDD} + if [ "${DO_RETRO}" = "TRUE" ]; then + obsfileprefix=${YYYYMMDDHH}.${obs_source} + obspath_tmp=${OBSPATH} + fi + ;; + "JET" | "HERA") + obsfileprefix=${YYYYMMDDHH}.${obs_source} + obspath_tmp=${OBSPATH} + ;; + "ORION" ) + obs_source=rap + obsfileprefix=${YYYYMMDDHH}.${obs_source} # rap observation from JET. + #obsfileprefix=${obs_source}.${YYYYMMDD}/${obs_source} # observation from operation. + obspath_tmp=${OBSPATH} + ;; + *) + obsfileprefix=${obs_source} + obspath_tmp=${OBSPATH} + esac +fi + +if [[ ${gsi_type} == "OBSERVER" || ${anav_type} == "conv" || ${anav_type} == "conv_dbz" ]]; then + + obs_files_source[0]=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.prepbufr.tm00 + obs_files_target[0]=prepbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.satwnd.tm00.bufr_d + obs_files_target[${obs_number}]=satwndbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}${SUBH}z.nexrad.tm00.bufr_d + obs_files_target[${obs_number}]=l2rwbufr + + if [ ${anav_type} == "conv_dbz" ]; then + obs_number=${#obs_files_source[@]} + if [ ${cycle_type} == "spinup" ]; then + obs_files_source[${obs_number}]=${cycle_dir}/process_radarref_spinup/00/Gridded_ref.nc + else + obs_files_source[${obs_number}]=${cycle_dir}/process_radarref/00/Gridded_ref.nc + fi + obs_files_target[${obs_number}]=dbzobs.nc + fi + + if [ ${DO_ENKF_RADAR_REF} == "TRUE" ]; then + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${cycle_dir}/process_radarref_enkf/00/Gridded_ref.nc + obs_files_target[${obs_number}]=dbzobs.nc + fi + +else + + if [ ${anav_type} == "radardbz" ]; then + + if [ ${cycle_type} == "spinup" ]; then + obs_files_source[0]=${cycle_dir}/process_radarref_spinup/00/Gridded_ref.nc + else + obs_files_source[0]=${cycle_dir}/process_radarref/00/Gridded_ref.nc + fi + obs_files_target[0]=dbzobs.nc + + fi + + + if [ ${anav_type} == "AERO" ]; then + obs_files_source[0]=${OBSPATH_PM}/${YYYYMMDD}/pm25.airnow.${YYYYMMDD}${HH}.bufr + obs_files_target[0]=pm25bufr + fi + +fi + +# +#----------------------------------------------------------------------- +# +# including satellite radiance data +# +#----------------------------------------------------------------------- +if [[ ${gsi_type} == "OBSERVER" || ${anav_type} == "conv" || ${anav_type} == "conv_dbz" ]]; then +if [ ${DO_RADDA} == "TRUE" ]; then + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.1bamua.tm00.bufr_d + obs_files_target[${obs_number}]=amsuabufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.esamua.tm00.bufr_d + obs_files_target[${obs_number}]=amsuabufrears + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.1bmhs.tm00.bufr_d + obs_files_target[${obs_number}]=mhsbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.esmhs.tm00.bufr_d + obs_files_target[${obs_number}]=mhsbufrears + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.atms.tm00.bufr_d + obs_files_target[${obs_number}]=atmsbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.esatms.tm00.bufr_d + obs_files_target[${obs_number}]=atmsbufrears + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.atmsdb.tm00.bufr_d + obs_files_target[${obs_number}]=atmsbufr_db + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.crisf4.tm00.bufr_d + obs_files_target[${obs_number}]=crisfsbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.crsfdb.tm00.bufr_d + obs_files_target[${obs_number}]=crisfsbufr_db + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.mtiasi.tm00.bufr_d + obs_files_target[${obs_number}]=iasibufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.esiasi.tm00.bufr_d + obs_files_target[${obs_number}]=iasibufrears + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.iasidb.tm00.bufr_d + obs_files_target[${obs_number}]=iasibufr_db + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.gsrcsr.tm00.bufr_d + obs_files_target[${obs_number}]=abibufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.ssmisu.tm00.bufr_d + obs_files_target[${obs_number}]=ssmisbufr + + obs_number=${#obs_files_source[@]} + obs_files_source[${obs_number}]=${obspath_tmp}/${obsfileprefix}.t${HH}z.sevcsr.tm00.bufr_d + obs_files_target[${obs_number}]=sevcsr + +fi +fi + +obs_number=${#obs_files_source[@]} +for (( i=0; i<${obs_number}; i++ )); +do + obs_file=${obs_files_source[$i]} + obs_file_t=${obs_files_target[$i]} + if [ -r "${obs_file}" ]; then + ln -s "${obs_file}" "${obs_file_t}" + else + print_info_msg "$VERBOSE" "Warning: ${obs_file} does not exist!" + fi +done + +# +#----------------------------------------------------------------------- +# +# Create links to fix files in the FIXgsi directory. +# Set fixed files +# berror = forecast model background error statistics +# specoef = CRTM spectral coefficients +# trncoef = CRTM transmittance coefficients +# emiscoef = CRTM coefficients for IR sea surface emissivity model +# aerocoef = CRTM coefficients for aerosol effects +# cldcoef = CRTM coefficients for cloud effects +# satinfo = text file with information about assimilation of brightness temperatures +# satangl = angle dependent bias correction file (fixed in time) +# pcpinfo = text file with information about assimilation of prepcipitation rates +# ozinfo = text file with information about assimilation of ozone data +# errtable = text file with obs error for conventional data (regional only) +# convinfo = text file with information about assimilation of conventional data +# bufrtable= text file ONLY needed for single obs test (oneobstest=.true.) +# bftab_sst= bufr table for sst ONLY needed for sst retrieval (retrieval=.true.) +# +#----------------------------------------------------------------------- + +ANAVINFO=${FIX_GSI}/${ANAVINFO_FN} +if [ ${DO_ENKF_RADAR_REF} == "TRUE" ]; then + ANAVINFO=${FIX_GSI}/${ANAVINFO_DBZ_FN} + diag_radardbz=.true. + beta1_inv=0.0 + if_model_dbz=.true. +fi +if [[ ${gsi_type} == "ANALYSIS" && ${anav_type} == "radardbz" ]]; then + ANAVINFO=${FIX_GSI}/${ENKF_ANAVINFO_DBZ_FN} + miter=1 + niter1=100 + niter2=0 + bkgerr_vs=0.1 + bkgerr_hzscl="0.4,0.5,0.6" + beta1_inv=0.0 + readin_localization=.false. + ens_h=${ens_h_radardbz} + ens_v=${ens_v_radardbz} + nsclgrp=1 + ngvarloc=1 + r_ensloccov4tim=1.0 + r_ensloccov4var=1.0 + r_ensloccov4scl=1.0 + q_hyb_ens=.true. + if_model_dbz=.true. +fi +if [[ ${gsi_type} == "ANALYSIS" && ${anav_type} == "conv_dbz" ]]; then + ANAVINFO=${FIX_GSI}/${ANAVINFO_CONV_DBZ_FN} + if_model_dbz=.true. +fi +naensloc=`expr ${nsclgrp} \* ${ngvarloc} + ${nsclgrp} - 1` +if [ ${assign_vdl_nml} = ".true." ]; then + nsclgrp=`expr ${nsclgrp} \* ${ngvarloc}` + ngvarloc=1 +fi +CONVINFO=${FIX_GSI}/${CONVINFO_FN} +HYBENSINFO=${FIX_GSI}/${HYBENSINFO_FN} +OBERROR=${FIX_GSI}/${OBERROR_FN} +BERROR=${FIX_GSI}/${BERROR_FN} + + +if [[ ${gsi_type} == "ANALYSIS" && ${anav_type} == "AERO" ]]; then + if [ ${BKTYPE} -eq 1 ]; then + echo "cold start, skip GSI SD DA" + exit 0 + fi + ANAVINFO=${FIX_GSI}/${ANAVINFO_SD_FN} + CONVINFO=${FIX_GSI}/${CONVINFO_SD_FN} + BERROR=${FIX_GSI}/${BERROR_SD_FN} + miter=1 + niter1=100 + niter2=0 + ifhyb=.false. + ifsd_da=.true. + l_hyb_ens=.false. + nummem=0 + beta1_inv=0.0 + i_use_2mQ4B=0 + i_use_2mT4B=0 + netcdf_diag=.true. + binary_diag=.false. + usenewgfsberror=.false. + laeroana_fv3smoke=.true. + berror_fv3_cmaq_regional=.true. +fi + +SATINFO=${FIX_GSI}/global_satinfo.txt +OZINFO=${FIX_GSI}/global_ozinfo.txt +PCPINFO=${FIX_GSI}/global_pcpinfo.txt +ATMS_BEAMWIDTH=${FIX_GSI}/atms_beamwidth.txt + +# Fixed fields +cp_vrfy ${ANAVINFO} anavinfo +cp_vrfy ${BERROR} berror_stats +cp_vrfy $SATINFO satinfo +cp_vrfy $CONVINFO convinfo +cp_vrfy $OZINFO ozinfo +cp_vrfy $PCPINFO pcpinfo +cp_vrfy $OBERROR errtable +cp_vrfy $ATMS_BEAMWIDTH atms_beamwidth.txt +cp_vrfy ${HYBENSINFO} hybens_info + +# Get surface observation provider list +if [ -r ${FIX_GSI}/gsd_sfcobs_provider.txt ]; then + cp_vrfy ${FIX_GSI}/gsd_sfcobs_provider.txt gsd_sfcobs_provider.txt +else + print_info_msg "$VERBOSE" "Warning: gsd surface observation provider does not exist!" +fi + +# Get aircraft reject list +for reject_list in "${AIRCRAFT_REJECT}/current_bad_aircraft.txt" \ + "${AIRCRAFT_REJECT}/${AIR_REJECT_FN}" +do + if [ -r $reject_list ]; then + cp_vrfy $reject_list current_bad_aircraft + print_info_msg "$VERBOSE" "Use aircraft reject list: $reject_list " + break + fi +done +if [ ! -r $reject_list ] ; then + print_info_msg "$VERBOSE" "Warning: gsd aircraft reject list does not exist!" +fi + +# Get mesonet uselist +gsd_sfcobs_uselist="gsd_sfcobs_uselist.txt" +for use_list in "${SFCOBS_USELIST}/current_mesonet_uselist.txt" \ + "${SFCOBS_USELIST}/${MESO_USELIST_FN}" \ + "${SFCOBS_USELIST}/gsd_sfcobs_uselist.txt" +do + if [ -r $use_list ] ; then + cp_vrfy $use_list $gsd_sfcobs_uselist + print_info_msg "$VERBOSE" "Use surface obs uselist: $use_list " + break + fi +done +if [ ! -r $use_list ] ; then + print_info_msg "$VERBOSE" "Warning: gsd surface observation uselist does not exist!" +fi + +#----------------------------------------------------------------------- +# +# CRTM Spectral and Transmittance coefficients +# set coefficient under crtm_coeffs_path='./crtm_coeffs/', +#----------------------------------------------------------------------- +CRTMFIX=${FIX_CRTM} +emiscoef_IRwater=${CRTMFIX}/Nalli.IRwater.EmisCoeff.bin +emiscoef_IRice=${CRTMFIX}/NPOESS.IRice.EmisCoeff.bin +emiscoef_IRland=${CRTMFIX}/NPOESS.IRland.EmisCoeff.bin +emiscoef_IRsnow=${CRTMFIX}/NPOESS.IRsnow.EmisCoeff.bin +emiscoef_VISice=${CRTMFIX}/NPOESS.VISice.EmisCoeff.bin +emiscoef_VISland=${CRTMFIX}/NPOESS.VISland.EmisCoeff.bin +emiscoef_VISsnow=${CRTMFIX}/NPOESS.VISsnow.EmisCoeff.bin +emiscoef_VISwater=${CRTMFIX}/NPOESS.VISwater.EmisCoeff.bin +emiscoef_MWwater=${CRTMFIX}/FASTEM6.MWwater.EmisCoeff.bin +aercoef=${CRTMFIX}/AerosolCoeff.bin +cldcoef=${CRTMFIX}/CloudCoeff.bin + +mkdir -p crtm_coeffs +ln -s ${emiscoef_IRwater} ./crtm_coeffs/Nalli.IRwater.EmisCoeff.bin +ln -s $emiscoef_IRice ./crtm_coeffs/NPOESS.IRice.EmisCoeff.bin +ln -s $emiscoef_IRsnow ./crtm_coeffs/NPOESS.IRsnow.EmisCoeff.bin +ln -s $emiscoef_IRland ./crtm_coeffs/NPOESS.IRland.EmisCoeff.bin +ln -s $emiscoef_VISice ./crtm_coeffs/NPOESS.VISice.EmisCoeff.bin +ln -s $emiscoef_VISland ./crtm_coeffs/NPOESS.VISland.EmisCoeff.bin +ln -s $emiscoef_VISsnow ./crtm_coeffs/NPOESS.VISsnow.EmisCoeff.bin +ln -s $emiscoef_VISwater ./crtm_coeffs/NPOESS.VISwater.EmisCoeff.bin +ln -s $emiscoef_MWwater ./crtm_coeffs/FASTEM6.MWwater.EmisCoeff.bin +ln -s $aercoef ./crtm_coeffs/AerosolCoeff.bin +ln -s $cldcoef ./crtm_coeffs/CloudCoeff.bin + + +# Copy CRTM coefficient files based on entries in satinfo file +for file in $(awk '{if($1!~"!"){print $1}}' ./satinfo | sort | uniq) ;do + ln -s ${CRTMFIX}/${file}.SpcCoeff.bin ./crtm_coeffs/. + ln -s ${CRTMFIX}/${file}.TauCoeff.bin ./crtm_coeffs/. +done + +#----------------------------------------------------------------------- +# +# cycling radiance bias corretion files +# +#----------------------------------------------------------------------- +if [ ${DO_RADDA} == "TRUE" ]; then + if [ ${cycle_type} == "spinup" ]; then + echo "spin up cycle" + spinup_or_prod_rrfs=spinup + for cyc_start in "${CYCL_HRS_SPINSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + spinup_or_prod_rrfs=prod + fi + done + else + echo " product cycle" + spinup_or_prod_rrfs=prod + for cyc_start in "${CYCL_HRS_PRODSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + spinup_or_prod_rrfs=spinup + fi + done + fi + + satcounter=1 + maxcounter=240 + while [ $satcounter -lt $maxcounter ]; do + SAT_TIME=`date +"%Y%m%d%H" -d "${START_DATE} ${satcounter} hours ago"` + echo $SAT_TIME + + if [ ${DO_ENS_RADDA} == "TRUE" ]; then + + # For EnKF. Note, EnKF does not need radstat file + if [ -r ${satbias_dir}_ensmean/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias ]; then + echo " using satellite bias files from ${SAT_TIME}" + + cp_vrfy ${satbias_dir}_ensmean/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias ./satbias_in + cp_vrfy ${satbias_dir}_ensmean/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias_pc ./satbias_pc + + break + fi + + else + + # For EnVar + if [ -r ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias ]; then + echo " using satellite bias files from ${SAT_TIME}" + + cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias ./satbias_in + cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_satbias_pc ./satbias_pc + if [ -r ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_radstat ]; then + cp_vrfy ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${SAT_TIME}_radstat ./radstat.rrfs + fi + + break + fi + + fi + satcounter=` expr $satcounter + 1 ` + done + + ## if satbias files (go back to previous 10 dyas) are not available from ${satbias_dir}, use satbias files from the ${FIX_GSI} + if [ $satcounter -eq $maxcounter ]; then + + # satbias_in + if [ -r ${FIX_GSI}/rrfs.starting_satbias ]; then + echo "using satelite satbias_in files from ${FIX_GSI}" + cp_vrfy ${FIX_GSI}/rrfs.starting_satbias ./satbias_in + fi + + # satbias_pc + if [ -r ${FIX_GSI}/rrfs.starting_satbias_pc ]; then + echo "using satelite satbias_pc files from ${FIX_GSI}" + cp_vrfy ${FIX_GSI}/rrfs.starting_satbias_pc ./satbias_pc + fi + + fi + + if [ -r radstat.rrfs ]; then + listdiag=`tar xvf radstat.rrfs | cut -d' ' -f2 | grep _ges` + for type in $listdiag; do + diag_file=`echo $type | cut -d',' -f1` + fname=`echo $diag_file | cut -d'.' -f1` + date=`echo $diag_file | cut -d'.' -f2` + gunzip $diag_file + fnameanl=$(echo $fname|sed 's/_ges//g') + mv $fname.$date* $fnameanl + done + fi +fi + +#----------------------------------------------------------------------- +# skip radar reflectivity analysis if no RRFSE ensemble +#----------------------------------------------------------------------- + +if [[ ${gsi_type} == "ANALYSIS" && ${anav_type} == "radardbz" ]]; then + if [[ ${regional_ensemble_option:-1} -eq 1 ]]; then + echo "No RRFSE ensemble available, cannot do radar reflectivity analysis" + exit 0 + fi +fi +#----------------------------------------------------------------------- +# +# Build the GSI namelist on-the-fly +# most configurable paramters take values from settings in config.sh +# (var_defns.sh in runtime) +# +#----------------------------------------------------------------------- +# +if [ ${gsi_type} == "OBSERVER" ]; then + miter=0 + ifhyb=.false. + if [ ${mem_type} == "MEAN" ]; then + lread_obs_save=.true. + lread_obs_skip=.false. + else + lread_obs_save=.false. + lread_obs_skip=.true. + ln -s ../../ensmean/observer_gsi/obs_input.* . + fi +fi +if [ ${BKTYPE} -eq 1 ]; then + n_iolayouty=1 +else + n_iolayouty=$(($IO_LAYOUT_Y)) +fi + +. ${FIX_GSI}/gsiparm.anl.sh +cat << EOF > gsiparm.anl +$gsi_namelist +EOF + +# +#----------------------------------------------------------------------- +# +# Copy the GSI executable to the run directory. +# +#----------------------------------------------------------------------- +# +gsi_exec="${EXECDIR}/gsi.x" + +if [[ ${gsi_type} == "ANALYSIS" && ${anav_type} == "AERO" ]]; then + gsi_exec="${EXECDIR}/gsi.x.sd" +fi + + +if [ -f $gsi_exec ]; then + print_info_msg "$VERBOSE" " +Copying the GSI executable to the run directory..." + cp_vrfy ${gsi_exec} ${analworkdir}/gsi.x +else + print_err_msg_exit "\ +The GSI executable specified in GSI_EXEC does not exist: + GSI_EXEC = \"$gsi_exec\" +Build GSI and rerun." +fi +# +#----------------------------------------------------------------------- +# +# Set and export variables. +# +#----------------------------------------------------------------------- +# + +# +#----------------------------------------------------------------------- +# +# Run the GSI. Note that we have to launch the forecast from +# the current cycle's run directory because the GSI executable will look +# for input files in the current directory. +# +#----------------------------------------------------------------------- +# +# comment out for testing + +$APRUN ./gsi.x < gsiparm.anl > stdout 2>&1 ; errcode=$? +echo "----------------------begin of stdout--------------" +cat ./stdout #log stdout whether gsi.x succeeds or not +echo "----------------------end of stdout----------------" +[ $errcode -eq 0 ] || print_err_msg_exit "\ +Call to executable to run GSI returned with nonzero exit code." + +if [ ${anav_type} == "radardbz" ]; then + cat fort.238 > $comout/rrfs_a.t${HH}z.fits3.tm00 + cp stdout $comout/stdout.t${HH}z.GSI_${anav_type} +else + mv fort.207 fit_rad1 + sed -e 's/ asm all /ps asm 900 0000/; s/ rej all /ps rej 900 0000/; s/ mon all /ps mon 900 0000/' fort.201 > fit_p1 + sed -e 's/ asm all /uv asm 900 0000/; s/ rej all /uv rej 900 0000/; s/ mon all /uv mon 900 0000/' fort.202 > fit_w1 + sed -e 's/ asm all / t asm 900 0000/; s/ rej all / t rej 900 0000/; s/ mon all / t mon 900 0000/' fort.203 > fit_t1 + sed -e 's/ asm all / q asm 900 0000/; s/ rej all / q rej 900 0000/; s/ mon all / q mon 900 0000/' fort.204 > fit_q1 + sed -e 's/ asm all /pw asm 900 0000/; s/ rej all /pw rej 900 0000/; s/ mon all /pw mon 900 0000/' fort.205 > fit_pw1 + sed -e 's/ asm all /rw asm 900 0000/; s/ rej all /rw rej 900 0000/; s/ mon all /rw mon 900 0000/' fort.209 > fit_rw1 + + cat fit_p1 fit_w1 fit_t1 fit_q1 fit_pw1 fit_rad1 fit_rw1 > $comout/rrfs_a.t${HH}z.fits.tm00 + cat fort.208 fort.210 fort.211 fort.212 fort.213 fort.220 > $comout/rrfs_a.t${HH}z.fits2.tm00 + cat fort.238 > $comout/rrfs_a.t${HH}z.fits3.tm00 + if [ ${gsi_type} == "OBSERVER" ]; then + cp stdout $comout/stdout.t${HH}z.GSI_observer + else + cp stdout $comout/stdout.t${HH}z.GSI_${anav_type} + fi + +fi +# +#----------------------------------------------------------------------- +# +# touch a file "gsi_complete.txt" after the successful GSI run. This is to inform +# the successful analysis for the EnKF recentering +# +#----------------------------------------------------------------------- +# +touch ${comout}/gsi_complete.txt +if [[ ${anav_type} == "radardbz" || ${anav_type} == "conv_dbz" ]]; then + touch ${comout}/gsi_complete_radar.txt # for nonvarcldanl +fi +# +#----------------------------------------------------------------------- +# +# Copy analysis results to INPUT for model forecast. +# +#----------------------------------------------------------------------- +# +# +#if [ ${BKTYPE} -eq 1 ]; then # cold start, put analysis back to current INPUT +# cp_vrfy ${analworkdir}/fv3_dynvars ${bkpath}/gfs_data.tile7.halo0.nc +# cp_vrfy ${analworkdir}/fv3_sfcdata ${bkpath}/sfc_data.tile7.halo0.nc +#else # cycling +# cp_vrfy ${analworkdir}/fv3_dynvars ${bkpath}/fv_core.res.tile1.nc +# cp_vrfy ${analworkdir}/fv3_tracer ${bkpath}/fv_tracer.res.tile1.nc +# cp_vrfy ${analworkdir}/fv3_sfcdata ${bkpath}/sfc_data.nc +#fi + +#----------------------------------------------------------------------- +# Loop over first and last outer loops to generate innovation +# diagnostic files for indicated observation types (groups) +# +# NOTE: Since we set miter=2 in GSI namelist SETUP, outer +# loop 03 will contain innovations with respect to +# the analysis. Creation of o-a innovation files +# is triggered by write_diag(3)=.true. The setting +# write_diag(1)=.true. turns on creation of o-g +# innovation files. +#----------------------------------------------------------------------- +# + +if [ ${DO_GSIDIAG_OFFLINE} == "FALSE" ]; then + +netcdf_diag=${netcdf_diag:-".false."} +binary_diag=${binary_diag:-".true."} + +loops="01 02 03" +for loop in $loops; do + +case $loop in + 01) string=ges;; + 02) string=02;; + 03) string=anl;; + *) string=$loop;; +esac + +# Collect diagnostic files for obs types (groups) below +numfile_rad_bin=0 +numfile_cnv=0 +numfile_rad=0 +if [ $binary_diag = ".true." ]; then + listall="hirs2_n14 msu_n14 sndr_g08 sndr_g11 sndr_g11 sndr_g12 sndr_g13 sndr_g08_prep sndr_g11_prep sndr_g12_prep sndr_g13_prep sndrd1_g11 sndrd2_g11 sndrd3_g11 sndrd4_g11 sndrd1_g15 sndrd2_g15 sndrd3_g15 sndrd4_g15 sndrd1_g13 sndrd2_g13 sndrd3_g13 sndrd4_g13 hirs3_n15 hirs3_n16 hirs3_n17 amsua_n15 amsua_n16 amsua_n17 amsua_n18 amsua_n19 amsua_metop-a amsua_metop-b amsua_metop-c amsub_n15 amsub_n16 amsub_n17 hsb_aqua airs_aqua amsua_aqua imgr_g08 imgr_g11 imgr_g12 pcp_ssmi_dmsp pcp_tmi_trmm conv sbuv2_n16 sbuv2_n17 sbuv2_n18 omi_aura ssmi_f13 ssmi_f14 ssmi_f15 hirs4_n18 hirs4_metop-a mhs_n18 mhs_n19 mhs_metop-a mhs_metop-b mhs_metop-c amsre_low_aqua amsre_mid_aqua amsre_hig_aqua ssmis_las_f16 ssmis_uas_f16 ssmis_img_f16 ssmis_env_f16 iasi_metop-a iasi_metop-b iasi_metop-c seviri_m08 seviri_m09 seviri_m10 seviri_m11 cris_npp atms_npp ssmis_f17 cris-fsr_npp cris-fsr_n20 atms_n20 abi_g16 abi_g17 radardbz" + for type in $listall; do + count=$(ls pe*.${type}_${loop} | wc -l) + if [[ $count -gt 0 ]]; then + $(cat pe????.${type}_${loop} > diag_${type}_${string}.${YYYYMMDDHH}) + cp diag_${type}_${string}.${YYYYMMDDHH} $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}" >> listrad_bin + numfile_rad_bin=`expr ${numfile_rad_bin} + 1` + fi + done +fi + +if [ $netcdf_diag = ".true." ]; then + nc_diag_cat="nc_diag_cat.x" + listall_cnv="conv_ps conv_q conv_t conv_uv conv_pw conv_rw conv_sst conv_dbz" + listall_rad="hirs2_n14 msu_n14 sndr_g08 sndr_g11 sndr_g11 sndr_g12 sndr_g13 sndr_g08_prep sndr_g11_prep sndr_g12_prep sndr_g13_prep sndrd1_g11 sndrd2_g11 sndrd3_g11 sndrd4_g11 sndrd1_g15 sndrd2_g15 sndrd3_g15 sndrd4_g15 sndrd1_g13 sndrd2_g13 sndrd3_g13 sndrd4_g13 hirs3_n15 hirs3_n16 hirs3_n17 amsua_n15 amsua_n16 amsua_n17 amsua_n18 amsua_n19 amsua_metop-a amsua_metop-b amsua_metop-c amsub_n15 amsub_n16 amsub_n17 hsb_aqua airs_aqua amsua_aqua imgr_g08 imgr_g11 imgr_g12 pcp_ssmi_dmsp pcp_tmi_trmm conv sbuv2_n16 sbuv2_n17 sbuv2_n18 omi_aura ssmi_f13 ssmi_f14 ssmi_f15 hirs4_n18 hirs4_metop-a mhs_n18 mhs_n19 mhs_metop-a mhs_metop-b mhs_metop-c amsre_low_aqua amsre_mid_aqua amsre_hig_aqua ssmis_las_f16 ssmis_uas_f16 ssmis_img_f16 ssmis_env_f16 iasi_metop-a iasi_metop-b iasi_metop-c seviri_m08 seviri_m09 seviri_m10 seviri_m11 cris_npp atms_npp ssmis_f17 cris-fsr_npp cris-fsr_n20 atms_n20 abi_g16" + + for type in $listall_cnv; do + count=$(ls pe*.${type}_${loop}.nc4 | wc -l) + if [[ $count -gt 0 ]]; then + ${APRUN} ${nc_diag_cat} -o diag_${type}_${string}.${YYYYMMDDHH}.nc4 pe*.${type}_${loop}.nc4 + cp diag_${type}_${string}.${YYYYMMDDHH}.nc4 $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}.nc4*" >> listcnv + numfile_cnv=`expr ${numfile_cnv} + 1` + fi + done + + for type in $listall_rad; do + count=$(ls pe*.${type}_${loop}.nc4 | wc -l) + if [[ $count -gt 0 ]]; then + ${APRUN} ${nc_diag_cat} -o diag_${type}_${string}.${YYYYMMDDHH}.nc4 pe*.${type}_${loop}.nc4 + cp diag_${type}_${string}.${YYYYMMDDHH}.nc4 $comout + cp diag_${type}_${string}.${YYYYMMDDHH} $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}.nc4*" >> listrad + numfile_rad=`expr ${numfile_rad} + 1` + else + echo 'No diag_' ${type} 'exist' + fi + done +fi + +done + +if [ ${gsi_type} == "OBSERVER" ]; then + cp_vrfy *diag*ges* ${observer_nwges_dir}/. + if [ ${mem_type} == "MEAN" ]; then + mkdir_vrfy -p ${observer_nwges_dir}/../../../observer_diag/${YYYYMMDDHH}/ensmean/observer_gsi + cp_vrfy *diag*ges* ${observer_nwges_dir}/../../../observer_diag/${YYYYMMDDHH}/ensmean/observer_gsi/. + else + mkdir_vrfy -p ${observer_nwges_dir}/../../../observer_diag/${YYYYMMDDHH}/${slash_ensmem_subdir}/observer_gsi + cp_vrfy *diag*ges* ${observer_nwges_dir}/../../../observer_diag/${YYYYMMDDHH}/${slash_ensmem_subdir}/observer_gsi/. + fi +fi + +# +#----------------------------------------------------------------------- +# +# cycling radiance bias corretion files +# +#----------------------------------------------------------------------- + +if [ ${DO_RADDA} == "TRUE" ]; then + if [ ${cycle_type} == "spinup" ]; then + spinup_or_prod_rrfs=spinup + else + spinup_or_prod_rrfs=prod + fi + if [ ${numfile_cnv} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat_nc `cat listcnv` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat_nc ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat + fi + if [ ${numfile_rad} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat_nc `cat listrad` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat_nc ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat + fi + if [ ${numfile_rad_bin} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat `cat listrad_bin` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat + fi + + if [ ${DO_ENS_RADDA} == "TRUE" ]; then + # For EnKF: ensmean, copy satbias files; ens. member, do nothing + if [ ${mem_type} == "MEAN" ]; then + cp_vrfy ./satbias_out ${satbias_dir}_ensmean/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias + cp_vrfy ./satbias_pc.out ${satbias_dir}_ensmean/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias_pc + fi + else + # For EnVar DA + cp_vrfy ./satbias_out ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias + cp_vrfy ./satbias_pc.out ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias_pc + fi + +fi + +fi # run diag inline (with GSI) +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +ANALYSIS GSI completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_enkf.sh b/scripts/exregional_run_enkf.sh new file mode 100755 index 000000000..917789560 --- /dev/null +++ b/scripts/exregional_run_enkf.sh @@ -0,0 +1,536 @@ +#!/bin/bash +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh + +function ncvarlst_noaxis_time { ncks --trd -m ${1} | grep -E ': type' | cut -f 1 -d ' ' | sed 's/://' | sort |grep -v -i -E "axis|time" ; } +function ncvarlst_noaxis_time_new { ncks -m ${1} | grep -E 'float' | cut -d "(" -f 1 | cut -c 10- ; } +export HDF5_USE_FILE_LOCKING=FALSE #clt to avoild recenter's error "NetCDF: HDF error" +export MPICH_COLL_OPT_OFF=1 # to fix non-physical EnKF analysis increments +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs EnKF analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "enkfworkdir" "NWGES_DIR" "ob_type" ) +process_args valid_args "$@" + +cycle_type=${cycle_type:-prod} + +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=2G + export OMP_NUM_THREADS=${TPP_RUN_ENKF} + export OMP_PROC_BIND=close + export OMP_PLACES=threads + export MPICH_RANK_REORDER_METHOD=0 + if [ ${PREDEF_GRID_NAME} = "RRFS_CONUS_3km" ]; then + export OMP_STACKSIZE=1G + export OMP_NUM_THREADS=1 + fi + ncores=$(( NNODES_RUN_ENKF*PPN_RUN_ENKF )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_ENKF} --label --line-buffer --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun -np ${np}" + ;; +# +"HERA") + module load nco/4.9.3 + ulimit -s unlimited + ulimit -v unlimited + ulimit -a + export OMP_NUM_THREADS=1 +# export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + ulimit -s unlimited + ulimit -a + APRUN="srun --mem=0" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n ${PE_MEMBER01}" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") + +vlddate=$CDATE +l_fv3reg_filecombined=.false. +# +#----------------------------------------------------------------------- +# +# Go to working directory. +# Define fix path +# +#----------------------------------------------------------------------- +# + +cd_vrfy $enkfworkdir +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} + +if [ ${cycle_type} == "spinup" ]; then + enkfanal_nwges_dir="${NWGES_DIR}/anal_enkf_spinup" +else + enkfanal_nwges_dir="${NWGES_DIR}/anal_enkf" +fi +mkdir_vrfy -p ${enkfanal_nwges_dir} +# +#----------------------------------------------------------------------- +# + cp_vrfy ${fixgriddir}/fv3_coupler.res coupler.res + cp_vrfy ${fixgriddir}/fv3_akbk fv3sar_tile1_akbk.nc + cp_vrfy ${fixgriddir}/fv3_grid_spec fv3sar_tile1_grid_spec.nc + +# +#----------------------------------------------------------------------- +# +# Loop through the members, link the background and copy over +# observer output (diag*ges*) files to the running directory +# +#----------------------------------------------------------------------- +# + for imem in $(seq 1 $nens) ensmean; do + + if [ ${imem} == "ensmean" ]; then + memchar="ensmean" + memcharv0="ensmean" + else + memchar="mem"$(printf %04i $imem) + memcharv0="mem"$(printf %03i $imem) + fi + slash_ensmem_subdir=$memchar + if [ ${cycle_type} == "spinup" ]; then + bkpath=${cycle_dir}/${slash_ensmem_subdir}/fcst_fv3lam_spinup/INPUT + observer_nwges_dir="${NWGES_DIR}/${slash_ensmem_subdir}/observer_gsi_spinup" + else + bkpath=${cycle_dir}/${slash_ensmem_subdir}/fcst_fv3lam/INPUT + observer_nwges_dir="${NWGES_DIR}/${slash_ensmem_subdir}/observer_gsi" + fi + + ln_vrfy -snf ${bkpath}/fv_core.res.tile1.nc fv3sar_tile1_${memcharv0}_dynvars + ln_vrfy -snf ${bkpath}/fv_tracer.res.tile1.nc fv3sar_tile1_${memcharv0}_tracer + ln_vrfy -snf ${bkpath}/sfc_data.nc fv3sar_tile1_${memcharv0}_sfcdata + ln_vrfy -snf ${bkpath}/phy_data.nc fv3sar_tile1_${memcharv0}_phyvar + +# +#----------------------------------------------------------------------- +# +# Copy observer outputs (diag*ges*) to the working directory +# +#----------------------------------------------------------------------- +# + + if [ ${netcdf_diag} == ".true." ] ; then + + # Note, listall_rad is copied from exregional_run_analysis.sh + listall_rad="hirs2_n14 msu_n14 sndr_g08 sndr_g11 sndr_g11 sndr_g12 sndr_g13 sndr_g08_prep sndr_g11_prep sndr_g12_prep sndr_g13_prep sndrd1_g11 sndrd2_g11 sndrd3_g11 sndrd4_g11 sndrd1_g15 sndrd2_g15 sndrd3_g15 sndrd4_g15 sndrd1_g13 sndrd2_g13 sndrd3_g13 sndrd4_g13 hirs3_n15 hirs3_n16 hirs3_n17 amsua_n15 amsua_n16 amsua_n17 amsua_n18 amsua_n19 amsua_metop-a amsua_metop-b amsua_metop-c amsub_n15 amsub_n16 amsub_n17 hsb_aqua airs_aqua amsua_aqua imgr_g08 imgr_g11 imgr_g12 pcp_ssmi_dmsp pcp_tmi_trmm conv sbuv2_n16 sbuv2_n17 sbuv2_n18 omi_aura ssmi_f13 ssmi_f14 ssmi_f15 hirs4_n18 hirs4_metop-a mhs_n18 mhs_n19 mhs_metop-a mhs_metop-b mhs_metop-c amsre_low_aqua amsre_mid_aqua amsre_hig_aqua ssmis_las_f16 ssmis_uas_f16 ssmis_img_f16 ssmis_env_f16 iasi_metop-a iasi_metop-b iasi_metop-c seviri_m08 seviri_m09 seviri_m10 seviri_m11 cris_npp atms_npp ssmis_f17 cris-fsr_npp cris-fsr_n20 atms_n20 abi_g16" + + if [ ${ob_type} == "conv" ]; then + list_ob_type="conv_ps conv_q conv_t conv_uv conv_pw conv_rw conv_sst" + + if [ ${DO_ENS_RADDA} == "TRUE" ]; then + list_ob_type="$list_ob_type $listall_rad" + fi + + fi + + if [ ${ob_type} == "radardbz" ]; then + list_ob_type="conv_dbz" + fi + for sub_ob_type in ${list_ob_type} ; do + diagfile0=${observer_nwges_dir}/diag_${sub_ob_type}_ges.${YYYYMMDDHH}.nc4 + if [ -s $diagfile0 ]; then + diagfile=$(basename $diagfile0) + cp_vrfy $diagfile0 $diagfile + ncfile=$(basename -s .nc4 $diagfile) + mv_vrfy $ncfile.nc4 ${ncfile}_${memcharv0}.nc4 + fi + done + else + for diagfile0 in $(ls ${observer_nwges_dir}/diag*${ob_type}*ges* ) ; do + if [ -s $diagfile0 ]; then + diagfile=$(basename $diagfile0) + cp_vrfy $diagfile0 diag_conv_ges.$memcharv0 + fi + done + fi + +done + +# +#----------------------------------------------------------------------- +# +# Set GSI fix files +# +#---------------------------------------------------------------------- +# +found_ob_type=0 + +CONVINFO=${FIX_GSI}/convinfo.rrfs + +if [ ${ob_type} == "conv" ]; then + ANAVINFO=${FIX_GSI}/${ENKF_ANAVINFO_FN} + found_ob_type=1 +fi +if [ ${ob_type} == "radardbz" ]; then + ANAVINFO=${FIX_GSI}/${ENKF_ANAVINFO_DBZ_FN} + CORRLENGTH=${CORRLENGTH_radardbz} + LNSIGCUTOFF=${LNSIGCUTOFF_radardbz} + found_ob_type=1 +fi +if [ ${found_ob_type} == 0 ]; then + print_err_msg_exit "Error: unknown observation type: ${ob_type}" +fi +stdout_name=stdout.${ob_type} +stderr_name=stderr.${ob_type} + +SATINFO=${FIX_GSI}/global_satinfo.txt +OZINFO=${FIX_GSI}/global_ozinfo.txt + +cp_vrfy ${ANAVINFO} anavinfo +cp_vrfy $SATINFO satinfo +cp_vrfy $CONVINFO convinfo +cp_vrfy $OZINFO ozinfo + + +if [ ${DO_ENS_RADDA} == "TRUE" ]; then + + # This follows the procedure of DO_RADDA=TRUE in exregional_run_analysis.sh, with differences below + # - The check for "spinup" or "prod" is not performed, as there is only one spinup cycle. + # - The file check is back in time for up to 72 hours only. EnVar checks up to 240 hours back. + # - No $satbias_dir is defined in EnKF. Thus, it is defined as below. + # - No use of radstat file in EnKF + + satbias_dir=$NWGES_DIR/../satbias_ensmean + + # Searching the satbias files from ${satbias_dir} + satcounter=1 + maxcounter=72 + while [ $satcounter -lt $maxcounter ]; do + SAT_TIME=`date +"%Y%m%d%H" -d "${START_DATE} ${satcounter} hours ago"` + echo $SAT_TIME + + if [ -r ${satbias_dir}/rrfs.prod.${SAT_TIME}_satbias ]; then + echo " using satellite bias files from ${SAT_TIME}" + + cp_vrfy ${satbias_dir}/rrfs.prod.${SAT_TIME}_satbias ./satbias_in + cp_vrfy ${satbias_dir}/rrfs.prod.${SAT_TIME}_satbias_pc ./satbias_pc + + break + fi + satcounter=` expr $satcounter + 1 ` + done + + # if satbias files are not available from ${satbias_dir}, use satbias files from the ${FIX_GSI} + if [ $satcounter -eq $maxcounter ]; then + + if [ -r ${FIX_GSI}/rrfs.starting_satbias ]; then + echo "using satllite satbias_in files from ${FIX_GSI}" + cp_vrfy ${FIX_GSI}/rrfs.starting_satbias ./satbias_in + fi + if [ -r ${FIX_GSI}/rrfs.starting_satbias_pc ]; then + echo "using satllite satbias_pc files from ${FIX_GSI}" + cp_vrfy ${FIX_GSI}/rrfs.starting_satbias_pc ./satbias_pc + fi + + fi + +fi + +# +#----------------------------------------------------------------------- +# +# Get nlons (NX_RES), nlats (NY_RES) and nlevs +# +#----------------------------------------------------------------------- +# +NX_RES=$(ncdump -h fv3sar_tile1_grid_spec.nc | grep "grid_xt =" | cut -f3 -d" " ) +NY_RES=$(ncdump -h fv3sar_tile1_grid_spec.nc | grep "grid_yt =" | cut -f3 -d" " ) +nlevs=$(ncdump -h fv3sar_tile1_mem001_tracer | grep "zaxis_1 =" | cut -f3 -d" " ) +# +#---------------------------------------------------------------------- +# +# Set namelist parameters for EnKF +# +#---------------------------------------------------------------------- +# + +EnKFTracerVars=${EnKFTracerVar:-"sphum,o3mr"} +ldo_enscalc_option=${ldo_enscalc_option:-0} + +# We expect 81 total files to be present (80 enkf + 1 mean) +nens=${nens:-81} +USEGFSO3=.false. +# Not using FGAT or 4DEnVar, so hardwire nhr_assimilation to 3 +nhr_assimilation=3. +vs=1. +fstat=.false. +i_gsdcldanal_type=0 +use_gfs_nemsio=.true., + +# +#---------------------------------------------------------------------- +# +# Make enkf namelist +# +#---------------------------------------------------------------------- +# + cat > enkf.nml << EOFnml + &nam_enkf + datestring="$vlddate",datapath="$enkfworkdir/", + analpertwtnh=1.10,analpertwtsh=1.10,analpertwttr=1.10, + covinflatemax=1.e2,covinflatemin=1,pseudo_rh=.true.,iassim_order=0, + corrlengthnh=$CORRLENGTH,corrlengthsh=$CORRLENGTH,corrlengthtr=$CORRLENGTH, + lnsigcutoffnh=$LNSIGCUTOFF,lnsigcutoffsh=$LNSIGCUTOFF,lnsigcutofftr=$LNSIGCUTOFF, + lnsigcutoffpsnh=$LNSIGCUTOFF,lnsigcutoffpssh=$LNSIGCUTOFF,lnsigcutoffpstr=$LNSIGCUTOFF, + lnsigcutoffsatnh=$LNSIGCUTOFF,lnsigcutoffsatsh=$LNSIGCUTOFF,lnsigcutoffsattr=$LNSIGCUTOFF, + obtimelnh=1.e30,obtimelsh=1.e30,obtimeltr=1.e30, + saterrfact=1.0,numiter=1, + sprd_tol=1.e30,paoverpb_thresh=0.98, + nlons=${NX_RES:-396},nlats= ${NY_RES:-232}, nlevs= ${nlevs:-65},nanals=$nens, + deterministic=.true.,sortinc=.true.,lupd_satbiasc=.false., + reducedgrid=.true.,readin_localization=.false., + use_gfs_nemsio=.true.,imp_physics=99,lupp=.false., + univaroz=.false.,adp_anglebc=.true.,angord=4,use_edges=.false.,emiss_bc=.true., + lobsdiag_forenkf=.false., + write_spread_diag=.false., + netcdf_diag=${netcdf_diag:-.false.}, + fv3_native=.true., + / + &satobs_enkf + sattypes_rad(1) = 'amsua_n15', dsis(1) = 'amsua_n15', + sattypes_rad(2) = 'amsua_n18', dsis(2) = 'amsua_n18', + sattypes_rad(3) = 'amsua_n19', dsis(3) = 'amsua_n19', + sattypes_rad(4) = 'amsub_n16', dsis(4) = 'amsub_n16', + sattypes_rad(5) = 'amsub_n17', dsis(5) = 'amsub_n17', + sattypes_rad(6) = 'amsua_aqua', dsis(6) = 'amsua_aqua', + sattypes_rad(7) = 'amsua_metop-a', dsis(7) = 'amsua_metop-a', + sattypes_rad(8) = 'airs_aqua', dsis(8) = 'airs_aqua', + sattypes_rad(9) = 'hirs3_n17', dsis(9) = 'hirs3_n17', + sattypes_rad(10)= 'hirs4_n19', dsis(10)= 'hirs4_n19', + sattypes_rad(11)= 'hirs4_metop-a', dsis(11)= 'hirs4_metop-a', + sattypes_rad(12)= 'mhs_n18', dsis(12)= 'mhs_n18', + sattypes_rad(13)= 'mhs_n19', dsis(13)= 'mhs_n19', + sattypes_rad(14)= 'mhs_metop-a', dsis(14)= 'mhs_metop-a', + sattypes_rad(15)= 'goes_img_g11', dsis(15)= 'imgr_g11', + sattypes_rad(16)= 'goes_img_g12', dsis(16)= 'imgr_g12', + sattypes_rad(17)= 'goes_img_g13', dsis(17)= 'imgr_g13', + sattypes_rad(18)= 'goes_img_g14', dsis(18)= 'imgr_g14', + sattypes_rad(19)= 'goes_img_g15', dsis(19)= 'imgr_g15', + sattypes_rad(20)= 'avhrr_n18', dsis(20)= 'avhrr3_n18', + sattypes_rad(21)= 'avhrr_metop-a', dsis(21)= 'avhrr3_metop-a', + sattypes_rad(22)= 'avhrr_n19', dsis(22)= 'avhrr3_n19', + sattypes_rad(23)= 'amsre_aqua', dsis(23)= 'amsre_aqua', + sattypes_rad(24)= 'ssmis_f16', dsis(24)= 'ssmis_f16', + sattypes_rad(25)= 'ssmis_f17', dsis(25)= 'ssmis_f17', + sattypes_rad(26)= 'ssmis_f18', dsis(26)= 'ssmis_f18', + sattypes_rad(27)= 'ssmis_f19', dsis(27)= 'ssmis_f19', + sattypes_rad(28)= 'ssmis_f20', dsis(28)= 'ssmis_f20', + sattypes_rad(29)= 'sndrd1_g11', dsis(29)= 'sndrD1_g11', + sattypes_rad(30)= 'sndrd2_g11', dsis(30)= 'sndrD2_g11', + sattypes_rad(31)= 'sndrd3_g11', dsis(31)= 'sndrD3_g11', + sattypes_rad(32)= 'sndrd4_g11', dsis(32)= 'sndrD4_g11', + sattypes_rad(33)= 'sndrd1_g12', dsis(33)= 'sndrD1_g12', + sattypes_rad(34)= 'sndrd2_g12', dsis(34)= 'sndrD2_g12', + sattypes_rad(35)= 'sndrd3_g12', dsis(35)= 'sndrD3_g12', + sattypes_rad(36)= 'sndrd4_g12', dsis(36)= 'sndrD4_g12', + sattypes_rad(37)= 'sndrd1_g13', dsis(37)= 'sndrD1_g13', + sattypes_rad(38)= 'sndrd2_g13', dsis(38)= 'sndrD2_g13', + sattypes_rad(39)= 'sndrd3_g13', dsis(39)= 'sndrD3_g13', + sattypes_rad(40)= 'sndrd4_g13', dsis(40)= 'sndrD4_g13', + sattypes_rad(41)= 'sndrd1_g14', dsis(41)= 'sndrD1_g14', + sattypes_rad(42)= 'sndrd2_g14', dsis(42)= 'sndrD2_g14', + sattypes_rad(43)= 'sndrd3_g14', dsis(43)= 'sndrD3_g14', + sattypes_rad(44)= 'sndrd4_g14', dsis(44)= 'sndrD4_g14', + sattypes_rad(45)= 'sndrd1_g15', dsis(45)= 'sndrD1_g15', + sattypes_rad(46)= 'sndrd2_g15', dsis(46)= 'sndrD2_g15', + sattypes_rad(47)= 'sndrd3_g15', dsis(47)= 'sndrD3_g15', + sattypes_rad(48)= 'sndrd4_g15', dsis(48)= 'sndrD4_g15', + sattypes_rad(49)= 'iasi_metop-a', dsis(49)= 'iasi_metop-a', + sattypes_rad(50)= 'seviri_m08', dsis(50)= 'seviri_m08', + sattypes_rad(51)= 'seviri_m09', dsis(51)= 'seviri_m09', + sattypes_rad(52)= 'seviri_m10', dsis(52)= 'seviri_m10', + sattypes_rad(53)= 'amsua_metop-b', dsis(53)= 'amsua_metop-b', + sattypes_rad(54)= 'hirs4_metop-b', dsis(54)= 'hirs4_metop-b', + sattypes_rad(55)= 'mhs_metop-b', dsis(55)= 'mhs_metop-b', + sattypes_rad(56)= 'iasi_metop-b', dsis(56)= 'iasi_metop-b', + sattypes_rad(57)= 'avhrr_metop-b', dsis(57)= 'avhrr3_metop-b', + sattypes_rad(58)= 'atms_npp', dsis(58)= 'atms_npp', + sattypes_rad(59)= 'atms_n20', dsis(59)= 'atms_n20', + sattypes_rad(60)= 'cris_npp', dsis(60)= 'cris_npp', + sattypes_rad(61)= 'cris-fsr_npp', dsis(61)= 'cris-fsr_npp', + sattypes_rad(62)= 'cris-fsr_n20', dsis(62)= 'cris-fsr_n20', + sattypes_rad(63)= 'gmi_gpm', dsis(63)= 'gmi_gpm', + sattypes_rad(64)= 'saphir_meghat', dsis(64)= 'saphir_meghat', + / + &ozobs_enkf + sattypes_oz(1) = 'sbuv2_n16', + sattypes_oz(2) = 'sbuv2_n17', + sattypes_oz(3) = 'sbuv2_n18', + sattypes_oz(4) = 'sbuv2_n19', + sattypes_oz(5) = 'omi_aura', + sattypes_oz(6) = 'gome_metop-a', + sattypes_oz(7) = 'gome_metop-b', + sattypes_oz(8) = 'mls30_aura', + / + &nam_fv3 + fv3fixpath="XXX",nx_res=${NX_RES:-396},ny_res=${NY_RES-232},ntiles=1, + l_fv3reg_filecombined=${l_fv3reg_filecombined}, + / +EOFnml + +# +#----------------------------------------------------------------------- +# +# Copy the EnKF executable to the run directory. +# +#----------------------------------------------------------------------- +# + +echo pwd is `pwd` +ENKFEXEC=${EXECDIR}/enkf.x + +if [ -f ${ENKFEXEC} ]; then + print_info_msg "$VERBOSE" " +Copying the EnKF executable to the run directory..." + cp_vrfy ${ENKFEXEC} ${enkfworkdir}/enkf.x +else + print_err_msg_exit "\ +The EnKF executable specified in ENKFEXEC does not exist: + EnKF_EXEC = \"${ENKFEXEC}\" +Build EnKF and rerun." +fi + +# +#----------------------------------------------------------------------- +# +# Run the EnKF +# +#----------------------------------------------------------------------- +# +countdiag=$(ls diag*conv* | wc -l) +if [ $countdiag -gt $nens ]; then + + if [ ${ob_type} == "conv" ]; then +${APRUN} $enkfworkdir/enkf.x < enkf.nml 1>${stdout_name} 2>${stderr_name} || print_err_msg_exit "\ +Call to executable to run EnKF returned with nonzero exit code." + + +cp_vrfy ${stdout_name} ${enkfanal_nwges_dir}/. +cp_vrfy ${stderr_name} ${enkfanal_nwges_dir}/. +if [ ! -d ${NWGES_DIR}/../enkf_diag ]; then + mkdir -p ${NWGES_DIR}/../enkf_diag +fi +cp_vrfy ${stdout_name} ${NWGES_DIR}/../enkf_diag/${stdout_name}.$vlddate +cp_vrfy ${stderr_name} ${NWGES_DIR}/../enkf_diag/${stderr_name}.$vlddate + else +${APRUN} $enkfworkdir/enkf.x < enkf.nml 1>${stdout_name} 2>${stderr_name} || print_err_msg_exit "\ +Call to executable to run EnKF returned with nonzero exit code." + echo "Warning: EnKF dbz analysis due to lack of ${ob_type} obs for cycle $vlddate !!!" + fi + +else + echo "Warning: EnKF not running due to lack of ${ob_type} obs for cycle $vlddate !!!" +fi + +print_info_msg " +======================================================================== +EnKF PROCESS completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 diff --git a/scripts/exregional_run_fcst.sh b/scripts/exregional_run_fcst.sh index e712fb2b5..2ccb60c6d 100755 --- a/scripts/exregional_run_fcst.sh +++ b/scripts/exregional_run_fcst.sh @@ -1,5 +1,4 @@ #!/bin/bash - # #----------------------------------------------------------------------- # @@ -9,6 +8,7 @@ # . ${GLOBAL_VAR_DEFNS_FP} . $USHDIR/source_util_funcs.sh +. $USHDIR/set_FV3nml_ens_stoch_seeds.sh # #----------------------------------------------------------------------- # @@ -17,6 +17,7 @@ #----------------------------------------------------------------------- # . $USHDIR/create_model_configure_file.sh +. $USHDIR/create_diag_table_file.sh # #----------------------------------------------------------------------- # @@ -65,9 +66,14 @@ specified cycle. # valid_args=( \ "cdate" \ +"cycle_type" \ +"cycle_subtype" \ "cycle_dir" \ +"gridspec_dir" \ "ensmem_indx" \ "slash_ensmem_subdir" \ +"NWGES_BASEDIR" \ +"RESTART_HRS" \ ) process_args valid_args "$@" # @@ -89,41 +95,56 @@ print_input_args valid_args # case $MACHINE in - "WCOSS_CRAY") - ulimit -s unlimited - ulimit -a - - if [ ${PE_MEMBER01} -gt 24 ];then - APRUN="aprun -b -j1 -n${PE_MEMBER01} -N24 -d1 -cc depth" - else - APRUN="aprun -b -j1 -n24 -N24 -d1 -cc depth" - fi - ;; - - "WCOSS_DELL_P3") + "WCOSS2") ulimit -s unlimited ulimit -a - APRUN="mpirun -l -np ${PE_MEMBER01}" +# export OMP_PROC_BIND=true + export OMP_NUM_THREADS=2 + export OMP_STACKSIZE=1G +# export OMP_PLACES=cores + export MPICH_ABORT_ON_ERROR=1 + export MALLOC_MMAP_MAX_=0 + export MALLOC_TRIM_THRESHOLD_=134217728 +# export FORT_FMT_NO_WRAP_MARGIN=true + export MPICH_REDUCE_NO_SMP=1 + export FOR_DISABLE_KMP_MALLOC=TRUE + export FI_OFI_RXM_RX_SIZE=40000 + export FI_OFI_RXM_TX_SIZE=40000 + export MPICH_OFI_STARTUP_CONNECT=1 + export MPICH_OFI_VERBOSE=1 + export MPICH_OFI_NIC_VERBOSE=1 + #ncores=$(( NNODES_RUN_FCST*PPN_RUN_FCST)) + ncores=${PE_MEMBER01} + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_FCST} --cpu-bind core --depth ${OMP_NUM_THREADS}" ;; "HERA") ulimit -s unlimited ulimit -a - APRUN="srun" - OMP_NUM_THREADS=4 + APRUN="srun --mem=0" + if [ "${PREDEF_GRID_NAME}" == "RRFS_NA_3km" ]; then + OMP_NUM_THREADS=4 + else + OMP_NUM_THREADS=2 + fi ;; "ORION") ulimit -s unlimited ulimit -a APRUN="srun" + OMP_NUM_THREADS=1 ;; "JET") ulimit -s unlimited ulimit -a - APRUN="srun" - OMP_NUM_THREADS=4 + APRUN="srun --mem=0" + if [ "${PREDEF_GRID_NAME}" == "RRFS_NA_3km" ]; then + OMP_NUM_THREADS=4 + else + OMP_NUM_THREADS=2 + fi ;; "ODIN") @@ -159,7 +180,7 @@ esac # #----------------------------------------------------------------------- # -run_dir="${cycle_dir}${slash_ensmem_subdir}" +run_dir="${cycle_dir}" # #----------------------------------------------------------------------- # @@ -179,13 +200,9 @@ the grid and (filtered) orography files ..." cd_vrfy ${run_dir}/INPUT relative_or_null="" -if [ "${RUN_TASK_MAKE_GRID}" = "TRUE" ] && [ "${MACHINE}" != "WCOSS_CRAY" ]; then - relative_or_null="--relative" -fi # Symlink to mosaic file with a completely different name. -#target="${FIXLAM}/${CRES}${DOT_OR_USCORE}mosaic.halo${NH4}.nc" # Should this point to this halo4 file or a halo3 file??? -target="${FIXLAM}/${CRES}${DOT_OR_USCORE}mosaic.halo${NH3}.nc" # Should this point to this halo4 file or a halo3 file??? +target="${FIXLAM}/${CRES}${DOT_OR_USCORE}mosaic.halo${NH3}.nc" # must use *mosaic.halo3.nc symlink="grid_spec.nc" if [ -f "${target}" ]; then ln_vrfy -sf ${relative_or_null} $target $symlink @@ -244,9 +261,6 @@ fi relative_or_null="" -if [ "${RUN_TASK_MAKE_OROG}" = "TRUE" ] && [ "${MACHINE}" != "WCOSS_CRAY" ] ; then - relative_or_null="--relative" -fi # Symlink to halo-0 orography file with "${CRES}_" and "halo0" stripped from name. target="${FIXLAM}/${CRES}${DOT_OR_USCORE}oro_data.tile${TILE_RGNL}.halo${NH0}.nc" @@ -258,6 +272,7 @@ else Cannot create symlink because target does not exist: target = \"$target\"" fi + # # Symlink to halo-4 orography file with "${CRES}_" stripped from name. # @@ -281,16 +296,19 @@ Cannot create symlink because target does not exist: target = \"$target\"" fi - # -# If using the FV3_HRRR physics suite, there are two files (that contain -# statistics of the orography) that are needed by the gravity wave drag -# parameterization in that suite. Below, create symlinks to these files -# in the run directory. Note that the symlinks must have specific names +# If using the FV3_HRRR or FV3_RAP physics suites, there are two files +# (that contain statistics of the orography) that are needed by the gravity +# wave drag parameterization in that suite. Below, create symlinks to these +# files in the run directory. Note that the symlinks must have specific names # that the FV3 model is hardcoded to recognize, and those are the names # we use below. # -if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ]; then +if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR_gf" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_RAP" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_GFS_v15_thompson_mynn_lam3km" ]; then + fileids=( "ss" "ls" ) for fileid in "${fileids[@]}"; do @@ -332,30 +350,88 @@ of the current run directory (run_dir), where run_dir = \"${run_dir}\" ..." +BKTYPE=1 # cold start using INPUT +if [ -r ${run_dir}/INPUT/coupler.res ] ; then + BKTYPE=0 # cycling using RESTART +fi +print_info_msg "$VERBOSE" " +The forecast has BKTYPE $BKTYPE (1:cold start ; 0 cycling)" + cd_vrfy ${run_dir}/INPUT #ln_vrfy -sf gfs_data.tile${TILE_RGNL}.halo${NH0}.nc gfs_data.nc #ln_vrfy -sf sfc_data.tile${TILE_RGNL}.halo${NH0}.nc sfc_data.nc relative_or_null="" -target="gfs_data.tile${TILE_RGNL}.halo${NH0}.nc" +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +if [ ${BKTYPE} -eq 1 ]; then + target="gfs_data.tile${TILE_RGNL}.halo${NH0}.nc" +else + target="fv_core.res.tile1.nc" +fi symlink="gfs_data.nc" -if [ -f "${target}" ]; then - ln_vrfy -sf ${relative_or_null} $target $symlink +if [ -f "${target}.0000" ]; then + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + if [ -f "${target}.${iii}" ]; then + ln_vrfy -sf ${relative_or_null} $target.${iii} $symlink.${iii} + else + print_err_msg_exit "\ + Cannot create symlink because target does not exist: + target = \"$target.$iii\"" + fi + done else - print_err_msg_exit "\ -Cannot create symlink because target does not exist: - target = \"$target\"" + if [ -f "${target}" ]; then + ln_vrfy -sf ${relative_or_null} $target $symlink + else + print_err_msg_exit "\ + Cannot create symlink because target does not exist: + target = \"$target\"" + fi fi -target="sfc_data.tile${TILE_RGNL}.halo${NH0}.nc" -symlink="sfc_data.nc" -if [ -f "${target}" ]; then - ln_vrfy -sf ${relative_or_null} $target $symlink +if [ ${BKTYPE} -eq 1 ]; then + target="sfc_data.tile${TILE_RGNL}.halo${NH0}.nc" + symlink="sfc_data.nc" + if [ -f "${target}" ]; then + ln_vrfy -sf ${relative_or_null} $target $symlink + else + print_err_msg_exit "\ + Cannot create symlink because target does not exist: + target = \"$target\"" + fi else - print_err_msg_exit "\ -Cannot create symlink because target does not exist: - target = \"$target\"" + if [ -f "sfc_data.nc.0000" ] || [ -f "sfc_data.nc" ]; then + print_info_msg "$VERBOSE" " + sfc_data.nc is available at INPUT directory" + else + print_err_msg_exit "\ + sfc_data.nc is not available for cycling" + fi +fi + +# +if [ "${DO_SMOKE_DUST}" = "TRUE" ]; then + ln_vrfy -snf ${FIX_SMOKE_DUST}/${PREDEF_GRID_NAME}/dust12m_data.nc ${run_dir}/INPUT/dust12m_data.nc + ln_vrfy -snf ${FIX_SMOKE_DUST}/${PREDEF_GRID_NAME}/emi_data.nc ${run_dir}/INPUT/emi_data.nc + yyyymmddhh=${cdate:0:10} + echo ${yyyymmddhh} + if [ ${cycle_type} == "spinup" ]; then + smokefile=${NWGES_BASEDIR}/RAVE_INTP/SMOKE_RRFS_data_${yyyymmddhh}00_spinup.nc + else + smokefile=${NWGES_BASEDIR}/RAVE_INTP/SMOKE_RRFS_data_${yyyymmddhh}00.nc + fi + echo "try to use smoke file=",${smokefile} + if [ -f ${smokefile} ]; then + ln_vrfy -snf ${smokefile} ${run_dir}/INPUT/SMOKE_RRFS_data.nc + else + ln_vrfy -snf ${FIX_SMOKE_DUST}/${PREDEF_GRID_NAME}/dummy_24hr_smoke.nc ${run_dir}/INPUT/SMOKE_RRFS_data.nc + echo "smoke file is not available, use dummy_24hr_smoke.nc instead" + fi fi # #----------------------------------------------------------------------- @@ -377,9 +453,6 @@ static) files in the FIXam directory: run_dir = \"${run_dir}\"" relative_or_null="" -if [ "${RUN_ENVIR}" != "nco" ] && [ "${MACHINE}" != "WCOSS_CRAY" ] ; then - relative_or_null="--relative" -fi regex_search="^[ ]*([^| ]+)[ ]*[|][ ]*([^| ]+)[ ]*$" num_symlinks=${#CYCLEDIR_LINKS_TO_FIXam_FILES_MAPPING[@]} @@ -402,6 +475,9 @@ for (( i=0; i<${num_symlinks}; i++ )); do fi done + +ln_vrfy -sf ${relative_or_null} ${FIXam}/optics_??.dat ${run_dir} +ln_vrfy -sf ${relative_or_null} ${FIXam}/aeroclim.m??.nc ${run_dir} # #----------------------------------------------------------------------- # @@ -427,18 +503,53 @@ Creating links in the current run directory to cycle-independent model input files in the main experiment directory..." relative_or_null="" -if [ "${RUN_ENVIR}" != "nco" ] && [ "${MACHINE}" != "WCOSS_CRAY" ] ; then - relative_or_null="--relative" -fi ln_vrfy -sf ${relative_or_null} ${DATA_TABLE_FP} ${run_dir} ln_vrfy -sf ${relative_or_null} ${FIELD_TABLE_FP} ${run_dir} ln_vrfy -sf ${relative_or_null} ${NEMS_CONFIG_FP} ${run_dir} +ln_vrfy -sf ${relative_or_null} ${NEMS_YAML_FP} ${run_dir} -if [ "${DO_ENSEMBLE}" = TRUE ]; then - ln_vrfy -sf ${relative_or_null} "${FV3_NML_ENSMEM_FPS[$(( 10#${ensmem_indx}-1 ))]}" ${run_dir}/${FV3_NML_FN} +# +# Determine if running stochastic physics for the specified cycles in CYCL_HRS_STOCH +# +STOCH="FALSE" +if [ "${DO_ENSEMBLE}" = TRUE ] && ([ "${DO_SPP}" = TRUE ] || [ "${DO_SPPT}" = TRUE ] || [ "${DO_SHUM}" = TRUE ] \ + || [ "${DO_SKEB}" = TRUE ] || [ "${DO_LSM_SPP}" = TRUE ]); then + for cyc_start in "${CYCL_HRS_STOCH[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + STOCH="TRUE" + fi + done +fi + +if [ ${BKTYPE} -eq 0 ]; then + # cycling, using namelist for cycling forecast + if [ "${STOCH}" == "TRUE" ]; then + cp_vrfy ${FV3_NML_RESTART_STOCH_FP} ${run_dir}/${FV3_NML_FN} + else + cp_vrfy ${FV3_NML_RESTART_FP} ${run_dir}/${FV3_NML_FN} + fi else - ln_vrfy -sf ${relative_or_null} ${FV3_NML_FP} ${run_dir} + if [ -f "INPUT/cycle_surface.done" ]; then + # namelist for cold start with surface cycle + cp_vrfy ${FV3_NML_CYCSFC_FP} ${run_dir}/${FV3_NML_FN} + else + # cold start, using namelist for cold start + if [ "${STOCH}" == "TRUE" ]; then + cp_vrfy ${FV3_NML_STOCH_FP} ${run_dir}/${FV3_NML_FN} + else + cp_vrfy ${FV3_NML_FP} ${run_dir}/${FV3_NML_FN} + fi + fi +fi + +if [ "${STOCH}" == "TRUE" ]; then + cp ${run_dir}/${FV3_NML_FN} ${run_dir}/${FV3_NML_FN}_base + set_FV3nml_ens_stoch_seeds cdate="$cdate" || print_err_msg_exit "\ + Call to function to create the ensemble-based namelist for the current + cycle's (cdate) run directory (run_dir) failed: + cdate = \"${cdate}\" + run_dir = \"${run_dir}\"" fi # #----------------------------------------------------------------------- @@ -450,43 +561,60 @@ fi # create_model_configure_file \ cdate="$cdate" \ + cycle_type="$cycle_type" \ + cycle_subtype="$cycle_subtype" \ + run_dir="${run_dir}" \ nthreads=${OMP_NUM_THREADS:-1} \ - run_dir="${run_dir}" || print_err_msg_exit "\ + restart_hrs="${RESTART_HRS}" || print_err_msg_exit "\ Call to function to create a model configuration file for the current cycle's (cdate) run directory (run_dir) failed: cdate = \"${cdate}\" run_dir = \"${run_dir}\"" + # #----------------------------------------------------------------------- # -# If running ensemble forecasts, create a link to the cycle-specific -# diagnostic tables file in the cycle directory. Note that this link -# should not be made if not running ensemble forecasts because in that -# case, the cycle directory is the run directory (and we would be creating -# a symlink with the name of a file that already exists). -# -#----------------------------------------------------------------------- -# -if [ "${DO_ENSEMBLE}" = "TRUE" ]; then - if [ "${MACHINE}" = "WCOSS_CRAY" ]; then - relative_or_null="" - else - relative_or_null="--relative" - fi - diag_table_fp="${cycle_dir}/${DIAG_TABLE_FN}" - ln_vrfy -sf ${relative_or_null} ${diag_table_fp} ${run_dir} -fi +# Call the function that creates the model configuration file within each +# cycle directory. # #----------------------------------------------------------------------- # -# Set and export variables. +create_diag_table_file \ + run_dir="${run_dir}" || print_err_msg_exit "\ + Call to function to create a diag table file for the current. +cycle's (cdate) run directory (run_dir) failed: + run_dir = \"${run_dir}\"" + # #----------------------------------------------------------------------- # +export KMP_AFFINITY=${KMP_AFFINITY:-scatter} export KMP_AFFINITY=scatter export OMP_NUM_THREADS=${OMP_NUM_THREADS:-1} #Needs to be 1 for dynamic build of CCPP with GFDL fast physics, was 2 before. -export OMP_STACKSIZE=1024m +export OMP_STACKSIZE=${OMP_STACKSIZE:-1024m} +# +#----------------------------------------------------------------------- +# +# If INPUT/phy_data.nc exists, convert it from NetCDF4 to NetCDF3 +# (happens for cycled runs, not cold-started) +# +#----------------------------------------------------------------------- +# +if [[ -f phy_data.nc ]] ; then + echo "convert phy_data.nc from NetCDF4 to NetCDF3" + cd INPUT + rm -f phy_data.nc3 phy_data.nc4 + cp -fp phy_data.nc phy_data.nc4 + if ( ! time ( module purge ; module load intel szip hdf5 netcdf nco ; module list ; set -x ; ncks -3 --64 phy_data.nc4 phy_data.nc3) ) ; then + mv -f phy_data.nc4 phy_data.nc + rm -f phy_data.nc3 + echo "NetCDF 4=>3 conversion failed. :-( Continuing with NetCDF 4 data." + else + mv -f phy_data.nc3 phy_data.nc + fi + cd .. +fi # #----------------------------------------------------------------------- # @@ -498,7 +626,19 @@ export OMP_STACKSIZE=1024m # #----------------------------------------------------------------------- # -$APRUN ${FV3_EXEC_FP} || print_err_msg_exit "\ +# Copy the executable to the run directory. +if [ -f ${FV3_EXEC_FP} ]; then + print_info_msg "$VERBOSE" " + Copying the fv3lam executable to the run directory..." + cp_vrfy ${FV3_EXEC_FP} ${run_dir}/ufs_model +else + print_err_msg_exit "\ + The GSI executable specified in FV3_EXEC_FP does not exist: + FV3_EXEC_FP = \"$FV3_EXEC_FP\" + Build FV3LAM and rerun." +fi + +$APRUN ${run_dir}/ufs_model || print_err_msg_exit "\ Call to executable to run FV3-LAM forecast returned with nonzero exit code." # @@ -518,6 +658,26 @@ In directory: \"${scrfunc_dir}\" # #----------------------------------------------------------------------- # +# Save grid_spec files for restart subdomain. +# +#----------------------------------------------------------------------- +# +if [ ${BKTYPE} -eq 1 ] && [ ${n_iolayouty} -ge 1 ]; then + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + if [ -f "grid_spec.nc.${iii}" ]; then + cp_vrfy grid_spec.nc.${iii} ${gridspec_dir}/fv3_grid_spec.${iii} + else + print_err_msg_exit "\ + Cannot create symlink because target does not exist: + target = \"grid_spec.nc.$iii\"" + fi + done +fi +# +#----------------------------------------------------------------------- +# # Restore the shell options saved at the beginning of this script/func- # tion. # diff --git a/scripts/exregional_run_gsidiag.sh b/scripts/exregional_run_gsidiag.sh new file mode 100755 index 000000000..74036057e --- /dev/null +++ b/scripts/exregional_run_gsidiag.sh @@ -0,0 +1,350 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "gsi_type" "mem_type" "analworkdir" \ + "observer_nwges_dir" "comout" \ + "satbias_dir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=1G + export OMP_NUM_THREADS=1 + ncores=$(( NNODES_RUN_GSIDIAG*PPN_RUN_GSIDIAG)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_GSIDIAG} --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + export OMP_NUM_THREADS=2 + export OMP_STACKSIZE=1024M + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +# +#----------------------------------------------------------------------- +# +# go to working directory. +# define fix and background path +# +#----------------------------------------------------------------------- + +cd_vrfy ${analworkdir} + +#----------------------------------------------------------------------- +# skip if gsi_type is OBSERVER +#----------------------------------------------------------------------- +if [ ${gsi_type} == "OBSERVER" ]; then + echo "Observer should not run this job" + exit 0 +fi +#----------------------------------------------------------------------- +# Loop over first and last outer loops to generate innovation +# diagnostic files for indicated observation types (groups) +# +# NOTE: Since we set miter=2 in GSI namelist SETUP, outer +# loop 03 will contain innovations with respect to +# the analysis. Creation of o-a innovation files +# is triggered by write_diag(3)=.true. The setting +# write_diag(1)=.true. turns on creation of o-g +# innovation files. +#----------------------------------------------------------------------- +# + +netcdf_diag=${netcdf_diag:-".false."} +binary_diag=${binary_diag:-".true."} + +if [ ${cycle_type} == "spinup" ]; then + analworkname="_gsi_spinup" +else + analworkname="_gsi" +fi + +analworkdir_conv="${cycle_dir}/anal_conv${analworkname}" +analworkdir_dbz="${cycle_dir}/anal_radardbz${analworkname}" + +loops="01 02 03" +for loop in $loops; do + +case $loop in + 01) string=ges;; + 02) string=02;; + 03) string=anl;; + *) string=$loop;; +esac + +# Collect diagnostic files for obs types (groups) below +numfile_rad_bin=0 +numfile_dbz_bin=0 +numfile_cnv=0 +numfile_rad=0 +numfile_dbz=0 +if [ $binary_diag = ".true." ]; then + listall="hirs2_n14 msu_n14 sndr_g08 sndr_g11 sndr_g11 sndr_g12 sndr_g13 sndr_g08_prep sndr_g11_prep sndr_g12_prep sndr_g13_prep sndrd1_g11 sndrd2_g11 sndrd3_g11 sndrd4_g11 sndrd1_g15 sndrd2_g15 sndrd3_g15 sndrd4_g15 sndrd1_g13 sndrd2_g13 sndrd3_g13 sndrd4_g13 hirs3_n15 hirs3_n16 hirs3_n17 amsua_n15 amsua_n16 amsua_n17 amsua_n18 amsua_n19 amsua_metop-a amsua_metop-b amsua_metop-c amsub_n15 amsub_n16 amsub_n17 hsb_aqua airs_aqua amsua_aqua imgr_g08 imgr_g11 imgr_g12 pcp_ssmi_dmsp pcp_tmi_trmm conv sbuv2_n16 sbuv2_n17 sbuv2_n18 omi_aura ssmi_f13 ssmi_f14 ssmi_f15 hirs4_n18 hirs4_metop-a mhs_n18 mhs_n19 mhs_metop-a mhs_metop-b mhs_metop-c amsre_low_aqua amsre_mid_aqua amsre_hig_aqua ssmis_las_f16 ssmis_uas_f16 ssmis_img_f16 ssmis_env_f16 iasi_metop-a iasi_metop-b iasi_metop-c seviri_m08 seviri_m09 seviri_m10 seviri_m11 cris_npp atms_npp ssmis_f17 cris-fsr_npp cris-fsr_n20 atms_n20 abi_g16 abi_g17" + if [ -r ${analworkdir_conv} ]; then + cd ${analworkdir_conv} + + for type in $listall; do + count=$(ls pe*.${type}_${loop} | wc -l) + if [[ $count -gt 0 ]]; then + $(cat pe*.${type}_${loop} > diag_${type}_${string}.${YYYYMMDDHH}) + echo "diag_${type}_${string}.${YYYYMMDDHH}" >> listrad_bin + numfile_rad_bin=`expr ${numfile_rad_bin} + 1` + fi + done + fi + + listall="radardbz" + if [ -r ${analworkdir_dbz} ]; then + cd ${analworkdir_dbz} + + for type in $listall; do + count=$(ls pe*.${type}_${loop} | wc -l) + if [[ $count -gt 0 ]]; then + $(cat pe*.${type}_${loop} > diag_${type}_${string}.${YYYYMMDDHH}) + echo "diag_${type}_${string}.${YYYYMMDDHH}" >> listdbz_bin + numfile_dbz_bin=`expr ${numfile_dbz_bin} + 1` + fi + done + fi +fi + +if [ $netcdf_diag = ".true." ]; then + nc_diag_cat="nc_diag_cat.x" + listall_cnv="conv_ps conv_q conv_t conv_uv conv_pw conv_rw conv_sst" + listall_rad="hirs2_n14 msu_n14 sndr_g08 sndr_g11 sndr_g11 sndr_g12 sndr_g13 sndr_g08_prep sndr_g11_prep sndr_g12_prep sndr_g13_prep sndrd1_g11 sndrd2_g11 sndrd3_g11 sndrd4_g11 sndrd1_g15 sndrd2_g15 sndrd3_g15 sndrd4_g15 sndrd1_g13 sndrd2_g13 sndrd3_g13 sndrd4_g13 hirs3_n15 hirs3_n16 hirs3_n17 amsua_n15 amsua_n16 amsua_n17 amsua_n18 amsua_n19 amsua_metop-a amsua_metop-b amsua_metop-c amsub_n15 amsub_n16 amsub_n17 hsb_aqua airs_aqua amsua_aqua imgr_g08 imgr_g11 imgr_g12 pcp_ssmi_dmsp pcp_tmi_trmm conv sbuv2_n16 sbuv2_n17 sbuv2_n18 omi_aura ssmi_f13 ssmi_f14 ssmi_f15 hirs4_n18 hirs4_metop-a mhs_n18 mhs_n19 mhs_metop-a mhs_metop-b mhs_metop-c amsre_low_aqua amsre_mid_aqua amsre_hig_aqua ssmis_las_f16 ssmis_uas_f16 ssmis_img_f16 ssmis_env_f16 iasi_metop-a iasi_metop-b iasi_metop-c seviri_m08 seviri_m09 seviri_m10 seviri_m11 cris_npp atms_npp ssmis_f17 cris-fsr_npp cris-fsr_n20 atms_n20 abi_g16" + + if [ -r ${analworkdir_conv} ]; then + cd ${analworkdir_conv} + + for type in $listall_cnv; do + count=$(ls pe*.${type}_${loop}.nc4 | wc -l) + if [[ $count -gt 0 ]]; then + ${APRUN} ${nc_diag_cat} -o diag_${type}_${string}.${YYYYMMDDHH}.nc4 pe*.${type}_${loop}.nc4 + cp diag_${type}_${string}.${YYYYMMDDHH}.nc4 $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}.nc4*" >> listcnv + numfile_cnv=`expr ${numfile_cnv} + 1` + fi + done + + for type in $listall_rad; do + count=$(ls pe*.${type}_${loop}.nc4 | wc -l) + if [[ $count -gt 0 ]]; then + ${APRUN} ${nc_diag_cat} -o diag_${type}_${string}.${YYYYMMDDHH}.nc4 pe*.${type}_${loop}.nc4 + cp diag_${type}_${string}.${YYYYMMDDHH}.nc4 $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}.nc4*" >> listrad + numfile_rad=`expr ${numfile_rad} + 1` + else + echo 'No diag_' ${type} 'exist' + fi + done + fi + + listall="conv_dbz" + if [ -r ${analworkdir_dbz} ]; then + cd ${analworkdir_dbz} + + for type in $listall; do + count=$(ls pe*.${type}_${loop}.nc4 | wc -l) + if [[ $count -gt 0 ]]; then + ${APRUN} ${nc_diag_cat} -o diag_${type}_${string}.${YYYYMMDDHH}.nc4 pe*.${type}_${loop}.nc4 + cp diag_${type}_${string}.${YYYYMMDDHH}.nc4 $comout + echo "diag_${type}_${string}.${YYYYMMDDHH}.nc4*" >> listdbz + numfile_dbz=`expr ${numfile_dbz} + 1` + fi + done + fi +fi + +done + +# +#----------------------------------------------------------------------- +# +# cycling radiance bias corretion files +# +#----------------------------------------------------------------------- + +if [ ${DO_RADDA} == "TRUE" ]; then + if [ ${cycle_type} == "spinup" ]; then + spinup_or_prod_rrfs=spinup + else + spinup_or_prod_rrfs=prod + fi + + if [ -r ${analworkdir_conv} ]; then + cd ${analworkdir_conv} + + if [ ${numfile_cnv} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat_nc `cat listcnv` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat_nc ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_cnvstat + fi + if [ ${numfile_rad} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat_nc `cat listrad` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat_nc ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat + fi + if [ ${numfile_rad_bin} -gt 0 ]; then + tar -cvzf rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat `cat listrad_bin` + cp_vrfy ./rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_radstat + fi + + # For EnVar DA + cp_vrfy ./satbias_out ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias + cp_vrfy ./satbias_pc.out ${satbias_dir}/rrfs.${spinup_or_prod_rrfs}.${YYYYMMDDHH}_satbias_pc + fi + +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +GSI diag completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_maxrh.ksh b/scripts/exregional_run_maxrh.ksh new file mode 100755 index 000000000..ad42479e4 --- /dev/null +++ b/scripts/exregional_run_maxrh.ksh @@ -0,0 +1,252 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" + +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"postprd_dir" \ +"comout" \ +"comout_ges" \ +"fixminmax" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +# +#----------------------------------------------------------------------- +# +# A separate ${post_fhr} forecast hour variable is required for the post +# files, since they may or may not be three digits long, depending on the +# length of the forecast. +# +#----------------------------------------------------------------------- +# + +DATA=$postprd_dir +export DATA=$postprd_dir +DATAmaxrh=$DATA/maxrh_${fhr} +mkdir $DATAmaxrh + +cd $DATAmaxrh + +grids=hrrr +gridsarray=($grids) +num=${#gridsarray[@]} + +#typeset Z2 hr one + +if [[ $num -gt 10 ]] ; then + echo "FATAL ERROR: Only ten grid naems may be specified. User specified ${num}." + exit +fi + +#generate namelist input file, make sure that no grid in same domain is repeated twice +#also copy into workspace template files +Tur=no; Tak=no; Tpr=no; Thi=no; Tgu=no +echo "&gridsinfo" > gridsinfo_input +echo " grids=${num}" >> gridsinfo_input +nn=0 +while [[ $nn -lt $num ]] ; do + let nnp1="nn+1" + dname=${gridsarray[$nn]} + echo " gridnames($nnp1)=${dname}," >> gridsinfo_input + Tur=yes + run=rtma3d + Tur=yes + CYCLE=${PDY}1800 + CYCLE_STOP=${PDY}0600 + + hr=1 #hour number to go in output (from wgrib2) file name + one=1 + while [[ $CYCLE -ge $CYCLE_STOP ]] ; do + + YYYY=`echo $CYCLE | cut -c 1-4` + YYYYMM=`echo $CYCLE | cut -c 1-6` + YYYYMMDD=`echo $CYCLE | cut -c 1-8` + HH=`echo $CYCLE | cut -c 9-10` + + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + if [[ ${run} = "rtma3d" ]] ; then + if [[ $dname == "hrrr" ]] ; then + opsfile=${COMOUT_BASEDIR}/RTMA_NA.${YYYYMMDD}/${HH}/rtma.t${HH}z.prslev.f000.hrrr.grib2 + gesfile=${COMOUT_BASEDIR_ges}/rrfs.${YYYYMMDD}/${HH}/rrfs.t${HH}z.prslev.f012.conus_3km.grib2 + if [[ ! -e $opsfile ]] ; then + opsfile=$gesfile + fi + fi + fi + #now use wgrib2 to pull ges/analysis from the file + #use run in binary filename, regardless of grid + if [[ -s $gesfile ]] ; then + if [ $hr -le 9 ]; then + tmpops=${run}_temp_anl_hour_0${hr}.bin + tmpges=${run}_temp_ges_hour_0${hr}.bin + dptops=${run}_dwpt_anl_hour_0${hr}.bin + dptges=${run}_dwpt_ges_hour_0${hr}.bin + else + tmpops=${run}_temp_anl_hour_${hr}.bin + tmpges=${run}_temp_ges_hour_${hr}.bin + dptops=${run}_dwpt_anl_hour_${hr}.bin + dptges=${run}_dwpt_ges_hour_${hr}.bin + fi + wgrib2 $opsfile -match ":TMP:2 m above ground:" -ieee $tmpops + wgrib2 $gesfile -match ":TMP:2 m above ground:" -ieee $tmpges + wgrib2 $opsfile -match ":DPT:2 m above ground:" -ieee $dptops + wgrib2 $gesfile -match ":DPT:2 m above ground:" -ieee $dptges + else + echo "WARNING: ${run} file unavailable for ${CYCLE}!"; + fi + CYCLE=`$MDATE -60 $CYCLE` + hr=$(( $hr + $one )) + if [ ${HH} -eq 06 ] ; then + if [[ ${run} == "rtma3d" ]] ; then + cp $gesfile gesfileus.grb2 + fi + fi + +done #$CYCLE -le $CYCLE_STOP (number of cycles to run) + + let nn="$nn+1" +done #$nn -lt $num (number of grids) + + +echo "/" >> gridsinfo_input + +#make blend? 1=bgs only 2=anls only, 3=both +export bnum=2 +cat < blend_input +&blendinput +bnum=${bnum} +/ +EOF + +#. prep_step + +ln -sf ${run}.${PDYm1}.maxrh_anl.dat fort.61 +ln -sf ${run}.${PDYm1}.maxrh_bg.dat fort.62 + +export pgm=rtma_maxrh +#startmsg +${EXECDIR}/rtma3d_maxrh > stdout 2>&1 +export err=$? + +#wgrib2 options: -set_byte 4 48 1 ensures we are dealing with succession of analyses +#-set_byte 4 47 3 ensures we are dealing with maximum value +#-set_date ${PDY}18 - must be start time, not end time + +if [[ $Tur = yes ]] ; then + if [[ $bnum -eq "2" || $bnum -eq "3" ]] ; then + if [ -s $DATAmaxrh/${run}.${PDYm1}.maxrh_anl.dat ] ; then + wgrib2 $DATAmaxrh/gesfileus.grb2 -match ":RH:" -grib_out $DATAmaxrh/tempgribus.grb2 + wgrib2 $DATAmaxrh/tempgribus.grb2 -import_ieee rtma3d.${PDYm1}.maxrh_anl.dat -set_date ${PDYm1}18 -set_var MAXRH -set_ftime '12 hour fcst' -undefine_val 0 -grib_out $DATAmaxrh/${run}.${PDYm1}.maxRH.grb2 + cp $DATAmaxrh/${run}.${PDYm1}.maxrh_anl.dat $DATAmaxrh/${run}.${PDYm1}.maxrh_anl.dat + cp $DATAmaxrh/${run}.${PDYm1}.maxRH.grb2 ${comout}/rtma3d.maxRH.grib2 + else + echo "WARNING: CONUS Min RH analysis not available from main program!" + fi + fi + if [[ $bnum -eq "1" || $bnum -eq "3" ]] ; then + if [ -s $DATAmaxrh/${run}..${PDYm1}.maxrh_bg.dat ] ; then + wgrib2 $DATAmaxrh/gesfileus.grb2 -match ":RH:" -grib_out $DATAmaxrh/tempgribus.grb2 + wgrib2 $DATAmaxrh/tempgribus.grb2 -import_ieee rtma3d.${PDYm1}.maxrh_bg.dat -set_date ${PDYm1}18 -set_var MAXRH -set_ftime '12 hour fcst' -undefine_val 0 -grib_out $DATAmaxrh/${run}.${PDYm1}.maxRH.grb2 + cp $DATAmaxrh/${run}.${PDYm1}.maxrh_bg.dat $DATAmaxrh/${run}.${PDYm1}.maxrh_bg.dat + cp $DATAmaxrh/${run}.${PDYm1}.maxRH.grb2 ${comout}/rtma3d.maxRH.grib2 + else + echo "WARNING: CONUS Min RH background no available from main program!" + fi + fi +fi + + + + + +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Post-processing for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 diff --git a/scripts/exregional_run_maxtbg.ksh b/scripts/exregional_run_maxtbg.ksh new file mode 100755 index 000000000..dede50f3f --- /dev/null +++ b/scripts/exregional_run_maxtbg.ksh @@ -0,0 +1,236 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"postprd_dir" \ +"comout" \ +"comout_ges" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# +#----------------------------------------------------------------------- +# +#----------------------------------------------------------------------- +# +# A separate ${post_fhr} forecast hour variable is required for the post +# files, since they may or may not be three digits long, depending on the +# length of the forecast. +# +#----------------------------------------------------------------------- +# +DATA=$postprd_dir +export DATA=$postprd_dir +DATAmaxt=$DATA/maxt_${fhr} +mkdir $DATAmaxt + +cd $DATAmaxt + +grids=hrrr +gridsarray=($grids) +num=${#gridsarray[@]} + +if [[ $num -gt 10 ]] ; then + echo "Only ten grid names may be specified. User specified ${num}." + exit +fi + + +#generate namelist input file, make sure that no grid in same domain is repeated twice +Tur=no; Tak=no; Tpr=no; Thi=no; Tgu=no +echo "&gridsinfo" > gridsinfo_input +echo " grids=${num}" >> gridsinfo_input +nn=0 +while [[ $nn -lt $num ]] ; do + let nnp1="nn+1" + dname=${gridsarray[$nn]} + echo " gridnames($nnp1)=${dname}," >> gridsinfo_input + if [[ $dname = "cohreswexp" || $dname = "cohresext" || $dname = "cohres" || $dname = "rtma2p5" || $dname = "hrrr" ]] ; then + if [[ $Tur = yes ]] ; then + echo "MULTIPLE GRIDS FROM URMA2P5 DOMAIN!" + exit + else + run="rtma3d" + Tur=yes + fi + else + echo "Domain name number ${nn} is invalid: $dname." + exit + fi + #now find and run wgrib2 on all the relevant files for that grid + CYCLE="${PDY}0600" + CYCLE_STOP="${PDYm1}0600" + + while [[ $CYCLE -ge $CYCLE_STOP ]]; do + + YYYYMMDD=`echo $CYCLE | cut -c 1-8` + HH=`echo $CYCLE | cut -c 9-10` + + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + if [[ $run = "rtma3d" ]] ; then + if [[ $dname == "hrrr" ]] ; then + opsfile=${COMOUT_BASEDIR}/RTMA_NA.${YYYYMMDD}/${HH}/rtma.t${HH}z.prslev.f000.hrrr.grib2 + gesfile=${COMOUT_BASEDIR_ges}/rrfs.${YYYYMMDD}/${HH}/rrfs.t${HH}z.prslev.f012.conus_3km.grib2 + if [[ ! -e $opsfile ]] ; then + opsfile=$gesfile + fi + fi + fi + #now use wgrib2 to pull ges/analysis from the file + #use run in binary filename, regardless of grid + if [[ -s $gesfile ]] ; then + opnew=${run}_anl_valid${HH}.bin + gesnew=${run}_ges_valid${HH}.bin + if [[ -s $gesnew ]] ; then + opnew=${run}_anl_valid${HH}_prevday.bin + gesnew=${run}_ges_valid${HH}_prevday.bin + fi + wgrib2 $gesfile -match ":TMP:2 m above ground:" -ieee $gesnew + wgrib2 $opsfile -match ":TMP:2 m above ground:" -ieee $opnew + else + echo "WARNING: ${RUN} file unavailable for ${CYCLE}!" + fi + + #get template grid for 20Z + + if [ ${HH} -eq 20 ] ; then + if [[ $run == "${run}" ]] ; then + cp $gesfile gesfileus.grb2 + fi + fi + + CYCLE=`$MDATE -60 $CYCLE` + done + let nn="$nn+1" +done +echo "/" >> gridsinfo_input +#in blend_input: 1=use bgs only, 2=use anls only, 3=use both +cat < blend_input +&blendinput +bnum=3 +/ +EOF + +#. prep_step + +export FORT71=${run}.${PDYm1}.maxt_diag_bg.dat +export FORT72=${run}.${PDYm1}.maxt_diag_anl.dat + +cp $FIX_MINMAX/aktz.bin . +cp $FIX_MINMAX/conusexttz.bin . +cp $FIX_MINMAX/conustz.bin . +cp $FIX_MINMAX/conustz_ndfdonly.bin . + +export pgm=rtma3d_maxtgb +#startmsg +${EXECDIR}/rtma3d_maxtbg > stdout 2>&1 +export err=$? +#cat $pgmout + +if [[ $Tur = yes ]]; then +if [ -s $DATAmaxt/maxt_${run}_bg.bin ] ; then + wgrib2 $DATAmaxt/gesfileus.grb2 -match ":TMP:" -grib_out $DATAmaxt/tempgribus.grb2 + wgrib2 $DATAmaxt/tempgribus.grb2 -import_ieee maxt_${run}_bg.bin -set_date "${PDY}08" -set_var TMAX -set_ftime "12 hour fcst" -undefine_val 0 -grib_out $DATAmaxt/${run}.${PDYm1}.maxT.grb2 + cp $DATAmaxt/maxt_${run}_bg.bin $DATAmaxt/rtma3d.${PDYm1}.maxT.bin + cp $DATAmaxt/${run}.${PDYm1}.maxT.grb2 $comout/rtma3d.maxT.grib2 +else + echo "URMA2P5 background was not generated or copied properly!" + exit +fi +fi + + +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Post-processing for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_minrh.ksh b/scripts/exregional_run_minrh.ksh new file mode 100755 index 000000000..9cdc7c40d --- /dev/null +++ b/scripts/exregional_run_minrh.ksh @@ -0,0 +1,252 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" + +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"postprd_dir" \ +"comout" \ +"comout_ges" \ +"fixminmax" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +# +#----------------------------------------------------------------------- +# +# A separate ${post_fhr} forecast hour variable is required for the post +# files, since they may or may not be three digits long, depending on the +# length of the forecast. +# +#----------------------------------------------------------------------- +# + +DATA=$postprd_dir +export DATA=$postprd_dir +DATAminrh=$DATA/minrh_${fhr} +mkdir $DATAminrh + +cd $DATAminrh + +grids=hrrr +gridsarray=($grids) +num=${#gridsarray[@]} + +#typeset Z2 hr one + +if [[ $num -gt 10 ]] ; then + echo "FATAL ERROR: Only ten grid naems may be specified. User specified ${num}." + exit +fi + +#generate namelist input file, make sure that no grid in same domain is repeated twice +#also copy into workspace template files +Tur=no; Tak=no; Tpr=no; Thi=no; Tgu=no +echo "&gridsinfo" > gridsinfo_input +echo " grids=${num}" >> gridsinfo_input +nn=0 +while [[ $nn -lt $num ]] ; do + let nnp1="nn+1" + dname=${gridsarray[$nn]} + echo " gridnames($nnp1)=${dname}," >> gridsinfo_input + Tur=yes + run=rtma3d + Tur=yes + CYCLE=${PDY}0600 + CYCLE_STOP=${PDYm1}1800 + + hr=1 #hour number to go in output (from wgrib2) file name + one=1 + while [[ $CYCLE -ge $CYCLE_STOP ]] ; do + + YYYY=`echo $CYCLE | cut -c 1-4` + YYYYMM=`echo $CYCLE | cut -c 1-6` + YYYYMMDD=`echo $CYCLE | cut -c 1-8` + HH=`echo $CYCLE | cut -c 9-10` + + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + if [[ ${run} = "rtma3d" ]] ; then + if [[ $dname == "hrrr" ]] ; then + opsfile=${COMOUT_BASEDIR}/RTMA_NA.${YYYYMMDD}/${HH}/rtma.t${HH}z.prslev.f000.hrrr.grib2 + gesfile=${COMOUT_BASEDIR_ges}/rrfs.${YYYYMMDD}/${HH}/rrfs.t${HH}z.prslev.f012.conus_3km.grib2 + if [[ ! -e $opsfile ]] ; then + opsfile=$gesfile + fi + fi + fi + #now use wgrib2 to pull ges/analysis from the file + #use run in binary filename, regardless of grid + if [[ -s $gesfile ]] ; then + if [ $hr -le 9 ]; then + tmpops=${run}_temp_anl_hour_0${hr}.bin + tmpges=${run}_temp_ges_hour_0${hr}.bin + dptops=${run}_dwpt_anl_hour_0${hr}.bin + dptges=${run}_dwpt_ges_hour_0${hr}.bin + else + tmpops=${run}_temp_anl_hour_${hr}.bin + tmpges=${run}_temp_ges_hour_${hr}.bin + dptops=${run}_dwpt_anl_hour_${hr}.bin + dptges=${run}_dwpt_ges_hour_${hr}.bin + fi + wgrib2 $opsfile -match ":TMP:2 m above ground:" -ieee $tmpops + wgrib2 $gesfile -match ":TMP:2 m above ground:" -ieee $tmpges + wgrib2 $opsfile -match ":DPT:2 m above ground:" -ieee $dptops + wgrib2 $gesfile -match ":DPT:2 m above ground:" -ieee $dptges + else + echo "WARNING: ${run} file unavailable for ${CYCLE}!"; + fi + CYCLE=`$MDATE -60 $CYCLE` + hr=$(( $hr + $one )) + if [ ${HH} -eq 06 ] ; then + if [[ ${run} == "rtma3d" ]] ; then + cp $gesfile gesfileus.grb2 + fi + fi + +done #$CYCLE -le $CYCLE_STOP (number of cycles to run) + + let nn="$nn+1" +done #$nn -lt $num (number of grids) + + +echo "/" >> gridsinfo_input + +#make blend? 1=bgs only 2=anls only, 3=both +export bnum=2 +cat < blend_input +&blendinput +bnum=${bnum} +/ +EOF + +#. prep_step + +ln -sf ${run}.${PDYm1}.minrh_anl.dat fort.61 +ln -sf ${run}.${PDYm1}.minrh_bg.dat fort.62 + +export pgm=rtma_minrh +#startmsg +${EXECDIR}/rtma3d_minrh > stdout 2>&1 +export err=$? + +#wgrib2 options: -set_byte 4 48 1 ensures we are dealing with succession of analyses +#-set_byte 4 47 3 ensures we are dealing with maximum value +#-set_date ${PDY}18 - must be start time, not end time + +if [[ $Tur = yes ]] ; then + if [[ $bnum -eq "2" || $bnum -eq "3" ]] ; then + if [ -s $DATAminrh/${run}.${PDYm1}.minrh_anl.dat ] ; then + wgrib2 $DATAminrh/gesfileus.grb2 -match ":RH:" -grib_out $DATAminrh/tempgribus.grb2 + wgrib2 $DATAminrh/tempgribus.grb2 -import_ieee rtma3d.${PDYm1}.minrh_anl.dat -set_date ${PDYm1}18 -set_var MINRH -set_ftime '12 hour fcst' -undefine_val 0 -grib_out $DATAminrh/${run}.${PDYm1}.minRH.grb2 + cp $DATAminrh/${run}.${PDYm1}.minrh_anl.dat $DATAminrh/${run}.${PDYm1}.minrh_anl.dat + cp $DATAminrh/${run}.${PDYm1}.minRH.grb2 ${comout}/rtma3d.minRH.grib2 + else + echo "WARNING: CONUS Min RH analysis not available from main program!" + fi + fi + if [[ $bnum -eq "1" || $bnum -eq "3" ]] ; then + if [ -s $DATAminrh/${run}..${PDYm1}.minrh_bg.dat ] ; then + wgrib2 $DATAminrh/gesfileus.grb2 -match ":RH:" -grib_out $DATAminrh/tempgribus.grb2 + wgrib2 $DATAminrh/tempgribus.grb2 -import_ieee rtma3d.${PDYm1}.minrh_bg.dat -set_date ${PDYm1}18 -set_var MINRH -set_ftime '12 hour fcst' -undefine_val 0 -grib_out $DATAminrh/${run}.${PDYm1}.minRH.grb2 + cp $DATAminrh/${run}.${PDYm1}.minrh_bg.dat $DATAminrh/${run}.${PDYm1}.minrh_bg.dat + cp $DATAminrh/${run}.${PDYm1}.minRH.grb2 ${comout}/rtma3d.minRH.grib2 + else + echo "WARNING: CONUS Min RH background no available from main program!" + fi + fi +fi + + + + + +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Post-processing for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 diff --git a/scripts/exregional_run_mintbg.ksh b/scripts/exregional_run_mintbg.ksh new file mode 100755 index 000000000..f10087af2 --- /dev/null +++ b/scripts/exregional_run_mintbg.ksh @@ -0,0 +1,231 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"postprd_dir" \ +"comout" \ +"comout_ges" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# A separate ${post_fhr} forecast hour variable is required for the post +# files, since they may or may not be three digits long, depending on the +# length of the forecast. +# +#----------------------------------------------------------------------- +# +DATA=$postprd_dir +export DATA=$postprd_dir +DATAmint=$DATA/mint_${fhr} +mkdir $DATAmint + +cd $DATAmint + +grids=hrrr +gridsarray=($grids) +num=${#gridsarray[@]} + +if [[ $num -gt 10 ]] ; then + echo "Only ten grid names may be specified. User specified ${num}." + exit +fi + + +#generate namelist input file, make sure that no grid in same domain is repeated twice +Tur=no; Tak=no; Tpr=no; Thi=no; Tgu=no +echo "&gridsinfo" > gridsinfo_input +echo " grids=${num}" >> gridsinfo_input +nn=0 +while [[ $nn -lt $num ]] ; do + let nnp1="nn+1" + dname=${gridsarray[$nn]} + echo " gridnames($nnp1)=${dname}," >> gridsinfo_input + if [[ $dname = "cohreswexp" || $dname = "cohresext" || $dname = "cohres" || $dname = "rtma2p5" || $dname = "hrrr" ]] ; then + if [[ $Tur = yes ]] ; then + echo "MULTIPLE GRIDS FROM URMA2P5 DOMAIN!" + exit + else + run="rtma3d" + Tur=yes + fi + else + echo "Domain name number ${nn} is invalid: $dname." + exit + fi + #now find and run wgrib2 on all the relevant files for that grid + CYCLE="${PDY}1800" + CYCLE_STOP="${PDYm1}1800" + + while [[ $CYCLE -ge $CYCLE_STOP ]]; do + + YYYYMMDD=`echo $CYCLE | cut -c 1-8` + HH=`echo $CYCLE | cut -c 9-10` + + #find proper name of ges and analysis files to run wgrib2 on based on run and domain name + if [[ $run = "rtma3d" ]] ; then + if [[ $dname == "hrrr" ]] ; then + opsfile=${COMOUT_BASEDIR}/RTMA_NA.${YYYYMMDD}/${HH}/rtma.t${HH}z.prslev.f000.hrrr.grib2 + gesfile=${COMOUT_BASEDIR_ges}/rrfs.${YYYYMMDD}/${HH}/rrfs.t${HH}z.prslev.f012.conus_3km.grib2 + if [[ ! -e $opsfile ]] ; then + opsfile=$gesfile + fi + fi + fi + #now use wgrib2 to pull ges/analysis from the file + #use run in binary filename, regardless of grid + if [[ -s $gesfile ]] ; then + opnew=${run}_anl_valid${HH}.bin + gesnew=${run}_ges_valid${HH}.bin + if [[ -s $gesnew ]] ; then + opnew=${run}_anl_valid${HH}_prevday.bin + gesnew=${run}_ges_valid${HH}_prevday.bin + fi + wgrib2 $gesfile -match ":TMP:2 m above ground:" -ieee $gesnew + wgrib2 $opsfile -match ":TMP:2 m above ground:" -ieee $opnew + else + echo "WARNING: ${RUN} file unavailable for ${CYCLE}!" + fi + + #get template grid for 20Z + + if [ ${HH} -eq 20 ] ; then + if [[ $run == "${run}" ]] ; then + cp $gesfile gesfileus.grb2 + fi + fi + + CYCLE=`$MDATE -60 $CYCLE` + done + let nn="$nn+1" +done +echo "/" >> gridsinfo_input +#in blend_input: 1=use bgs only, 2=use anls only, 3=use both +cat < blend_input +&blendinput +bnum=3 +/ +EOF + +#. prep_step + +export FORT71=${run}.${PDYm1}.mint_diag_bg.dat +export FORT72=${run}.${PDYm1}.mint_diag_anl.dat + +cp $FIX_MINMAX/aktz.bin . +cp $FIX_MINMAX/conusexttz.bin . +cp $FIX_MINMAX/conustz.bin . +cp $FIX_MINMAX/conustz_ndfdonly.bin . + +export pgm=rtma3d_mintgb +#startmsg +${EXECDIR}/rtma3d_mintbg > stdout 2>&1 +export err=$? +#cat $pgmout + +if [[ $Tur = yes ]]; then +if [ -s $DATAmint/mint_${run}_bg.bin ] ; then + wgrib2 $DATAmint/gesfileus.grb2 -match ":TMP:" -grib_out $DATAmint/tempgribus.grb2 + wgrib2 $DATAmint/tempgribus.grb2 -import_ieee mint_${run}_bg.bin -set_date "${PDY}08" -set_var TMIN -set_ftime "12 hour fcst" -undefine_val 0 -grib_out $DATAmint/${run}.${PDYm1}.minT.grb2 + cp $DATAmint/mint_${run}_bg.bin $DATAmint/rtma3d.${PDYm1}.minT.bin + cp $DATAmint/${run}.${PDYm1}.minT.grb2 $comout/rtma3d.minT.grib2 +else + echo "URMA2P5 background was not generated or copied properly!" + exit +fi +fi + + +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Post-processing for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_ncl.ksh b/scripts/exregional_run_ncl.ksh new file mode 100755 index 000000000..bcba6c198 --- /dev/null +++ b/scripts/exregional_run_ncl.ksh @@ -0,0 +1,271 @@ +#!/bin/ksh --login + +. ${GLOBAL_VAR_DEFNS_FP} + +DATAROOT=${EXPTDIR} +DATAHOME=${COMOUT_BASEDIR}/${RUN}.${START_TIME:0:8}/${START_TIME:8:2} +POST_PREFIX=${NET} + +if [ "${PBS_NODEFILE:-unset}" != "unset" ]; then + THREADS=$(cat $PBS_NODEFILE | wc -l) +else + THREADS=16 +fi +echo "Using $THREADS thread(s) for procesing." + +# Variables sent from xml +# DATAROOT +# DATAHOME +# START_TIME +# FCST_TIME + +FCST_TIME_3=$(printf "%03d" $(( 10#$FCST_TIME ))) +FCST_TIME=$(printf "%02d" $(( 10#$FCST_TIME ))) + +# Load modules +module purge +module load intel +module load szip hdf5 netcdf +module load imagemagick +module load ncl + +# Make sure we are using GMT time zone for time computations +export TZ="GMT" +export UDUNITS2_XML_PATH=${NCARG_ROOT}/lib/ncarg/udunits/udunits2.xml +export NCL_HOME=${NCL_HOME} +export MODEL=${MODEL} +export NCL_EXE_ROOT=${NCL_HOME}/scripts +export NCL_CONFIG=${NCL_HOME}/config +export SUBDOMAINS=${NCL_CONFIG}/${NCL_REGION}_subdomains.ncl + +# Set up paths to shell commands +LS=/bin/ls +LN=/bin/ln +RM=/bin/rm +MKDIR=/bin/mkdir +CP=/bin/cp +MV=/bin/mv +ECHO=/bin/echo +CAT=/bin/cat +GREP=/bin/grep +CUT=/bin/cut +AWK="/bin/gawk --posix" +SED=/bin/sed +DATE=/bin/date +BC=/usr/bin/bc +XARGS=${XARGS:-/usr/bin/xargs} +BASH=${BASH:-/bin/bash} +NCL=`which ncl` +CTRANS=`which ctrans` +PS2PDF=/usr/bin/ps2pdf +CONVERT=`which convert` +PATH=${NCARG_ROOT}/bin:${PATH} + +typeset -Z6 j +typeset -Z6 k +ulimit -s 1024000 + +# Print run parameters +${ECHO} +${ECHO} "ncl.ksh started at `${DATE}`" +${ECHO} +${ECHO} "NCL = ${NCL}" +${ECHO} "CTRANS = ${CTRANS}" +${ECHO} "CONVERT = ${CONVERT}" +${ECHO} "DATAROOT = ${DATAROOT}" +${ECHO} "DATAHOME = ${DATAHOME}" +${ECHO} "NCL_EXE_ROOT = ${NCL_EXE_ROOT}" + +# Check to make sure the EXE_ROOT var was specified +if [ ! -d ${NCL_EXE_ROOT} ]; then + ${ECHO} "ERROR: NCL_EXE_ROOT, '${NCL_EXE_ROOT}', does not exist" + exit 1 +fi + +# Check to make sure that the DATAHOME exists +if [ ! -d ${DATAHOME} ]; then + ${ECHO} "ERROR: DATAHOME, '${DATAHOME}', does not exist" + exit 1 +fi +# If START_TIME is not defined, use the current time +if [ ! "${START_TIME}" ]; then + ${ECHO} "START_TIME not defined - get from date" + START_TIME=$( date +"%Y%m%d %H" ) + INIT_HOUR=$( date +"%H" -d "${START_TIME}" ) + START_TIME=$( date +"%Y%m%d%H" -d "${START_TIME}" ) +else + ${ECHO} "START_TIME defined and is ${START_TIME}" + START_TIME=$( date +"%Y%m%d %H" -d "${START_TIME%??} ${START_TIME#????????}" ) + INIT_HOUR=$( date +"%H" -d "${START_TIME}" ) + START_TIME=$( date +"%Y%m%d%H" -d "${START_TIME}" ) +fi + +# Print out times +# ${ECHO} " START TIME = "`${DATE} +%Y%m%d%H -d "${START_TIME}"` +${ECHO} " START_TIME = ${START_TIME}" +${ECHO} " FCST_TIME = ${FCST_TIME}" + +# Set up the work directory and cd into it +workdir=${DATAHOME}/nclprd/${START_TIME}${FCST_TIME} +${RM} -rf ${workdir} +${MKDIR} -p ${workdir} +cd ${workdir} +pwd + +# Check that the input file exists +input_file=${DATAHOME}/${POST_PREFIX}.t${INIT_HOUR}z.bgdawpf${FCST_TIME_3}.tm00.grib2 + +if [ -e $input_file ] ; then + # Link to input file + ${LN} -sf ${input_file} rrfsfile.grb +else + echo "Cannot find input file: ${input_file}!" + exit 1 +fi + +${ECHO} "rrfsfile.grb" > rrfs_file.txt + +ls -al rrfsfile.grb + +# set the plot types you want to generate here +set -A ncgms sfc_temp \ + 2m_temp \ + 2m_rh \ + 2m_dewp \ + 2ds_temp \ + 10m_wind \ + 80m_wind \ + 850_wind \ + 250_wind \ + sfc_pwtr \ + sfc_cref \ + sfc_ptyp \ + sfc_cape \ + sfc_cin \ + sfc_acp \ + sfc_weasd \ + sfc_1hsnw \ + sfc_totp \ + sfc_sfcp \ + ua_rh \ + 850_rh \ + 700_vvel \ + sfc_vis \ + ua_ceil \ + ua_ctop \ + 10m_gust \ + sfc_hlcy \ + in25_hlcy \ + mx03_hlcy \ + mx03_hlcytot \ + mx25_hlcytot \ + sfc_lcl \ + sfc_tcc \ + sfc_lcc \ + sfc_mcc \ + sfc_hcc \ + sfc_mucp \ + sfc_mulcp \ + sfc_mxcp \ + sfc_1hsm \ + sfc_3hsm \ + sfc_s1shr \ + sfc_6kshr \ + 500_temp \ + 700_temp \ + 850_temp \ + 925_temp \ + sfc_1ref \ + sfc_bli \ + nta_ulwrf \ + sfc_ulwrf \ + sfc_uswrf \ + sfc_lhtfl \ + sfc_shtfl \ + sfc_flru \ + sfc_solar \ + sfc_rvil + +# this is the set of all possible tiles +# to set the tiles you actually want to generate, modify the loop in _subdomains.ncl +set -A tiles full t1 t2 t3 t4 t5 t6 t7 t8 z0 z1 z2 z3 z4 z5 z6 z7 z8 z9 + +i=0 +p=0 +while [ ${i} -lt ${#ncgms[@]} ]; do + j=000000 + k=000000 + numtiles=${#tiles[@]} + (( numtiles=numtiles - 1 )) + while [ ${j} -le ${numtiles} ]; do + (( k=j + 1 )) + pngs[${p}]=${ncgms[${i}]}.${k}.png + webpfx=`echo ${ncgms[${i}]} | cut -d '_' -f2` + websfx=`echo ${ncgms[${i}]} | cut -d '_' -f1` + if [ ${j} -eq 000000 ]; then + if [ "${websfx}" = "ua" ]; then + webnames[${p}]=${webpfx} + else + webnames[${p}]=${webpfx}_${websfx} + fi + else + if [ "${websfx}" = "ua" ]; then + webnames[${p}]=${webpfx}_${tiles[${j}]} + else + webnames[${p}]=${webpfx}_${tiles[${j}]}${websfx} + fi + fi + (( j=j + 1 )) +# p is total number of images (image index) + (( p=p + 1 )) + done + (( i=i + 1 )) +done + +ncl_error=0 + +# Run the NCL scripts for each plot +cp ${NCL_CONFIG}/Airpor* . +cp ${NCL_CONFIG}/fv3_names_grib2.txt names_grib2.txt +i=0 +echo "FIRST While, ${#ncgms[@]} items" +CMDFN=/tmp/cmd.rrfsx.$$ +${RM} -f $CMDFN + +while [ ${i} -lt ${#ncgms[@]} ]; do + plot=${ncgms[${i}]} + ${ECHO} "Starting rr_${plot}.ncl at `${DATE}`" + echo ${NCL} ${NCL_EXE_ROOT}/rr_${plot}.ncl >> $CMDFN + (( i=i + 1 )) +done + +${CAT} $CMDFN | ${XARGS} -P $THREADS -I {} ${BASH} -c "{}" +ncl_error=$? +${RM} -f $CMDFN + +# Copy png files to their proper names +i=0 +while [ ${i} -lt ${#pngs[@]} ]; do + j=0 + while [ ${j} -lt ${#tiles[@]} ]; do + pngfile=${pngs[${i}]} + if [[ -e ${pngfile} ]];then + plotdir=${DATAHOME}/nclprd/${tiles[${j}]} + webfile=${plotdir}/${webnames[${i}]}_f${FCST_TIME}.png + echo "Converting ${pngfile} to ${webfile}" + ${CONVERT} -colors 255 -trim ${pngfile} ${pngfile} + ${MKDIR} -p ${plotdir} + ${MV} ${pngfile} ${webfile} + fi + (( i=i + 1 )) + (( j=j + 1 )) + done +done + +# Remove the workdir +${RM} -rf ${workdir} + +${ECHO} "ncl.ksh completed at `${DATE}`" + +exit ${ncl_error} + diff --git a/scripts/exregional_run_ncl_zip.ksh b/scripts/exregional_run_ncl_zip.ksh new file mode 100755 index 000000000..9da40e68f --- /dev/null +++ b/scripts/exregional_run_ncl_zip.ksh @@ -0,0 +1,79 @@ +#!/bin/ksh --login + + +np=`cat $PBS_NODEFILE | wc -l` + +. $GLOBAL_VAR_DEFNS_FP + +DATAROOT=${EXPTDIR} +DATAHOME=${COMOUT_BASEDIR}/${RUN}.${START_TIME:0:8}/${START_TIME:8:2} + +DATE=/bin/date +ECHO=/bin/echo + +ulimit -s 512000 + +# Print run parameters +${ECHO} +${ECHO} "ncl zip started at `${DATE}`" +${ECHO} +${ECHO} "DATAROOT = ${DATAROOT}" +${ECHO} "DATAHOME = ${DATAHOME}" + +# Check to make sure that the DATAHOME exists +if [ ! -d ${DATAHOME} ]; then + ${ECHO} "ERROR: DATAHOME, '${DATAHOME}', does not exist" + exit 1 +fi + +# If START_TIME is not defined, use the current time +if [ ! "${START_TIME}" ]; then + ${ECHO} "START_TIME not defined - get from date" + START_TIME=$( date +"%Y%m%d %H" ) + START_TIME=$( date +"%Y%m%d%H" -d "${START_TIME}" ) +else + ${ECHO} "START_TIME defined and is ${START_TIME}" + START_TIME=$( date +"%Y%m%d %H" -d "${START_TIME%??} ${START_TIME#????????}" ) + START_TIME=$( date +"%Y%m%d%H" -d "${START_TIME}" ) +fi + +FCST_TIME=$(printf "%02d" $(( 10#$FCST_TIME ))) + +# Print out times +${ECHO} " START_TIME = ${START_TIME}" +${ECHO} " FCST_TIME = ${FCST_TIME}" + +set -A domains full t1 t2 t3 t4 t5 t6 t7 t8 z0 z1 z2 z3 z4 z5 z6 z7 z8 z9 + +zip_error=0 + +# zip up the files in each domain + +i=0 +while [ ${i} -lt ${#domains[@]} ]; do + dir=${DATAHOME}/nclprd/${domains[${i}]} + if [ -d ${dir} ]; then + cd ${dir} + if (( `ls *.png 2> /dev/null|wc -l` ));then + zip -g -0 files.zip * -i \*${FCST_TIME}.png + zip_error=$? + if [ zip_error -ne 0 ]; then + ${ECHO} "ERROR - zip failed!" + ${ECHO} " zip_error = ${zip_error}" + else + ${ECHO} "SUCCESS - zip file created" + ${ECHO} " zip_error = ${zip_error}" + rm -f *${FCST_TIME}.png + fi + else + ${ECHO} "no files to zip -- exiting" + fi + else + ${ECHO} "${dir} does not exist" + fi + (( i=i + 1 )) +done + +${ECHO} "ncl zip.ksh completed at `${DATE}`" + +exit ${zip_error} diff --git a/scripts/exregional_run_post.sh b/scripts/exregional_run_post.sh index eaf79e12b..487dfa118 100755 --- a/scripts/exregional_run_post.sh +++ b/scripts/exregional_run_post.sh @@ -59,8 +59,11 @@ valid_args=( \ "cdate" \ "run_dir" \ "postprd_dir" \ +"comout" \ "fhr_dir" \ "fhr" \ +"tmmark" \ +"cycle_type" \ ) process_args valid_args "$@" # @@ -82,30 +85,20 @@ print_input_args valid_args # case $MACHINE in - "WCOSS_CRAY") - -# Specify computational resources. - export NODES=2 - export ntasks=48 - export ptile=24 - export threads=1 - export MP_LABELIO=yes - export OMP_NUM_THREADS=$threads - - APRUN="aprun -j 1 -n${ntasks} -N${ptile} -d${threads} -cc depth" - ;; - - "WCOSS_DELL_P3") - -# Specify computational resources. - export NODES=2 - export ntasks=48 - export ptile=24 - export threads=1 - export MP_LABELIO=yes - export OMP_NUM_THREADS=$threads - - APRUN="mpirun" + "WCOSS2") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export MP_IOAGENT_CNT=all + export MP_IO_BUFFER_SIZE=8M + export MP_BINDPROC=NO + export MP_SHARED_MEMORY=yes + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=1G + module load wgrib2/2.0.8 + module list + ncores=$(( NNODES_RUN_POST*PPN_RUN_POST)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_POST} --cpu-bind core --depth ${OMP_NUM_THREADS}" ;; "HERA") @@ -113,6 +106,10 @@ case $MACHINE in ;; "ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M APRUN="srun" ;; @@ -146,34 +143,11 @@ esac # #----------------------------------------------------------------------- # -# Remove any files from previous runs and stage necessary files in fhr_dir. +# Remove any files from previous runs. # #----------------------------------------------------------------------- # rm_vrfy -f fort.* -cp_vrfy ${EMC_POST_DIR}/parm/nam_micro_lookup.dat ./eta_micro_lookup.dat -if [ ${USE_CUSTOM_POST_CONFIG_FILE} = "TRUE" ]; then - post_config_fp="${CUSTOM_POST_CONFIG_FP}" - print_info_msg " -==================================================================== -Copying the user-defined post flat file specified by CUSTOM_POST_CONFIG_FP -to the post forecast hour directory (fhr_dir): - CUSTOM_POST_CONFIG_FP = \"${CUSTOM_POST_CONFIG_FP}\" - fhr_dir = \"${fhr_dir}\" -====================================================================" -else - post_config_fp="${EMC_POST_DIR}/parm/postxconfig-NT-fv3lam.txt" - print_info_msg " -==================================================================== -Copying the default post flat file specified by post_config_fp to the post -forecast hour directory (fhr_dir): - post_config_fp = \"${post_config_fp}\" - fhr_dir = \"${fhr_dir}\" -====================================================================" -fi -cp_vrfy ${post_config_fp} ./postxconfig-NT.txt -cp_vrfy ${EMC_POST_DIR}/parm/params_grib2_tbl_new ./params_grib2_tbl_new -cp_vrfy ${EXECDIR}/ncep_post . # #----------------------------------------------------------------------- # @@ -188,17 +162,6 @@ cyc=$hh # #----------------------------------------------------------------------- # -# The tmmark is a reference value used in real-time, DA-enabled NCEP models. -# It represents the delay between the onset of the DA cycle and the free -# forecast. With no DA in the SRW App at the moment, it is hard-wired to -# tm00 for now. -# -#----------------------------------------------------------------------- -# -tmmark="tm00" -# -#----------------------------------------------------------------------- -# # Create a text file (itag) containing arguments to pass to the post- # processing executable. # @@ -207,24 +170,101 @@ tmmark="tm00" dyn_file="${run_dir}/dynf${fhr}.nc" phy_file="${run_dir}/phyf${fhr}.nc" -post_time=$( date --utc --date "${yyyymmdd} ${hh} UTC + ${fhr} hours" "+%Y%m%d%H" ) +len_fhr=${#fhr} +if [ ${len_fhr} -eq 9 ]; then + post_fhr=${fhr:0:3} + post_min=${fhr:4:2} + if [ ${post_min} -lt 15 ]; then # should use $nsout_min instead of 15 + post_min=00 + fi +else + post_fhr=${fhr} + post_min=00 +fi + +post_time=$( date --utc --date "${yyyymmdd} ${hh} UTC + ${post_fhr} hours" "+%Y%m%d%H" ) post_yyyy=${post_time:0:4} post_mm=${post_time:4:2} post_dd=${post_time:6:2} post_hh=${post_time:8:2} cat > itag < /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "gsi_type" "mem_type" "analworkdir" \ + "observer_nwges_dir" "slash_ensmem_subdir" "comout" \ + "satbias_dir" "ob_type" "gridspec_dir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=500M + export OMP_NUM_THREADS=1 + ncores=$(( NNODES_RUN_POSTANAL*PPN_RUN_POSTANAL)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_POSTANAL} --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun" + ;; +# +"HERA") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + export OMP_NUM_THREADS=2 + export OMP_STACKSIZE=1024M + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +esac +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +# +#----------------------------------------------------------------------- +# +# go to working directory. +# define fix and background path +# +#----------------------------------------------------------------------- + +cd_vrfy ${analworkdir} + +fixgriddir=$FIX_GSI/${PREDEF_GRID_NAME} +if [ ${cycle_type} == "spinup" ]; then + if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam_spinup/INPUT + else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam_spinup/INPUT + fi +else + if [ ${mem_type} == "MEAN" ]; then + bkpath=${cycle_dir}/ensmean/fcst_fv3lam/INPUT + else + bkpath=${cycle_dir}${slash_ensmem_subdir}/fcst_fv3lam/INPUT + fi +fi +# decide background type +if [ -r "${bkpath}/coupler.res" ]; then + BKTYPE=0 # warm start +else + BKTYPE=1 # cold start +fi + +# +#----------------------------------------------------------------------- +# +# adjust soil T/Q based on analysis increment +# +#----------------------------------------------------------------------- +# +if [[ ${BKTYPE} -eq 0 ]] && [[ ${ob_type} =~ "conv" ]] && [[ "${DO_SOIL_ADJUST}" = "TRUE" ]]; then # warm start + cd ${bkpath} + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -snf ${fixgriddir}/fv3_grid_spec fv3_grid_spec + else + for ii in ${list_iolayout} + do + iii=`printf %4.4i $ii` + ln_vrfy -snf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec.${iii} + done + fi + +cat << EOF > namelist.soiltq + &setup + fv3_io_layout_y=${IO_LAYOUT_Y}, + iyear=${YYYY}, + imonth=${MM}, + iday=${DD}, + ihour=${HH}, + iminute=0, + / +EOF + + adjustsoil_exec="${EXECDIR}/adjust_soiltq.exe" + + if [ -f $adjustsoil_exec ]; then + print_info_msg "$VERBOSE" " +Copying the adjust soil executable to the run directory..." + cp_vrfy ${adjustsoil_exec} adjust_soiltq.exe + else + print_err_msg_exit "\ +The adjust_soiltq.exe specified in ${EXECDIR} does not exist. +Build adjust_soiltq.exe and rerun." + fi + + $APRUN ./adjust_soiltq.exe || print_err_msg_exit "\ + Call to executable to run adjust soil returned with nonzero exit code." + +fi + +# +#----------------------------------------------------------------------- +# +# update boundary condition absed on analysis results. +# This will generate a new boundary file at 0-hour +# +#----------------------------------------------------------------------- +# +if [ ${BKTYPE} -eq 0 ] && [ "${DO_UPDATE_BC}" = "TRUE" ]; then # warm start + cd ${bkpath} + +cat << EOF > namelist.updatebc + &setup + fv3_io_layout_y=${IO_LAYOUT_Y}, + bdy_update_type=1, + grid_type_fv3_regional=2, + / +EOF + + update_bc_exec="${EXECDIR}/update_bc.exe" + cp gfs_bndy.tile7.000.nc gfs_bndy.tile7.000.nc_before_update + + if [ -f $update_bc_exec ]; then + print_info_msg "$VERBOSE" " +Copying the update bc executable to the run directory..." + cp_vrfy ${update_bc_exec} update_bc.exe + else + print_err_msg_exit "\ +The update_bc.exe specified in ${EXECDIR} does not exist. +Build update_bc.exe and rerun." + fi + + $APRUN ./update_bc.exe || print_err_msg_exit "\ + Call to executable to run update bc returned with nonzero exit code." + +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +post analysis completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_prdgen.sh b/scripts/exregional_run_prdgen.sh new file mode 100755 index 000000000..5e15048a6 --- /dev/null +++ b/scripts/exregional_run_prdgen.sh @@ -0,0 +1,456 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"postprd_dir" \ +"comout" \ +"fhr_dir" \ +"fhr" \ +"tmmark" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in + + "WCOSS2") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + ncores=$(( NNODES_RUN_PRDGEN*PPN_RUN_PRDGEN)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_PRDGEN}" + ;; + + "HERA") + APRUN="srun" + ;; + + "ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; + + "JET") + APRUN="srun" + ;; + + "ODIN") + APRUN="srun -n 1" + ;; + + "CHEYENNE") + module list + nprocs=$(( NNODES_RUN_POST*PPN_RUN_POST )) + APRUN="mpirun -np $nprocs" + ;; + + "STAMPEDE") + nprocs=$(( NNODES_RUN_POST*PPN_RUN_POST )) + APRUN="ibrun -n $nprocs" + ;; + + *) + print_err_msg_exit "\ +Run command has not been specified for this machine: + MACHINE = \"$MACHINE\" + APRUN = \"$APRUN\"" + ;; + +esac +# +#----------------------------------------------------------------------- +# +# Get the cycle date and hour (in formats of yyyymmdd and hh, respectively) +# from cdate. +# +#----------------------------------------------------------------------- +# +yyyymmdd=${cdate:0:8} +hh=${cdate:8:2} +cyc=$hh +#----------------------------------------------------------------------- +# +# A separate ${post_fhr} forecast hour variable is required for the post +# files, since they may or may not be three digits long, depending on the +# length of the forecast. +# +#----------------------------------------------------------------------- +# + +len_fhr=${#fhr} +if [ ${len_fhr} -eq 9 ]; then + post_min=${fhr:4:2} + if [ ${post_min} -lt 15 ]; then + post_min=00 + fi +else + post_min=00 +fi + +subh_fhr=${fhr} +if [ ${len_fhr} -eq 2 ]; then + post_fhr=${fhr}00 +elif [ ${len_fhr} -eq 3 ]; then + if [ "${fhr:0:1}" = "0" ]; then + post_fhr="${fhr:1}00" + else + post_fhr=${fhr}00 + fi +elif [ ${len_fhr} -eq 9 ]; then + if [ "${fhr:0:1}" = "0" ]; then + if [ ${post_min} -eq 00 ]; then + post_fhr="${fhr:1:2}00" + subh_fhr="${fhr:0:3}" + else + post_fhr="${fhr:1:2}${fhr:4:2}" + fi + else + if [ ${post_min} -eq 00 ]; then + post_fhr="${fhr:0:3}00" + subh_fhr="${fhr:0:3}" + else + post_fhr="${fhr:0:3}${fhr:4:2}" + fi + fi +else + print_err_msg_exit "\ +The \${fhr} variable contains too few or too many characters: + fhr = \"$fhr\"" +fi + +# replace fhr with subh_fhr +echo "fhr=${fhr} and subh_fhr=${subh_fhr}" +fhr=${subh_fhr} +# +gridname="" +if [ ${PREDEF_GRID_NAME} = "RRFS_CONUS_3km" ]; then + gridname="conus_3km." +elif [ ${PREDEF_GRID_NAME} = "RRFS_NA_3km" ]; then + gridname="" +fi +# +net4=$(echo ${NET:0:4} | tr '[:upper:]' '[:lower:]') +# + +prslev=${net4}.t${cyc}z.prslev.f${fhr}.${gridname}grib2 +natlev=${net4}.t${cyc}z.natlev.f${fhr}.${gridname}grib2 +ififip=${net4}.t${cyc}z.ififip.f${fhr}.${gridname}grib2 +testbed=${net4}.t${cyc}z.testbed.f${fhr}.${gridname}grib2 +spc=${net4}.t${cyc}z.spc.f${fhr}.${gridname}grib2 +# extract the output fields for the testbed +if [[ ! -z ${TESTBED_FIELDS_FN} ]]; then + if [[ -f ${FIX_UPP}/${TESTBED_FIELDS_FN} ]]; then + wgrib2 ${postprd_dir}/${prslev} | grep -F -f ${FIX_UPP}/${TESTBED_FIELDS_FN} | wgrib2 -i -grib ${postprd_dir}/${testbed} ${postprd_dir}/${prslev} + else + echo "${FIX_UPP}/${TESTBED_FIELDS_FN} not found" + fi +fi +if [[ ! -z ${TESTBED_FIELDS_FN2} ]]; then + if [[ -f ${FIX_UPP}/${TESTBED_FIELDS_FN2} ]]; then + wgrib2 ${postprd_dir}/${natlev} | grep -F -f ${FIX_UPP}/${TESTBED_FIELDS_FN2} | wgrib2 -i -append -grib ${postprd_dir}/${testbed} ${postprd_dir}/${natlev} + else + echo "${FIX_UPP}/${TESTBED_FIELDS_FN2} not found" + fi +fi + +if [[ ! -z ${SPC_FIELDS_FN} ]]; then + if [[ -f ${FIX_UPP}/${SPC_FIELDS_FN} ]]; then + wgrib2 ${postprd_dir}/${prslev} | grep -F -f ${FIX_UPP}/${SPC_FIELDS_FN} | wgrib2 -i -grib ${postprd_dir}/${spc} ${postprd_dir}/${prslev} + else + echo "${FIX_UPP}/${SPC_FIELDS_FN} not found" + fi +fi + + +#Link output for transfer to Jet +# Should the following be done only if on jet?? + +# Seems like start_date is the same as "$yyyymmdd $hh", where yyyymmdd +# and hh are calculated above, i.e. start_date is just cdate but with a +# space inserted between the dd and hh. If so, just use "$yyyymmdd $hh" +# instead of calling sed. + + +basetime=$( date +%y%j%H%M -d "${yyyymmdd} ${hh}" ) +cp_vrfy ${postprd_dir}/${prslev} ${comout}/${prslev} +cp_vrfy ${postprd_dir}/${natlev} ${comout}/${natlev} +if [ -f ${postprd_dir}/${ififip} ]; then + cp_vrfy ${postprd_dir}/${ififip} ${comout}/${ififip} +fi +cp_vrfy ${postprd_dir}/${testbed} ${comout}/${testbed} +cp_vrfy ${postprd_dir}/${spc} ${comout}/${spc} +wgrib2 ${comout}/${prslev} -s > ${comout}/${prslev}.idx +wgrib2 ${comout}/${natlev} -s > ${comout}/${natlev}.idx +if [ -f ${comout}/${ififip} ]; then + wgrib2 ${comout}/${ififip} -s > ${comout}/${ififip}.idx +fi +wgrib2 ${comout}/${testbed} -s > ${comout}/${testbed}.idx +wgrib2 ${comout}/${spc} -s > ${comout}/${spc}.idx +# Remap to additional output grids if requested + +if [ ${DO_PARALLEL_PRDGEN} == "TRUE" ]; then +# +# parallel run wgrib2 for product generation +# + +if [ ${PREDEF_GRID_NAME} = "RRFS_NA_3km" ]; then + +module load cfp/2.0.4 +DATA=$postprd_dir +export DATA=$postprd_dir +DATAprdgen=$DATA/prdgen_${fhr} +mkdir $DATAprdgen +USHrrfs=$USHDIR/prdgen + +wgrib2 ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.grib2 >& $DATAprdgen/prslevf${fhr}.txt + +# Create parm files for subsetting on the fly - do it for each forecast hour +# 4 subpieces for CONUS and Alaska grids +sed -n -e '1,250p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/conus_ak_1.txt +sed -n -e '251,500p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/conus_ak_2.txt +sed -n -e '501,750p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/conus_ak_3.txt +sed -n -e '751,$p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/conus_ak_4.txt + +# 2 subpieces for Hawaii and Puerto Rico grids +sed -n -e '1,500p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/hi_pr_1.txt +sed -n -e '501,$p' $DATAprdgen/prslevf${fhr}.txt >& $DATAprdgen/hi_pr_2.txt + +# Create script to execute production generation tasks in parallel using CFP +echo "#!/bin/bash" > $DATAprdgen/poescript_${fhr} +echo "export DATA=${DATAprdgen}" >> $DATAprdgen/poescript_${fhr} +echo "export comout=${comout}" >> $DATAprdgen/poescript_${fhr} + +tasks=(4 4 2 2) +domains=(conus ak hi pr) +count=0 +for domain in ${domains[@]} +do + for task in $(seq ${tasks[count]}) + do + mkdir -p $DATAprdgen/prdgen_${domain}_${task} + echo "$USHrrfs/rrfs_prdgen_subpiece.sh $fhr $cyc $task $domain ${DATAprdgen} ${comout} &" >> $DATAprdgen/poescript_${fhr} + done + count=$count+1 +done + +echo "wait" >> $DATAprdgen/poescript_${fhr} +chmod 775 $DATAprdgen/poescript_${fhr} + +# +# Execute the script +# + +export CMDFILE=$DATAprdgen/poescript_${fhr} +mpiexec -np 12 --cpu-bind core cfp $CMDFILE +#export err=$?; err_chk + +# reassemble the output grids + +tasks=(4 4 2 2) +domains=(conus ak hi pr) +count=0 +for domain in ${domains[@]} +do + for task in $(seq ${tasks[count]}) + do + cat $DATAprdgen/prdgen_${domain}_${task}/${domain}_${task}.grib2 >> ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.${domain}.grib2 + done + wgrib2 ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.${domain}.grib2 -s > ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.${domain}.grib2.idx + count=$count+1 +done + +# Rename conus grib2 files to conus_3km +mv ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.conus.grib2 ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.conus_3km.grib2 +mv ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.conus.grib2.idx ${comout}/rrfs.t${cyc}z.prslev.f${fhr}.conus_3km.grib2.idx + +# create testbed files on 3-km CONUS grid +prslev_conus=${net4}.t${cyc}z.prslev.f${fhr}.conus_3km.grib2 +testbed_conus=${net4}.t${cyc}z.testbed.f${fhr}.conus_3km.grib2 +spc_conus=${net4}.t${cyc}z.spc.f${fhr}.conus_3km.grib2 +if [[ ! -z ${TESTBED_FIELDS_FN} ]]; then + if [[ -f ${FIX_UPP}/${TESTBED_FIELDS_FN} ]]; then + wgrib2 ${comout}/${prslev_conus} | grep -F -f ${FIX_UPP}/${TESTBED_FIELDS_FN} | wgrib2 -i -grib ${comout}/${testbed_conus} ${comout}/${prslev_conus} + else + echo "${FIX_UPP}/${TESTBED_FIELDS_FN} not found" + fi +fi + +if [[ ! -z ${SPC_FIELDS_FN} ]]; then + if [[ -f ${FIX_UPP}/${SPC_FIELDS_FN} ]]; then + wgrib2 ${comout}/${prslev_conus} | grep -F -f ${FIX_UPP}/${SPC_FIELDS_FN} | wgrib2 -i -grib ${comout}/${spc_conus} ${comout}/${prslev_conus} + else + echo "${FIX_UPP}/${SPC_FIELDS_FN} not found" + fi +fi + + +else + echo "this grid is not ready for parallel prdgen: ${PREDEF_GRID_NAME}" +fi + +rm -fr $DATAprdgen +rm -f $DATA/*.t${cyc}z.*.f${fhr}.*.grib2 + +else +# +# use single core to process all addition grids. +# +if [ ${#ADDNL_OUTPUT_GRIDS[@]} -gt 0 ]; then + + cd_vrfy ${comout} + + grid_specs_130="lambert:265:25.000000 233.862000:451:13545.000000 16.281000:337:13545.000000" + grid_specs_200="lambert:253:50.000000 285.720000:108:16232.000000 16.201000:94:16232.000000" + grid_specs_221="lambert:253:50.000000 214.500000:349:32463.000000 1.000000:277:32463.000000" + grid_specs_242="nps:225:60.000000 187.000000:553:11250.000000 30.000000:425:11250.000000" + grid_specs_243="latlon 190.0:126:0.400 10.000:101:0.400" + grid_specs_clue="lambert:262.5:38.5 239.891:1620:3000.0 20.971:1120:3000.0" + grid_specs_hrrr="lambert:-97.5:38.5 -122.719528:1799:3000.0 21.138123:1059:3000.0" + grid_specs_hrrre="lambert:-97.5:38.5 -122.719528:1800:3000.0 21.138123:1060:3000.0" + grid_specs_rrfsak="lambert:-161.5:63.0 172.102615:1379:3000.0 45.84576:1003:3000.0" + grid_specs_hrrrak="nps:225:60.000000 185.117126:1299:3000.0 41.612949:919:3000.0" + + for grid in ${ADDNL_OUTPUT_GRIDS[@]} + do + for leveltype in prslev natlev ififip testbed spc + do + + eval grid_specs=\$grid_specs_${grid} + subdir=${postprd_dir}/${grid}_grid + mkdir -p ${subdir}/${fhr} + bg_remap=${subdir}/${net4}.t${cyc}z.${leveltype}.f${fhr}.${grid}.grib2 + + # Interpolate fields to new grid + eval infile=${comout}/${net4}.t${cyc}z.${leveltype}.f${fhr}.${gridname}grib2 + if [ ${PREDEF_GRID_NAME} = "RRFS_NA_13km" ]; then + wgrib2 ${infile} -set_bitmap 1 -set_grib_type c3 -new_grid_winds grid \ + -new_grid_vectors "UGRD:VGRD:USTM:VSTM:VUCSH:VVCSH" \ + -new_grid_interpolation bilinear \ + -if ":(WEASD|APCP|NCPCP|ACPCP|SNOD):" -new_grid_interpolation budget -fi \ + -if ":(NCONCD|NCCICE|SPNCR|CLWMR|CICE|RWMR|SNMR|GRLE|PMTF|PMTC|REFC|CSNOW|CICEP|CFRZR|CRAIN|LAND|ICEC|TMP:surface|VEG|CCOND|SFEXC|MSLMA|PRES:tropopause|LAI|HPBL|HGT:planetary boundary layer):|ICPRB|SIPD|ICSEV" -new_grid_interpolation neighbor -fi \ + -new_grid ${grid_specs} ${subdir}/${fhr}/tmp_${grid}.grib2 & + else + wgrib2 ${infile} -set_bitmap 1 -set_grib_type c3 -new_grid_winds grid \ + -new_grid_vectors "UGRD:VGRD:USTM:VSTM:VUCSH:VVCSH" \ + -new_grid_interpolation neighbor \ + -new_grid ${grid_specs} ${subdir}/${fhr}/tmp_${grid}.grib2 & + fi + wait + + # Merge vector field records + wgrib2 ${subdir}/${fhr}/tmp_${grid}.grib2 -new_grid_vectors "UGRD:VGRD:USTM:VSTM:VUCSH:VVCSH" -submsg_uv ${bg_remap} & + wait + + # Remove temporary files + rm -f ${subdir}/${fhr}/tmp_${grid}.grib2 + + # Save to com directory + mkdir -p ${comout}/${grid}_grid + cp_vrfy ${bg_remap} ${comout}/${net4}.t${cyc}z.${leveltype}.f${fhr}.${grid}.grib2 + wgrib2 ${comout}/${net4}.t${cyc}z.${leveltype}.f${fhr}.${grid}.grib2 -s > ${comout}/${net4}.t${cyc}z.${leveltype}.f${fhr}.${grid}.grib2.idx + + done + done +fi + +fi # block for parallel or series wgrib2 runs. + +rm_vrfy -rf ${fhr_dir} +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Post-processing for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_prepstart.sh b/scripts/exregional_run_prepstart.sh new file mode 100755 index 000000000..f3fc4663d --- /dev/null +++ b/scripts/exregional_run_prepstart.sh @@ -0,0 +1,1126 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "cycle_subtype" "gridspec_dir" "modelinputdir" "lbcs_root" "fg_root") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in + + "WCOSS2") + ncores=$(( NNODES_RUN_PREPSTART*PPN_RUN_PREPSTART)) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_PREPSTART}" + ;; + + "HERA") + APRUN="srun" + ;; + + "ORION") + APRUN="srun" + ;; + + "JET") + APRUN="srun" + ;; + + "ODIN") + APRUN="srun -n 1" + ;; + + "CHEYENNE") + module list + APRUN="mpirun -np 1" + ;; + + "STAMPEDE") + APRUN="ibrun -n 1" + ;; + + *) + print_err_msg_exit "\ +Run command has not been specified for this machine: + MACHINE = \"$MACHINE\" + APRUN = \"$APRUN\"" + ;; + +esac + +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +YYYYJJJHH=${YYYY}${JJJ}${HH} + +current_time=$(date "+%T") + +YYYYMMDDm1=$(date +%Y%m%d -d "${START_DATE} 1 days ago") +YYYYMMDDm2=$(date +%Y%m%d -d "${START_DATE} 2 days ago") +# +#----------------------------------------------------------------------- +# +# Compute date & time components for the SST analysis time relative to current analysis time +YYJJJ00000000=`date +"%y%j00000000" -d "${START_DATE} 1 day ago"` +YYJJJ1200=`date +"%y%j1200" -d "${START_DATE} 1 day ago"` +YYJJJ2200000000=`date +"%y%j2200000000" -d "${START_DATE} 1 day ago"` + +# +#----------------------------------------------------------------------- +# +# go to INPUT directory. +# prepare initial conditions for ensemble free forecast after ensemble DA +# +#----------------------------------------------------------------------- +if [ ${DO_ENSFCST} = "TRUE" ] && [ ${DO_ENKFUPDATE} = "TRUE" ]; then + cd_vrfy ${modelinputdir} + bkpath=${fg_root}/${YYYYMMDDHH}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/DA_OUTPUT # use DA analysis from DA_OUTPUT + filelistn="fv_core.res.tile1.nc fv_srf_wnd.res.tile1.nc fv_tracer.res.tile1.nc phy_data.nc sfc_data.nc" + checkfile=${bkpath}/coupler.res + n_iolayouty=$(($IO_LAYOUT_Y-1)) + list_iolayout=$(seq 0 $n_iolayouty) + if [ -r "${checkfile}" ] ; then + cp_vrfy ${bkpath}/coupler.res coupler.res + cp_vrfy ${bkpath}/gfs_ctrl.nc gfs_ctrl.nc + cp_vrfy ${bkpath}/fv_core.res.nc fv_core.res.nc + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + cp_vrfy ${bkpath}/${file} ${file} + done + else + for file in ${filelistn}; do + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + cp_vrfy ${bkpath}/${file}.${iii} ${file}.${iii} + done + done + fi + else + print_err_msg_exit "Error: can not find ensemble DA analysis output for running ensemble free forecast, \ + check ${bkpath} for needed files." + fi + SFC_CYC=0 +# +#----------------------------------------------------------------------- +# +else +# +# go to INPUT directory. +# prepare initial conditions for +# cold start if BKTYPE=1 +# warm start if BKTYPE=0 +# spinupcyc + warm start if BKTYPE=2 +# the previous 6 cycles are searched to find the restart files +# valid at this time from the closet previous cycle. +# +#----------------------------------------------------------------------- + +BKTYPE=0 +if [ ${cycle_type} == "spinup" ]; then + echo "spin up cycle" + for cyc_start in "${CYCL_HRS_SPINSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + BKTYPE=1 + fi + done + if [ ${cycle_subtype} == "spinup" ]; then + echo "ensinit cycle - warm start from 1 timestep restart files" + BKTYPE=0 + fi +else + echo " product cycle" + for cyc_start in "${CYCL_HRS_PRODSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + if [ ${DO_SPINUP} == "TRUE" ]; then + BKTYPE=2 # using 1-h forecast from spinup cycle + else + BKTYPE=1 + fi + fi + done +fi + +# cycle surface +SFC_CYC=0 +if [ ${DO_SURFACE_CYCLE} == "TRUE" ]; then # cycle surface fields + if [ ${DO_SPINUP} == "TRUE" ]; then + if [ ${cycle_type} == "spinup" ]; then + for cyc_start in "${CYCL_HRS_SPINSTART[@]}"; do + SFC_CYCL_HH=$(( ${cyc_start} + ${SURFACE_CYCLE_DELAY_HRS} )) + if [ ${HH} -eq ${SFC_CYCL_HH} ]; then + if [ ${SURFACE_CYCLE_DELAY_HRS} == "0" ]; then + SFC_CYC=1 # cold start + else + SFC_CYC=2 # delayed surface cycle + fi + fi + done + fi + else + for cyc_start in "${CYCL_HRS_PRODSTART[@]}"; do + if [ ${HH} -eq ${cyc_start} ]; then + SFC_CYC=1 # cold start + fi + done + fi +fi + +# if do surface surgery, then skip surface cycle +if [ ${YYYYMMDDHH} -eq ${SOIL_SURGERY_time} ] ; then + if [ ${cycle_type} == "spinup" ]; then + SFC_CYC=3 # skip for soil surgery + fi +fi + +cd_vrfy ${modelinputdir} + +if [ ${BKTYPE} -eq 1 ] ; then # cold start, use prepare cold strat initial files from ics + bkpath=${lbcs_root}/$YYYYMMDD$HH${SLASH_ENSMEM_SUBDIR}/ics + if [ -r "${bkpath}/gfs_data.tile7.halo0.nc" ]; then + cp_vrfy ${bkpath}/gfs_bndy.tile7.000.nc gfs_bndy.tile7.000.nc + cp_vrfy ${bkpath}/gfs_ctrl.nc gfs_ctrl.nc + cp_vrfy ${bkpath}/gfs_data.tile7.halo0.nc gfs_data.tile7.halo0.nc + cp_vrfy ${bkpath}/sfc_data.tile7.halo0.nc sfc_data.tile7.halo0.nc + ln_vrfy -s ${bkpath}/gfs_bndy.tile7.000.nc bk_gfs_bndy.tile7.000.nc + ln_vrfy -s ${bkpath}/gfs_data.tile7.halo0.nc bk_gfs_data.tile7.halo0.nc + ln_vrfy -s ${bkpath}/sfc_data.tile7.halo0.nc bk_sfc_data.tile7.halo0.nc + print_info_msg "$VERBOSE" "cold start from $bkpath" + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): cold start at ${current_time} from $bkpath " >> ${EXPTDIR}/log.cycles + fi + else + print_err_msg_exit "Error: cannot find cold start initial condition from : ${bkpath}" + fi + +else + +# Setup the INPUT directory for warm start cycles, which can be spin-up cycle or product cycle. +# +# First decide the source of the first guess (fg_restart_dirname) depending on cycle_type and BKTYPE: +# 1. If cycle is spinup cycle (cycle_type == spinup) or it is the product start cycle (BKTYPE==2), +# looking for the first guess from spinup forecast (fcst_fv3lam_spinup) +# 2. Others, looking for the first guess from product forecast (fcst_fv3lam) +# + if [ ${cycle_type} == "spinup" ] || [ ${BKTYPE} -eq 2 ]; then + fg_restart_dirname=fcst_fv3lam_spinup + else + fg_restart_dirname=fcst_fv3lam + fi +# +# let us figure out which backgound is available +# +# the restart file from FV3 has a name like: ${YYYYMMDD}.${HH}0000.fv_core.res.tile1.nc +# But the restart files for the forecast length has a name like: fv_core.res.tile1.nc +# So the defination of restart_prefix needs a "." at the end. +# + if [ ${cycle_subtype} == "spinup" ] ; then + restart_prefix=$( date "+%Y%m%d.%H%M%S" -d "${YYYYMMDD} ${HH} + ${DT_ATMOS} seconds" ). + else + restart_prefix="${YYYYMMDD}.${HH}0000." + fi + + if [ ${cycle_subtype} == "spinup" ] ; then +# point to the 0-h cycle for the warm start from the 1 timestep restart files + fg_restart_dirname=fcst_fv3lam_ensinit + bkpath=${fg_root}/${YYYYMMDDHH}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART + else + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${DA_CYCLE_INTERV} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART + + n=${DA_CYCLE_INTERV} + while [[ $n -le 6 ]] ; do + checkfile=${bkpath}/${restart_prefix}coupler.res + if [ -r "${checkfile}" ] ; then + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it as background for analysis " + break + else + n=$((n + ${DA_CYCLE_INTERV})) + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${n} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART + print_info_msg "$VERBOSE" "Trying this path: ${bkpath}" + fi + done +# + checkfile=${bkpath}/${restart_prefix}coupler.res +# spin-up cycle is not success, try to find background from full cycle + if [ ! -r "${checkfile}" ] && [ ${BKTYPE} -eq 2 ]; then + print_info_msg "$VERBOSE" "cannot find background from spin-up cycle, try product cycle" + fg_restart_dirname=fcst_fv3lam + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${DA_CYCLE_INTERV} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART +# + restart_prefix="${YYYYMMDD}.${HH}0000." + n=${DA_CYCLE_INTERV} + while [[ $n -le 6 ]] ; do + checkfile=${bkpath}/${restart_prefix}coupler.res + if [ -r "${checkfile}" ] ; then + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it as background for analysis " + break + else + n=$((n + ${DA_CYCLE_INTERV})) + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${n} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART + print_info_msg "$VERBOSE" "Trying this path: ${bkpath}" + fi + done + fi +# + fi + + filelistn="fv_core.res.tile1.nc fv_srf_wnd.res.tile1.nc fv_tracer.res.tile1.nc phy_data.nc sfc_data.nc" + checkfile=${bkpath}/${restart_prefix}coupler.res + n_iolayouty=$(($IO_LAYOUT_Y-1)) + list_iolayout=$(seq 0 $n_iolayouty) + if [ -r "${checkfile}" ] ; then + cp_vrfy ${bkpath}/${restart_prefix}coupler.res bk_coupler.res + cp_vrfy ${bkpath}/${restart_prefix}fv_core.res.nc fv_core.res.nc + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + cp_vrfy ${bkpath}/${restart_prefix}${file} ${file} + ln_vrfy -s ${bkpath}/${restart_prefix}${file} bk_${file} + done + else + for file in ${filelistn}; do + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + cp_vrfy ${bkpath}/${restart_prefix}${file}.${iii} ${file}.${iii} + ln_vrfy -s ${bkpath}/${restart_prefix}${file}.${iii} bk_${file}.${iii} + done + done + fi + if [ ${cycle_subtype} == "spinup" ] ; then + cp_vrfy ${fg_root}/${YYYYMMDDHH}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/INPUT/gfs_ctrl.nc gfs_ctrl.nc + else + cp_vrfy ${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${fg_restart_dirname}/INPUT/gfs_ctrl.nc gfs_ctrl.nc + fi + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): warm start at ${current_time} from ${checkfile} " >> ${EXPTDIR}/log.cycles + fi +# +# remove checksum from restart files. Checksum will cause trouble if model initializes from analysis +# + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + ncatted -a checksum,,d,, ${file} + done + ncatted -O -a source,global,c,c,'FV3GFS GAUSSIAN NETCDF FILE' fv_core.res.tile1.nc + else + for file in ${filelistn}; do + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + ncatted -a checksum,,d,, ${file}.${iii} + done + done + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + ncatted -O -a source,global,c,c,'FV3GFS GAUSSIAN NETCDF FILE' fv_core.res.tile1.nc.${iii} + done + fi + ncatted -a checksum,,d,, fv_core.res.nc + +# generate coupler.res with right date + if [ ${cycle_subtype} == "spinup" ]; then +# from the 1 timestep restart files + head -2 bk_coupler.res > coupler.res + head -2 bk_coupler.res | tail -1 >> coupler.res + else + head -1 bk_coupler.res > coupler.res + tail -1 bk_coupler.res >> coupler.res + tail -1 bk_coupler.res >> coupler.res + fi + else + print_err_msg_exit "Error: cannot find background: ${checkfile}" + fi +fi + +#----------------------------------------------------------------------- +# +# do snow/ice update at ${SNOWICE_update_hour}z for the restart sfc_data.nc +# +#----------------------------------------------------------------------- + +if [ ${HH} -eq ${SNOWICE_update_hour} ] && [ ${cycle_type} == "prod" ] ; then + echo "Update snow cover based on imssnow at ${SNOWICE_update_hour}z" + if [ -r "${IMSSNOW_ROOT}/latest.SNOW_IMS" ]; then + cp ${IMSSNOW_ROOT}/latest.SNOW_IMS . + elif [ -r "${IMSSNOW_ROOT}/${YYJJJ2200000000}" ]; then + cp ${IMSSNOW_ROOT}/${YYJJJ2200000000} latest.SNOW_IMS + elif [ -r "${IMSSNOW_ROOT}/rap.${YYYYMMDD}/rap.t${HH}z.imssnow.grib2" ]; then + cp ${IMSSNOW_ROOT}/rap.${YYYYMMDD}/rap.t${HH}z.imssnow.grib2 latest.SNOW_IMS + elif [ -r "${IMSSNOW_ROOT}/rap.${YYYYMMDD}/rap_e.t${HH}z.imssnow.grib2" ]; then + cp ${IMSSNOW_ROOT}/rap_e.${YYYYMMDD}/rap_e.t${HH}z.imssnow.grib2 latest.SNOW_IMS + else + echo "${IMSSNOW_ROOT} data does not exist!!" + echo "ERROR: No snow update at ${HH}!!!!" + fi + if [ -r "latest.SNOW_IMS" ]; then + ln_vrfy -sf ./latest.SNOW_IMS imssnow2 + + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -sf ${FIX_GSI}/${PREDEF_GRID_NAME}/fv3_grid_spec fv3_grid_spec + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec.${iii} + done + fi +# +# copy executable +# + snowice_exec_fn="process_imssnow_fv3lam.exe" + snowice_exec_fp="$EXECDIR/${snowice_exec_fn}" + if [ ! -f "${snowice_exec_fp}" ]; then + print_err_msg_exit "\ +The executable (snowice_exec_fn) for processing snow/ice data onto FV3-LAM +native grid does not exist: + snowice_exec_fp= \"${snowice_exec_fp}\" +Please ensure that you have built this executable." + fi + cp_vrfy ${snowice_exec_fp} . + + ${APRUN} ./${snowice_exec_fn} ${IO_LAYOUT_Y} || \ + print_err_msg_exit "\ + Call to executable (fvcom_exe) to modify sfc fields for FV3-LAM failed: + snowice_exe = \"${snowice_exec_fp}\" + The following variables were being used: + list_iolayout = \"${list_iolayout}\"" + + snowice_reference_time=$(wgrib2 -t latest.SNOW_IMS | tail -1) + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): update snow/ice using ${snowice_reference_time}" >> ${EXPTDIR}/log.cycles + fi + else + echo "ERROR: No latest IMS SNOW file for update at ${YYYYMMDDHH}!!!!" + fi +else + echo "NOTE: No update for IMS SNOW/ICE at ${YYYYMMDDHH}!" +fi +#----------------------------------------------------------------------- +# +# do SST update at ${SST_update_hour}z for the restart sfc_data.nc +# +#----------------------------------------------------------------------- +if [ ${HH} -eq ${SST_update_hour} ] && [ ${cycle_type} == "prod" ] ; then + echo "Update SST at ${SST_update_hour}z" + if [ -r "${SST_ROOT}/latest.SST" ]; then + cp ${SST_ROOT}/latest.SST . + elif [ -r "${SST_ROOT}/${YYJJJ00000000}" ]; then + cp ${SST_ROOT}/${YYJJJ00000000} latest.SST + elif [ -r "${SST_ROOT}/nsst.$YYYYMMDD/rtgssthr_grb_0.083.grib2" ]; then + cp ${SST_ROOT}/nsst.$YYYYMMDD/rtgssthr_grb_0.083.grib2 latest.SST + elif [ -r "${SST_ROOT}/nsst.$YYYYMMDDm1/rtgssthr_grb_0.083.grib2" ]; then + cp ${SST_ROOT}/nsst.$YYYYMMDDm1/rtgssthr_grb_0.083.grib2 latest.SST + else + echo "${SST_ROOT} data does not exist!!" + echo "ERROR: No SST update at ${HH}!!!!" + fi + if [ -r "latest.SST" ]; then + cp_vrfy ${FIXgsm}/RTG_SST_landmask.dat RTG_SST_landmask.dat + ln_vrfy -sf ./latest.SST SSTRTG + cp_vrfy ${FIX_GSI}/${PREDEF_GRID_NAME}/fv3_akbk fv3_akbk + +cat << EOF > sst.namelist +&setup + bkversion=1, + iyear=${YYYY} + imonth=${MM} + iday=${DD} + ihr=${HH} +/ +EOF + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -sf ${FIX_GSI}/${PREDEF_GRID_NAME}/fv3_grid_spec fv3_grid_spec + ${EXECDIR}/process_updatesst.exe > stdout_sstupdate 2>&1 + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec + ln_vrfy -sf sfc_data.nc.${iii} sfc_data.nc + ${EXECDIR}/process_updatesst.exe > stdout_sstupdate.${iii} 2>&1 + ls -l > list_sstupdate.${iii} + done + rm -f sfc_data.nc + fi + + sst_reference_time=$(wgrib2 -t latest.SST) + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): update SST using ${sst_reference_time}" >> ${EXPTDIR}/log.cycles + fi + else + echo "ERROR: No latest SST file for update at ${YYYYMMDDHH}!!!!" + fi +else + echo "NOTE: No update for SST at ${YYYYMMDDHH}!" +fi + +#----------------------------------------------------------------------- +# +# smoke/dust cycling +# +#----------------------------------------------------------------------- +if [ "${DO_SMOKE_DUST}" = "TRUE" ] && [ ${cycle_type} == "spinup" ] ; then # cycle smoke/dust fields + if [ ${HH} -eq 4 ] || [ ${HH} -eq 16 ] ; then + +# figure out which surface is available + surface_file_dir_name=fcst_fv3lam + bkpath_find="missing" + restart_prefix_find="missing" + if [ "${bkpath_find}" == "missing" ]; then + restart_prefix=$( date +%Y%m%d.%H0000. -d "${START_DATE}" ) + + offset_hours=${DA_CYCLE_INTERV} + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${offset_hours} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${surface_file_dir_name}/RESTART + + n=${DA_CYCLE_INTERV} + while [[ $n -le 6 ]] ; do + if [ "${IO_LAYOUT_Y}" == "1" ]; then + checkfile=${bkpath}/${restart_prefix}fv_tracer.res.tile1.nc + else + checkfile=${bkpath}/${restart_prefix}fv_tracer.res.tile1.nc.0000 + fi + if [ -r "${checkfile}" ] && [ "${bkpath_find}" == "missing" ]; then + bkpath_find=${bkpath} + restart_prefix_find=${restart_prefix} + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it for smoke/dust cycle " + break + fi + + n=$((n + ${DA_CYCLE_INTERV})) + offset_hours=${n} + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${offset_hours} hours ago" ) + bkpath=${fg_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/${surface_file_dir_name}/RESTART # cycling, use background from RESTART + print_info_msg "$VERBOSE" "Trying this path: ${bkpath}" + done + fi + +# cycle smoke/dust + rm -f cycle_smoke_dust.done + if [ "${bkpath_find}" == "missing" ]; then + print_info_msg "Warning: cannot find smoke/dust files from previous cycle" + else + if [ "${IO_LAYOUT_Y}" == "1" ]; then + checkfile=${bkpath_find}/${restart_prefix_find}fv_tracer.res.tile1.nc + if [ -r "${checkfile}" ]; then + ncks -A -v smoke,dust ${checkfile} fv_tracer.res.tile1.nc + fi + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + checkfile=${bkpath_find}/${restart_prefix_find}fv_tracer.res.tile1.nc.${iii} + if [ -r "${checkfile}" ]; then + ncks -A -v smoke,dust ${checkfile} fv_tracer.res.tile1.nc.${iii} + fi + done + fi + echo "${YYYYMMDDHH}(${cycle_type}): cycle smoke/dust from ${checkfile} " >> ${EXPTDIR}/log.cycles + fi + fi +fi +#----------------------------------------------------------------------- +# +# surface cycling +# +#----------------------------------------------------------------------- +#SFC_CYC=2 +if_update_ice="TRUE" +if [ ${SFC_CYC} -eq 1 ] || [ ${SFC_CYC} -eq 2 ] ; then # cycle surface fields + +# figure out which surface is available + surface_file_dir_name=surface + restart_prefix_find="missing" + restart_suffix_find="missing" + bkpath=${fg_root}/${surface_file_dir_name} + + restart_prefix=$( date +%Y%m%d.%H0000. -d "${START_DATE}" ) + if [ -r "${bkpath}/${restart_prefix}sfc_data.nc.sync" ]; then + restart_prefix_find=${restart_prefix} + restart_suffix_find="sync" + else + for ndayinhour in 00 24 48 72 + do + if [ "${restart_suffix_find}" == "missing" ]; then + restart_prefix=$( date +%Y%m%d.%H0000. -d "${START_DATE} ${ndayinhour} hours ago" ) + + offset_hours=$(( ${DA_CYCLE_INTERV} + ${ndayinhour} )) + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${offset_hours} hours ago" ) + + n=${DA_CYCLE_INTERV} + while [[ $n -le 6 ]] ; do + if [ "${IO_LAYOUT_Y}" == "1" ]; then + checkfile=${bkpath}/${restart_prefix}sfc_data.nc.${YYYYMMDDHHmInterv} + else + checkfile=${bkpath}/${restart_prefix}sfc_data.nc.${YYYYMMDDHHmInterv}.0000 + fi + if [ -r "${checkfile}" ] && [ "${restart_suffix_find}" == "missing" ]; then + restart_prefix_find=${restart_prefix} + restart_suffix_find=${YYYYMMDDHHmInterv} + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it as surface for analysis " + fi + + n=$((n + ${DA_CYCLE_INTERV})) + offset_hours=$(( ${n} + ${ndayinhour} )) + YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${offset_hours} hours ago" ) + print_info_msg "$VERBOSE" "Trying this cycle: ${YYYYMMDDHHmInterv}" + done + fi + done + fi +# rename the soil mositure and temperature fields in restart file + rm -f cycle_surface.done + if [ "${restart_suffix_find}" == "missing" ] || [ "${restart_prefix_find}" == "missing" ]; then + print_info_msg "Warning: cannot find surface from previous cycle" + else + if [ "${IO_LAYOUT_Y}" == "1" ]; then + checkfile=${bkpath}/${restart_prefix_find}sfc_data.nc.${restart_suffix_find} + else + checkfile=${bkpath}/${restart_prefix_find}sfc_data.nc.${restart_suffix_find}.0000 + fi + if [ -r "${checkfile}" ]; then + if [ ${SFC_CYC} -eq 1 ]; then # cycle surface at cold start cycle + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy ${checkfile} ${restart_prefix_find}sfc_data.nc + mv sfc_data.tile7.halo0.nc cold.sfc_data.tile7.halo0.nc + ncks -v geolon,geolat cold.sfc_data.tile7.halo0.nc geolonlat.nc + ln_vrfy -sf ${restart_prefix_find}sfc_data.nc sfc_data.tile7.halo0.nc + ncks --append geolonlat.nc sfc_data.tile7.halo0.nc + ncrename -v tslb,stc -v smois,smc -v sh2o,slc sfc_data.tile7.halo0.nc + else + print_info_msg "Warning: cannot do surface cycle in cold start with sudomain restart files" + fi + else + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy ${checkfile} ${restart_prefix_find}sfc_data.nc + mv sfc_data.nc gfsice.sfc_data.nc + mv ${restart_prefix_find}sfc_data.nc sfc_data.nc + ncatted -a checksum,,d,, sfc_data.nc + if [ "${if_update_ice}" == "TRUE" ]; then + ${EXECDIR}/update_ice.exe > stdout_cycleICE 2>&1 + fi + else + checkfile=${bkpath}/${restart_prefix_find}sfc_data.nc.${restart_suffix_find} + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy ${checkfile}.${iii} ${restart_prefix_find}sfc_data.nc.${iii} + mv sfc_data.nc.${iii} gfsice.sfc_data.nc.${iii} + mv ${restart_prefix_find}sfc_data.nc.${iii} sfc_data.nc.${iii} + ncatted -a checksum,,d,, sfc_data.nc.${iii} + done + ls -l > list_cycle_sfc + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf sfc_data.nc.${iii} sfc_data.nc + ln_vrfy -sf gfsice.sfc_data.nc.${iii} gfsice.sfc_data.nc + if [ "${if_update_ice}" == "TRUE" ]; then + ${EXECDIR}/update_ice.exe > stdout_cycleICE.${iii} 2>&1 + fi + done + rm -f sfc_data.nc gfsice.sfc_data.nc + fi + fi + echo "cycle surface with ${checkfile}" > cycle_surface.done + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): cycle surface with ${checkfile} " >> ${EXPTDIR}/log.cycles + fi + else + print_info_msg "Warning: cannot find surface from previous cycle" + fi + fi +fi + +#----------------------------------------------------------------------- +# +# do update_GVF at ${GVF_update_hour}z for the restart sfc_data.nc +# +#----------------------------------------------------------------------- +if [ ${HH} -eq ${GVF_update_hour} ] && [ ${cycle_type} == "spinup" ]; then + latestGVF=$(ls ${GVF_ROOT}/GVF-WKL-GLB_v?r?_npp_s*_e${YYYYMMDDm1}_c${YYYYMMDD}*.grib2) + latestGVF2=$(ls ${GVF_ROOT}/GVF-WKL-GLB_v?r?_npp_s*_e${YYYYMMDDm2}_c${YYYYMMDDm1}*.grib2) + if [ ! -r "${latestGVF}" ]; then + if [ -r "${latestGVF2}" ]; then + latestGVF=${latestGVF2} + else + print_info_msg "Warning: cannot find GVF observation file" + fi + fi + + if [ -r "${latestGVF}" ]; then + cp_vrfy ${latestGVF} ./GVF-WKL-GLB.grib2 + ln_vrfy -sf ${FIX_GSI}/gvf_VIIRS_4KM.MAX.1gd4r.new gvf_VIIRS_4KM.MAX.1gd4r.new + ln_vrfy -sf ${FIX_GSI}/gvf_VIIRS_4KM.MIN.1gd4r.new gvf_VIIRS_4KM.MIN.1gd4r.new + + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -sf ${FIX_GSI}/${PREDEF_GRID_NAME}/fv3_grid_spec fv3_grid_spec + ${EXECDIR}/update_GVF.exe > stdout_updateGVF 2>&1 + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec + ln_vrfy -sf sfc_data.nc.${iii} sfc_data.nc + ${EXECDIR}/update_GVF.exe > stdout_updateGVF.${iii} 2>&1 + ls -l > list_updateGVF.${iii} + done + rm -f sfc_data.nc + fi + + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): update GVF with ${latestGVF} " >> ${EXPTDIR}/log.cycles + fi + fi +fi + +fi +#----------------------------------------------------------------------- +# +# go to INPUT directory. +# prepare boundary conditions: +# the previous 12 cycles are searched to find the boundary files +# that can cover the forecast length. +# The 0-h boundary is copied and others are linked. +# +#----------------------------------------------------------------------- + +if [[ "${NET}" = "RTMA"* ]]; then + #find a bdry file, make sure it exists and was written out completely. + for i in $(seq 0 24); do #track back up to 24 cycles to find bdry files + lbcDIR="${lbcs_root}/$(date -d "${START_DATE} ${i} hours ago" +"%Y%m%d%H")/lbcs" + if [[ -f ${lbcDIR}/gfs_bndy.tile7.001.nc ]]; then + age=$(( $(date +%s) - $(date -r ${lbcDIR}/gfs_bndy.tile7.001.nc +%s) )) + [[ age -gt 300 ]] && break + fi + done + ln_vrfy -snf ${lbcDIR}/gfs_bndy.tile7.000.nc . + ln_vrfy -snf ${lbcDIR}/gfs_bndy.tile7.001.nc . + +else + num_fhrs=( "${#FCST_LEN_HRS_CYCLES[@]}" ) + ihh=$( expr ${HH} + 0 ) + if [ ${num_fhrs} -gt ${ihh} ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_CYCLES[${ihh}]} + else + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS} + fi + if [ ${cycle_type} == "spinup" ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_SPINUP} + fi + print_info_msg "$VERBOSE" " The forecast length for cycle (\"${HH}\") is + ( \"${FCST_LEN_HRS_thiscycle}\") " + +# let us figure out which boundary file is available + bndy_prefix=gfs_bndy.tile7 + n=${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS} + end_search_hr=$(( 12 + ${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS} )) + YYYYMMDDHHmInterv=$(date +%Y%m%d%H -d "${START_DATE} ${n} hours ago") + lbcs_path=${lbcs_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/lbcs + while [[ $n -le ${end_search_hr} ]] ; do + last_bdy_time=$(( n + ${FCST_LEN_HRS_thiscycle} )) + last_bdy=$(printf %3.3i $last_bdy_time) + checkfile=${lbcs_path}/${bndy_prefix}.${last_bdy}.nc + if [ -r "${checkfile}" ]; then + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it as boundary for forecast " + break + else + n=$((n + 1)) + YYYYMMDDHHmInterv=$(date +%Y%m%d%H -d "${START_DATE} ${n} hours ago") + lbcs_path=${lbcs_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/lbcs + fi + done +# + relative_or_null="--relative" + nb=1 + if [ -r "${checkfile}" ]; then + while [ $nb -le ${FCST_LEN_HRS_thiscycle} ] + do + bdy_time=$(( ${n} + ${nb} )) + this_bdy=$(printf %3.3i $bdy_time) + local_bdy=$(printf %3.3i $nb) + + if [ -f "${lbcs_path}/${bndy_prefix}.${this_bdy}.nc" ]; then + ln_vrfy -sf ${relative_or_null} ${lbcs_path}/${bndy_prefix}.${this_bdy}.nc ${bndy_prefix}.${local_bdy}.nc + fi + + nb=$((nb + 1)) + done +# check 0-h boundary condition + if [ ! -f "${bndy_prefix}.000.nc" ]; then + this_bdy=$(printf %3.3i ${n}) + cp_vrfy ${lbcs_path}/${bndy_prefix}.${this_bdy}.nc ${bndy_prefix}.000.nc + fi + else + print_err_msg_exit "Error: cannot find boundary file: ${checkfile}" + fi + +fi + +# +#----------------------------------------------------------------------- +# +# conduct surface surgery to get new vtype and stype +# +#----------------------------------------------------------------------- +if [ ${YYYYMMDDHH} -eq 2100010100 ] ; then + if [ ${cycle_type} == "spinup" ]; then + cp_vrfy sfc_data.tile7.halo0.nc sfc_data.tile7.halo0.nc_old + if [ -r ${FIXLAM}/stypdom_double.nc ]; then + ncks -A -v stype ${FIXLAM}/stypdom_double.nc sfc_data.tile7.halo0.nc + fi + if [ -r ${FIXLAM}/vtypdom_double.nc ]; then + ncks -A -v vtype ${FIXLAM}/vtypdom_double.nc sfc_data.tile7.halo0.nc + fi + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): replace stype and vtype " >> ${EXPTDIR}/log.cycles + fi + fi +fi +# +#----------------------------------------------------------------------- +# +# condut surface surgery to transfer RAP/HRRR surface fields into RRFS. +# +# This surgery only needs to be done once to give RRFS a good start of the surfcase. +# Please consult Ming or Tanya first before turning on this surgery. +# +#----------------------------------------------------------------------- +# +if [ ${SFC_CYC} -eq 3 ] ; then + + do_lake_surgery=".false." + if [ "${USE_CLM}" = "TRUE" ]; then + do_lake_surgery=".true." + fi +# raphrrr_com=/mnt/lfs4/BMC/rtwbl/mhu/wcoss/nco/com/ +# ln -s ${raphrrr_com}/rap/prod/rap.${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke sfc_rap +# ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/conus/hrrr.t${HH}z.wrf_inout sfc_hrrr +# ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/alaska/hrrrak.t${HH}z.wrf_inout sfc_hrrrak + raphrrr_com=${RAPHRR_SOIL_ROOT} + rapfile='missing' + hrrrfile='missing' + hrrr_akfile='missing' + if [ -r ${raphrrr_com}/${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke ]; then + ln -s ${raphrrr_com}/${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke sfc_rap + rapfile='sfc_rap' + elif [ -r ${raphrrr_com}/rap/prod/rap.${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke ]; then + ln -s ${raphrrr_com}/rap/prod/rap.${YYYYMMDD}/rap.t${HH}z.wrf_inout_smoke sfc_rap + rapfile='sfc_rap' + fi + if [ -r ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout ]; then + ln -s ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout sfc_hrrr + hrrrfile='sfc_hrrr' + elif [ -r ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/conus/hrrr.t${HH}z.wrf_inout ]; then + ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/conus/hrrr.t${HH}z.wrf_inout sfc_hrrr + hrrrfile='sfc_hrrr' + fi + if [ -r ${raphrrr_com}/${YYYYMMDD}/hrrrak.t${HH}z.wrf_inout ]; then + ln -s ${raphrrr_com}/${YYYYMMDD}/hrrr.t${HH}z.wrf_inout sfc_hrrrak + hrrr_akfile='sfc_hrrrak' + elif [ -r ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/alaska/hrrrak.t${HH}z.wrf_inout ]; then + ln -s ${raphrrr_com}/hrrr/prod/hrrr.${YYYYMMDD}/alaska/hrrrak.t${HH}z.wrf_inout sfc_hrrrak + hrrr_akfile='sfc_hrrrak' + fi + + exect="use_raphrrr_sfc.exe" + if [ -f ${EXECDIR}/$exect ]; then + print_info_msg "$VERBOSE" " + Copying the surface surgery executable to the run directory..." + cp_vrfy ${EXECDIR}/${exect} ${exect} + + if [ "${IO_LAYOUT_Y}" == "1" ]; then + ln_vrfy -sf ${FIX_GSI}/${PREDEF_GRID_NAME}/fv3_grid_spec fv3_grid_spec + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf ${gridspec_dir}/fv3_grid_spec.${iii} fv3_grid_spec + done + fi + +for file in ${rapfile} ${hrrrfile} ${hrrr_akfile} +do + + if [ "${file}" == "missing" ]; then + continue + else + if [ "${file}" == "${rapfile}" ]; then + +cat << EOF > use_raphrrr_sfc.namelist +&setup +rapfile=${rapfile} +hrrrfile='missing' +hrrr_akfile='missing' +rrfsfile='sfc_data.nc' +do_lake_surgery=${do_lake_surgery} +/ +EOF +cp use_raphrrr_sfc.namelist use_raphrrr_sfc.namelist_rap + elif [ "${file}" == "${hrrrfile}" ]; then + +cat << EOF > use_raphrrr_sfc.namelist +&setup +rapfile='missing' +hrrrfile=${hrrrfile} +hrrr_akfile='missing' +rrfsfile='sfc_data.nc' +do_lake_surgery=${do_lake_surgery} +/ +EOF +cp use_raphrrr_sfc.namelist use_raphrrr_sfc.namelist_hrrr + + elif [ "${file}" == "${hrrr_akfile}" ]; then + +cat << EOF > use_raphrrr_sfc.namelist +&setup +rapfile='missing' +hrrrfile='missing' +hrrr_akfile=${hrrr_akfile} +rrfsfile='sfc_data.nc' +do_lake_surgery=${do_lake_surgery} +/ +EOF +cp use_raphrrr_sfc.namelist use_raphrrr_sfc.namelist_hrrrak + fi + +fi + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy sfc_data.nc sfc_data.nc_read + ./${exect} > stdout_sfc_sugery.${file} 2>&1 || print_info_msg "\ + Call to executable to run surface surgery returned with nonzero exit code." + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + ln_vrfy -sf sfc_data.nc.${iii} sfc_data.nc + cp_vrfy sfc_data.nc sfc_data.nc_read + ./${exect} > stdout_sfc_sugery.${iii}.${file} 2>&1 || print_info_msg "\ + Call to executable to run surface surgery returned with nonzero exit code." + ls -l > list_sfc_sugery.${iii} + done + rm -f sfc_data.nc + fi +done + + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): run surface surgery" >> ${EXPTDIR}/log.cycles + fi + else + print_info_msg "\ + The executable specified in exect does not exist: + exect = \"${EXECDIR}/$exect\" + Build executable and rerun." + fi +fi + +# +#----------------------------------------------------------------------- +# +# Process FVCOM Data +# +#----------------------------------------------------------------------- +# +if [ "${USE_FVCOM}" = "TRUE" ] && [ ${SFC_CYC} -eq 2 ] ; then + +# Remap the FVCOM output from the 5 lakes onto the RRFS grid + if [ "${PREP_FVCOM}" = "TRUE" ]; then + ${SCRIPTSDIR}/exregional_prep_fvcom.sh \ + modelinputdir="${modelinputdir}" \ + FIXLAM="${FIXLAM}" \ + FVCOM_DIR="${FVCOM_DIR}" \ + YYYYJJJHH="${YYYYJJJHH}" \ + YYYYMMDD="${YYYYMMDD}" \ + YYYYMMDDm1="${YYYYMMDDm1}" \ + HH="${HH}" || \ + print_err_msg_exit "\ + Call to ex-script failed." + + cd_vrfy ${modelinputdir} +# FVCOM_DIR needs to be redefined here to find + FVCOM_DIR=${modelinputdir}/fvcom_remap + latest_fvcom_file="${FVCOM_DIR}/${FVCOM_FILE}" + fvcomtime=${YYYYJJJHH} + fvcom_data_fp="${latest_fvcom_file}_${fvcomtime}.nc" + else + latest_fvcom_file="${FVCOM_DIR}/${FVCOM_FILE}" + if [ ${HH} -gt 12 ]; then + starttime_fvcom="$(date +%Y%m%d -d "${START_DATE}") 12" + else + starttime_fvcom="$(date +%Y%m%d -d "${START_DATE}") 00" + fi + for ii in $(seq 0 3) + do + jumphour=$((${ii} * 12)) + fvcomtime=$(date +%Y%j%H -d "${starttime_fvcom} ${jumphour} hours ago") + fvcom_data_fp="${latest_fvcom_file}_${fvcomtime}.nc" + if [ -f "${fvcom_data_fp}" ]; then + break + fi + done + fi + + if [ ! -f "${fvcom_data_fp}" ]; then + print_info_msg "\ +The file or path (fvcom_data_fp) does not exist: + fvcom_data_fp = \"${fvcom_data_fp}\" +Please check the following user defined variables: + FVCOM_DIR = \"${FVCOM_DIR}\" + FVCOM_FILE= \"${FVCOM_FILE}\" " + + else + cp_vrfy ${fvcom_data_fp} fvcom.nc + +#Format for fvcom_time: YYYY-MM-DDTHH:00:00.000000 + fvcom_time="${YYYY}-${MM}-${DD}T${HH}:00:00.000000" + fvcom_exec_fn="fvcom_to_FV3" + fvcom_exec_fp="$EXECDIR/${fvcom_exec_fn}" + if [ ! -f "${fvcom_exec_fp}" ]; then + print_err_msg_exit "\ +The executable (fvcom_exec_fp) for processing FVCOM data onto FV3-LAM +native grid does not exist: + fvcom_exec_fp = \"${fvcom_exec_fp}\" +Please ensure that you've built this executable." + fi + cp_vrfy ${fvcom_exec_fp} . + +# decide surface + if [ ${BKTYPE} -eq 1 ] ; then + FVCOM_WCSTART='cold' + surface_file='sfc_data.tile7.halo0.nc' + else + FVCOM_WCSTART='warm' + surface_file='sfc_data.nc' + fi + +# + ${APRUN} ./${fvcom_exec_fn} ${surface_file} fvcom.nc ${FVCOM_WCSTART} ${fvcom_time} ${IO_LAYOUT_Y} || \ + print_err_msg_exit "\ +Call to executable (fvcom_exe) to modify sfc fields for FV3-LAM failed: + fvcom_exe = \"${fvcom_exec_fn}\" +The following variables were being used: + FVCOM_DIR = \"${FVCOM_DIR}\" + FVCOM_FILE = \"${FVCOM_FILE}\" + fvcom_time = \"${fvcom_time}\" + FVCOM_WCSTART = \"${FVCOM_WCSTART}\" + " + fi +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Prepare start completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_prepstart_ensmean.sh b/scripts/exregional_run_prepstart_ensmean.sh new file mode 100755 index 000000000..973deb780 --- /dev/null +++ b/scripts/exregional_run_prepstart_ensmean.sh @@ -0,0 +1,167 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_type" "modelinputdir" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} +# +#----------------------------------------------------------------------- +# +# go to INPUT directory. +# +#----------------------------------------------------------------------- + +cd_vrfy ${modelinputdir} + +# +#-------------------------------------------------------------------- +# +# link the deterministic (control) member restart files as the ensemble mean +# to get the reference obs.input in the GSI observer run +# +#-------------------------------------------------------------------- +# + +fg_restart_dirname=fcst_fv3lam +fg_restart_dirname_spinup=fcst_fv3lam_spinup + +YYYYMMDDHHmInterv=$( date +%Y%m%d%H -d "${START_DATE} ${DA_CYCLE_INTERV} hours ago" ) +bkpath=${ENSCTRL_NWGES_BASEDIR}/${YYYYMMDDHHmInterv}/${fg_restart_dirname}/RESTART # cycling, use background from RESTART +bkpath_spinup=${ENSCTRL_NWGES_BASEDIR}/${YYYYMMDDHHmInterv}/${fg_restart_dirname_spinup}/RESTART # cycling, use background from RESTART + +# +# the restart file from FV3 has a name like: ${YYYYMMDD}.${HH}0000.fv_core.res.tile1.nc +# + +restart_prefix="${YYYYMMDD}.${HH}0000." +checkfile=${bkpath}/${restart_prefix}coupler.res +checkfile_spinup=${bkpath_spinup}/${restart_prefix}coupler.res +if [ -r "${checkfile}" ] ; then + cp_vrfy -f ${checkfile} coupler.res + ln_vrfy -snf ${bkpath}/${restart_prefix}fv_core.res.nc fv_core.res.nc + ln_vrfy -snf ${bkpath}/${restart_prefix}fv_core.res.tile1.nc fv_core.res.tile1.nc + ln_vrfy -snf ${bkpath}/${restart_prefix}fv_tracer.res.tile1.nc fv_tracer.res.tile1.nc + ln_vrfy -snf ${bkpath}/${restart_prefix}sfc_data.nc sfc_data.nc + ln_vrfy -snf ${bkpath}/${restart_prefix}fv_srf_wnd.res.tile1.nc fv_srf_wnd.res.tile1.nc + ln_vrfy -snf ${bkpath}/${restart_prefix}phy_data.nc phy_data.nc +elif [ -r "${checkfile_spinup}" ] ; then + cp_vrfy -f ${checkfile_spinup} coupler.res + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}fv_core.res.nc fv_core.res.nc + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}fv_core.res.tile1.nc fv_core.res.tile1.nc + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}fv_tracer.res.tile1.nc fv_tracer.res.tile1.nc + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}sfc_data.nc sfc_data.nc + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}fv_srf_wnd.res.tile1.nc fv_srf_wnd.res.tile1.nc + ln_vrfy -snf ${bkpath_spinup}/${restart_prefix}phy_data.nc phy_data.nc +else + print_err_msg_exit "Error: cannot find deterministic (control) warm start files from : ${bkpath} or ${bkpath_spinup}" +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Prepare start completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_prepstart_fromext.sh b/scripts/exregional_run_prepstart_fromext.sh new file mode 100755 index 000000000..95095658a --- /dev/null +++ b/scripts/exregional_run_prepstart_fromext.sh @@ -0,0 +1,317 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs a analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_dir" "cycle_type" "modelinputdir" "lbcs_root" "fg_root") +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +case $MACHINE in + + "WCOSS2") + APRUN="mpiexec -n 1 -ppn 1" + ;; + + "HERA") + APRUN="srun" + ;; + + "ORION") + APRUN="srun" + ;; + + "JET") + APRUN="srun" + ;; + + "ODIN") + APRUN="srun -n 1" + ;; + + "CHEYENNE") + module list + APRUN="mpirun -np 1" + ;; + + "STAMPEDE") + APRUN="ibrun -n 1" + ;; + + *) + print_err_msg_exit "\ +Run command has not been specified for this machine: + MACHINE = \"$MACHINE\" + APRUN = \"$APRUN\"" + ;; + +esac + +# +#----------------------------------------------------------------------- +# +# Load modules. +# +#----------------------------------------------------------------------- +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +current_time=$(date "+%T") + +YYYYMMDDm1=$(date +%Y%m%d -d "${START_DATE} 1 days ago") +YYYYMMDDm2=$(date +%Y%m%d -d "${START_DATE} 2 days ago") +# +#----------------------------------------------------------------------- +# +# go to INPUT directory. +# prepare initial conditions for +# cold start if BKTYPE=1 +# warm start if BKTYPE=0 +# spinupcyc + warm start if BKTYPE=2 +# the previous 6 cycles are searched to find the restart files +# valid at this time from the closet previous cycle. +# +#----------------------------------------------------------------------- +cd_vrfy ${modelinputdir} +bkpath=${fg_root}/${YYYYMMDDHH}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/INPUT # cycling, use background from INPUT + +checkfile=${bkpath}/coupler.res +# +restart_prefix="" +filelistn="fv_core.res.tile1.nc fv_srf_wnd.res.tile1.nc fv_tracer.res.tile1.nc phy_data.nc sfc_data.nc gfs_ctrl.nc" +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) +if [ -r "${checkfile}" ] ; then + cp_vrfy ${bkpath}/${restart_prefix}coupler.res bk_coupler.res + cp_vrfy ${bkpath}/${restart_prefix}fv_core.res.nc fv_core.res.nc + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + cp_vrfy ${bkpath}/${restart_prefix}${file} ${file} + done + else + for file in ${filelistn}; do + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + cp_vrfy ${bkpath}/${restart_prefix}${file}.${iii} ${file}.${iii} + done + done + fi + cp_vrfy ${fg_root}/${YYYYMMDDHH}${SLASH_ENSMEM_SUBDIR}/fcst_fv3lam/INPUT/gfs_ctrl.nc gfs_ctrl.nc + if [ ${SAVE_CYCLE_LOG} == "TRUE" ] ; then + echo "${YYYYMMDDHH}(${cycle_type}): warm start at ${current_time} from ${checkfile} " >> ${EXPTDIR}/log.cycles + fi +# +# remove checksum from restart files. Checksum will cause trouble if model initializes from analysis +# + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + ncatted -a checksum,,d,, ${file} + done + else + for file in ${filelistn}; do + for ii in $list_iolayout + do + iii=$(printf %4.4i $ii) + ncatted -a checksum,,d,, ${file}.${iii} + done + done + fi + ncatted -a checksum,,d,, fv_core.res.nc + +# generate coupler.res with right date + head -1 bk_coupler.res > coupler.res + tail -1 bk_coupler.res >> coupler.res + tail -1 bk_coupler.res >> coupler.res +else + print_err_msg_exit "Error: cannot find background: ${checkfile}" +fi + +#----------------------------------------------------------------------- +# +# go to INPUT directory. +# prepare boundary conditions: +# the previous 12 cycles are searched to find the boundary files +# that can cover the forecast length. +# The 0-h boundary is copied and others are linked. +# +#----------------------------------------------------------------------- + +if [[ "${NET}" = "RTMA"* ]]; then + #find a bdry file, make sure it exists and was written out completely. + for i in $(seq 0 24); do #track back up to 24 cycles to find bdry files + lbcDIR="${lbcs_root}/$(date -d "${START_DATE} ${i} hours ago" +"%Y%m%d%H")/lbcs" + if [[ -f ${lbcDIR}/gfs_bndy.tile7.001.nc ]]; then + age=$(( $(date +%s) - $(date -r ${lbcDIR}/gfs_bndy.tile7.001.nc +%s) )) + [[ age -gt 300 ]] && break + fi + done + ln_vrfy -snf ${lbcDIR}/gfs_bndy.tile7.000.nc . + ln_vrfy -snf ${lbcDIR}/gfs_bndy.tile7.001.nc . + +else + num_fhrs=( "${#FCST_LEN_HRS_CYCLES[@]}" ) + ihh=$( expr ${HH} + 0 ) + if [ ${num_fhrs} -gt ${ihh} ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_CYCLES[${ihh}]} + else + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS} + fi + if [ ${cycle_type} == "spinup" ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_SPINUP} + fi + print_info_msg "$VERBOSE" " The forecast length for cycle (\"${HH}\") is + ( \"${FCST_LEN_HRS_thiscycle}\") " + +# let us figure out which boundary file is available + bndy_prefix=gfs_bndy.tile7 + n=${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS} + end_search_hr=$(( 12 + ${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS} )) + YYYYMMDDHHmInterv=$(date +%Y%m%d%H -d "${START_DATE} ${n} hours ago") + lbcs_path=${lbcs_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/lbcs + while [[ $n -le ${end_search_hr} ]] ; do + last_bdy_time=$(( n + ${FCST_LEN_HRS_thiscycle} )) + last_bdy=$(printf %3.3i $last_bdy_time) + checkfile=${lbcs_path}/${bndy_prefix}.${last_bdy}.nc + if [ -r "${checkfile}" ]; then + print_info_msg "$VERBOSE" "Found ${checkfile}; Use it as boundary for forecast " + break + else + n=$((n + 1)) + YYYYMMDDHHmInterv=$(date +%Y%m%d%H -d "${START_DATE} ${n} hours ago") + lbcs_path=${lbcs_root}/${YYYYMMDDHHmInterv}${SLASH_ENSMEM_SUBDIR}/lbcs + fi + done +# + relative_or_null="--relative" + nb=1 + if [ -r "${checkfile}" ]; then + while [ $nb -le ${FCST_LEN_HRS_thiscycle} ] + do + bdy_time=$(( ${n} + ${nb} )) + this_bdy=$(printf %3.3i $bdy_time) + local_bdy=$(printf %3.3i $nb) + + if [ -f "${lbcs_path}/${bndy_prefix}.${this_bdy}.nc" ]; then + ln_vrfy -sf ${relative_or_null} ${lbcs_path}/${bndy_prefix}.${this_bdy}.nc ${bndy_prefix}.${local_bdy}.nc + fi + + nb=$((nb + 1)) + done +# check 0-h boundary condition + if [ ! -f "${bndy_prefix}.000.nc" ]; then + this_bdy=$(printf %3.3i ${n}) + cp_vrfy ${lbcs_path}/${bndy_prefix}.${this_bdy}.nc ${bndy_prefix}.000.nc + fi + else + print_err_msg_exit "Error: cannot find boundary file: ${checkfile}" + fi + +fi +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Prepare start completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_run_recenter.sh b/scripts/exregional_run_recenter.sh new file mode 100755 index 000000000..8d2e105ae --- /dev/null +++ b/scripts/exregional_run_recenter.sh @@ -0,0 +1,310 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u -x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that recenters ensemble analysis with FV3 for the +specified cycle. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( "cycle_type" "comout" "recenterdir" "ctrlpath" ) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Load modules. +# +case $MACHINE in +# +"WCOSS2") +# + module list + ulimit -s unlimited + ulimit -a + export FI_OFI_RXM_SAR_LIMIT=3145728 + export OMP_STACKSIZE=500M + export OMP_NUM_THREADS=1 + ncores=$(( NNODES_RUN_RECENTER*PPN_RUN_RECENTER )) + APRUN="mpiexec -n ${ncores} -ppn ${PPN_RUN_RECENTER} --cpu-bind core --depth ${OMP_NUM_THREADS}" + ;; +# +"THEIA") +# + ulimit -s unlimited + ulimit -a + np=${SLURM_NTASKS} + APRUN="mpirun -np ${np}" + ;; +# +"HERA") + module load nco/4.9.3 + ulimit -s unlimited + ulimit -v unlimited + ulimit -a + export OMP_NUM_THREADS=1 +# export OMP_STACKSIZE=300M + APRUN="srun" + ;; +# +"ORION") + ulimit -s unlimited + ulimit -a + export OMP_NUM_THREADS=1 + export OMP_STACKSIZE=1024M + APRUN="srun" + ;; +# +"JET") + module load nco/4.9.3 + ulimit -s unlimited + ulimit -a + APRUN="srun" + ;; +# +"ODIN") +# + module list + + ulimit -s unlimited + ulimit -a + APRUN="srun -n ${PE_MEMBER01}" + ;; +# +esac + +# +#----------------------------------------------------------------------- +# +# Extract from CDATE the starting year, month, day, and hour of the +# forecast. These are needed below for various operations. +# +#----------------------------------------------------------------------- +# +START_DATE=$(echo "${CDATE}" | sed 's/\([[:digit:]]\{2\}\)$/ \1/') + +YYYYMMDDHH=$(date +%Y%m%d%H -d "${START_DATE}") +JJJ=$(date +%j -d "${START_DATE}") + +YYYY=${YYYYMMDDHH:0:4} +MM=${YYYYMMDDHH:4:2} +DD=${YYYYMMDDHH:6:2} +HH=${YYYYMMDDHH:8:2} +YYYYMMDD=${YYYYMMDDHH:0:8} + +cd_vrfy ${recenterdir} + +# +#-------------------------------------------------------------------- +# +# loop through ensemble members to link all the member files +# + +if [ ${cycle_type} == "spinup" ]; then + fg_restart_dirname=fcst_fv3lam_spinup +else + fg_restart_dirname=fcst_fv3lam +fi + +imem=1 +for imem in $(seq 1 $nens) + do + ensmem=$( printf "%04d" $imem ) + memberstring=$( printf "%03d" $imem ) + + bkpath=${CYCLE_DIR}/mem${ensmem}/${fg_restart_dirname}/INPUT # cycling, use background from RESTART + + dynvarfile=${bkpath}/fv_core.res.tile1.nc + tracerfile=${bkpath}/fv_tracer.res.tile1.nc + if [ -r "${dynvarfile}" ] && [ -r "${tracerfile}" ] ; then + ln -sf ${bkpath}/fv_core.res.tile1.nc ./fv3sar_tile1_mem${memberstring}_dynvar + ln -sf ${bkpath}/fv_tracer.res.tile1.nc ./fv3sar_tile1_mem${memberstring}_tracer + ln -sf ${bkpath}/sfc_data.nc ./fv3sar_tile1_mem${memberstring}_sfcvar + ln -sf ${bkpath}/fv_core.res.tile1.nc ./rec_fv3sar_tile1_mem${memberstring}_dynvar + ln -sf ${bkpath}/fv_tracer.res.tile1.nc ./rec_fv3sar_tile1_mem${memberstring}_tracer + ln -sf ${bkpath}/sfc_data.nc ./rec_fv3sar_tile1_mem${memberstring}_sfcvar + else + print_err_msg_exit "Error: cannot find background: ${dynvarfile} ${tracerfile}" + fi + + (( imem += 1 )) + done + +# +#----------------------------------------------------------------------- +# +# Prepare the data structure for ensemble mean +# +cp_vrfy -f ./fv3sar_tile1_mem001_dynvar fv3sar_tile1_dynvar +cp_vrfy -f ./fv3sar_tile1_mem001_tracer fv3sar_tile1_tracer +cp_vrfy -f ./fv3sar_tile1_mem001_sfcvar fv3sar_tile1_sfcvar + +# +#----------------------------------------------------------------------- +# +# link the control member +# +dynvarfile_control=${ctrlpath}/fcst_fv3lam/INPUT/fv_core.res.tile1.nc +tracerfile_control=${ctrlpath}/fcst_fv3lam/INPUT/fv_tracer.res.tile1.nc +dynvarfile_control_spinup=${ctrlpath}/fcst_fv3lam_spinup/INPUT/fv_core.res.tile1.nc +tracerfile_control_spinup=${ctrlpath}/fcst_fv3lam_spinup/INPUT/fv_tracer.res.tile1.nc +if [ -r "${dynvarfile_control_spinup}" ] && [ -r "${tracerfile_control_spinup}" ] && [[ ${DO_ENSFCST} != "TRUE" ]] ; then + ln -sf ${ctrlpath}/fcst_fv3lam_spinup/INPUT/fv_core.res.tile1.nc ./control_dynvar + ln -sf ${ctrlpath}/fcst_fv3lam_spinup/INPUT/fv_tracer.res.tile1.nc ./control_tracer + ln -sf ${ctrlpath}/fcst_fv3lam_spinup/INPUT/sfc_data.nc ./control_sfcvar +elif [ -r "${dynvarfile_control}" ] && [ -r "${tracerfile_control}" ] ; then + ln -sf ${ctrlpath}/fcst_fv3lam/INPUT/fv_core.res.tile1.nc ./control_dynvar + ln -sf ${ctrlpath}/fcst_fv3lam/INPUT/fv_tracer.res.tile1.nc ./control_tracer + ln -sf ${ctrlpath}/fcst_fv3lam/INPUT/sfc_data.nc ./control_sfcvar +else + print_err_msg_exit "Error: cannot find background: ${dynvarfile_control} or ${dynvarfile_control_spinup}" +fi + +# +#----------------------------------------------------------------------- +# +# prepare the namelist.ens +# +cat << EOF > namelist.ens +&setup + fv3_io_layout_y=1, + ens_size=${nens}, + filebase='fv3sar_tile1' + filetail(1)='dynvar' + filetail(2)='tracer' + filetail(3)='sfcvar' + numvar(1)=7 + numvar(2)=13 + numvar(3)=14 + varlist(1)="u v W DZ T delp phis" + varlist(2)="sphum liq_wat ice_wat rainwat snowwat graupel water_nc ice_nc rain_nc o3mr liq_aero ice_aero sgs_tke" + varlist(3)="t2m q2m f10m tslb smois tsea tsfc tsfcl alnsf alnwf alvsf alvwf emis_ice emis_lnd" + l_write_mean=.false. + l_recenter=.true. + beta=${beta_recenter}, +/ +EOF + +# +#----------------------------------------------------------------------- +# +# Run executable to recenter the ensemble +# + +echo pwd is `pwd` +#ENSMEAN_EXEC=${EXECDIR}/gen_ensmean_recenter.exe +ENSMEAN_EXEC=${EXECDIR}/ens_mean_recenter_P2DIO.exe + +if [ -f ${ENSMEAN_EXEC} ]; then + print_info_msg "$VERBOSE" " +Copying the ensemble mean executable to the run directory..." + cp_vrfy ${ENSMEAN_EXEC} ${recenterdir}/. +else + print_err_msg_exit "\ +The ensemble mean executable specified in ENSMEAN_EXEC does not exist: + ENSMEAN_EXEC = \"${ENSMEAN_EXEC}\" +Build ENSMEAN_EXEC and rerun." +fi + +${APRUN} ${ENSMEAN_EXEC} < namelist.ens > stdout_recenter 2>&1 || print_err_msg_exit "\ +Call to executable to run ensemble recenter returned with nonzero exit code." + +cp stdout_recenter ${comout}/stdout.t${HH}z.recenter +# +#----------------------------------------------------------------------- +# +# Fix checksum for the files after recentering +# +#----------------------------------------------------------------------- +# +for files in $(ls rec_fv3sar_tile1_mem*) ; do + ncatted -a checksum,,d,, $files +done + +# +#----------------------------------------------------------------------- +# +# touch a file to show completion of the task +# +touch ${comout}/recenter_complete.txt +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Prepare start completed successfully!!! + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_save_da_output.sh b/scripts/exregional_save_da_output.sh new file mode 100755 index 000000000..292ca0be0 --- /dev/null +++ b/scripts/exregional_save_da_output.sh @@ -0,0 +1,151 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"nwges_dir" \ +"cycle_type" \ +"cycle_subtype" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Get the cycle date and hour (in formats of yyyymmdd and hh, respectively) +# from cdate. +# +#----------------------------------------------------------------------- +# +yyyymmdd=${cdate:0:8} +hh=${cdate:8:2} +cyc=$hh + +# +#----------------------------------------------------------------------- +# +# Let's save the DA analysis files if needed before run fcst. +# This will copy the data assimilation analysis files from $run_dir/INPUT/ +# to ${nwges_dir}/DA_OUTPUT/, +# this is to prepare for ensemble free forecast after the ensemble data assimilation +# +#----------------------------------------------------------------------- +# +filelist="fv_core.res.nc coupler.res" +filelistn="fv_core.res.tile1.nc fv_srf_wnd.res.tile1.nc fv_tracer.res.tile1.nc phy_data.nc sfc_data.nc" +filelistcold="gfs_data.tile7.halo0.nc sfc_data.tile7.halo0.nc" +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +if [ ! -r ${nwges_dir}/DA_OUTPUT/gfs_ctrl.nc ]; then + cp_vrfy $run_dir/INPUT/gfs_ctrl.nc ${nwges_dir}/DA_OUTPUT/gfs_ctrl.nc + if [ -r ${run_dir}/INPUT/coupler.res ]; then # warm start + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + cp_vrfy $run_dir/INPUT/${file} ${nwges_dir}/DA_OUTPUT/${file} + done + else + for file in ${filelistn}; do + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy $run_dir/INPUT/${file}.${iii} ${nwges_dir}/DA_OUTPUT/${file}.${iii} + done + done + fi + for file in ${filelist}; do + cp_vrfy $run_dir/INPUT/${file} ${nwges_dir}/DA_OUTPUT/${file} + done + else # cold start + print_info_msg "$VERBOSE" "\ +The DA analysis does not exist, no files to save to DA_OUTPUT." + fi +fi +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +save DA analysis completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/exregional_save_restart.sh b/scripts/exregional_save_restart.sh new file mode 100755 index 000000000..a37269777 --- /dev/null +++ b/scripts/exregional_save_restart.sh @@ -0,0 +1,253 @@ +#!/bin/bash + +# +#----------------------------------------------------------------------- +# +# Source the variable definitions file and the bash utility functions. +# +#----------------------------------------------------------------------- +# +. ${GLOBAL_VAR_DEFNS_FP} +. $USHDIR/source_util_funcs.sh +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# +{ save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Print message indicating entry into script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +Entering script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" + +This is the ex-script for the task that runs the post-processor (UPP) on +the output files corresponding to a specified forecast hour. +========================================================================" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. +# Then process the arguments provided to this script/function (which +# should consist of a set of name-value pairs of the form arg1="value1", +# etc). +# +#----------------------------------------------------------------------- +# +valid_args=( \ +"cdate" \ +"run_dir" \ +"nwges_dir" \ +"surface_dir" \ +"fhr" \ +"cycle_type" \ +"cycle_subtype" \ +) +process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# +print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Get the cycle date and hour (in formats of yyyymmdd and hh, respectively) +# from cdate. +# +#----------------------------------------------------------------------- +# +yyyymmdd=${cdate:0:8} +hh=${cdate:8:2} +cyc=$hh + +save_time=$( date --utc --date "${yyyymmdd} ${hh} UTC + ${fhr} hours" "+%Y%m%d%H" ) +save_yyyy=${save_time:0:4} +save_mm=${save_time:4:2} +save_dd=${save_time:6:2} +save_hh=${save_time:8:2} + + +# +#----------------------------------------------------------------------- +# +# Let save the restart files if needed before run post. +# This part will copy or move restart files matching the forecast hour +# this post will process to the nwges directory. The nwges is used to +# stage the restart files for a long time. +#----------------------------------------------------------------------- +# +filelist="fv_core.res.nc coupler.res" +filelistn="fv_core.res.tile1.nc fv_srf_wnd.res.tile1.nc fv_tracer.res.tile1.nc phy_data.nc sfc_data.nc" +filelistcold="gfs_data.tile7.halo0.nc sfc_data.tile7.halo0.nc" +n_iolayouty=$(($IO_LAYOUT_Y-1)) +list_iolayout=$(seq 0 $n_iolayouty) + +if [[ ${cycle_subtype} == "ensinit" ]] ; then + restart_prefix=$( date "+%Y%m%d.%H%M%S" -d "${save_yyyy}${save_mm}${save_dd} ${save_hh} + ${DT_ATMOS} seconds" ) +else + restart_prefix=${save_yyyy}${save_mm}${save_dd}.${save_hh}0000 +fi + +if_save_input=FALSE + +if [ ! -r ${nwges_dir}/INPUT/gfs_ctrl.nc ]; then + cp_vrfy $run_dir/INPUT/gfs_ctrl.nc ${nwges_dir}/INPUT/gfs_ctrl.nc + if_save_input=TRUE +fi + +if [ -r "$run_dir/RESTART/${restart_prefix}.coupler.res" ]; then + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + mv_vrfy $run_dir/RESTART/${restart_prefix}.${file} ${nwges_dir}/RESTART/${restart_prefix}.${file} + done + else + for file in ${filelistn}; do + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + mv_vrfy $run_dir/RESTART/${restart_prefix}.${file}.${iii} ${nwges_dir}/RESTART/${restart_prefix}.${file}.${iii} + done + done + fi + for file in ${filelist}; do + mv_vrfy $run_dir/RESTART/${restart_prefix}.${file} ${nwges_dir}/RESTART/${restart_prefix}.${file} + done + echo " ${fhr} forecast from ${yyyymmdd}${hh} is ready " #> ${nwges_dir}/RESTART/restart_done_f${fhr} +else + + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS} + if [ ${cycle_type} == "spinup" ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_SPINUP} + else + num_fhrs=( "${#FCST_LEN_HRS_CYCLES[@]}" ) + ihh=`expr ${hh} + 0` + if [ ${num_fhrs} -gt ${ihh} ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_CYCLES[${ihh}]} + fi + fi + print_info_msg "$VERBOSE" " The forecast length for cycle (\"${hh}\") is + ( \"${FCST_LEN_HRS_thiscycle}\") " + + if [ -r "$run_dir/RESTART/${restart_prefix}.coupler.res" ] && ([ ${fhr} -eq ${FCST_LEN_HRS_thiscycle} ] || [ ${cycle_subtype} == "ensinit" ]) ; then + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + mv_vrfy $run_dir/RESTART/${file} ${nwges_dir}/RESTART/${restart_prefix}.${file} + done + else + for file in ${filelistn}; do + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + mv_vrfy $run_dir/RESTART/${file}.${iii} ${nwges_dir}/RESTART/${restart_prefix}.${file}.${iii} + done + done + fi + for file in ${filelist}; do + mv_vrfy $run_dir/RESTART/${file} ${nwges_dir}/RESTART/${restart_prefix}.${file} + done + echo " ${fhr} forecast from ${yyyymmdd}${hh} is ready " #> ${nwges_dir}/RESTART/restart_done_f${fhr} + else + echo "This forecast hour does not need to save restart: ${yyyymmdd}${hh}f${fhr}" + fi +fi + +# +#----------------------------------------------------------------------- +# save surface data +#----------------------------------------------------------------------- +# +if [ ${cycle_type} == "prod" ] && [ ${cycle_subtype} == "control" ]; then + if [ "${IO_LAYOUT_Y}" == "1" ]; then + cp_vrfy ${nwges_dir}/RESTART/${restart_prefix}.sfc_data.nc ${surface_dir}/${restart_prefix}.sfc_data.nc.${cdate} + else + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy ${nwges_dir}/RESTART/${restart_prefix}.sfc_data.nc.${iii} ${surface_dir}/${restart_prefix}.sfc_data.nc.${cdate}.${iii} + done + fi +fi + +# +#----------------------------------------------------------------------- +# save input +#----------------------------------------------------------------------- +# +if [ "${if_save_input}" = TRUE ]; then + if [ "${DO_SAVE_INPUT}" = TRUE ]; then + if [ -r ${run_dir}/INPUT/coupler.res ]; then # warm start + if [ "${IO_LAYOUT_Y}" == "1" ]; then + for file in ${filelistn}; do + cp_vrfy $run_dir/INPUT/${file} ${nwges_dir}/INPUT/${file} + done + else + for file in ${filelistn}; do + for ii in ${list_iolayout} + do + iii=$(printf %4.4i $ii) + cp_vrfy $run_dir/INPUT/${file}.${iii} ${nwges_dir}/INPUT/${file}.${iii} + done + done + fi + for file in ${filelist}; do + cp_vrfy $run_dir/INPUT/${file} ${nwges_dir}/INPUT/${file} + done + else # cold start + for file in ${filelistcold}; do + cp_vrfy $run_dir/INPUT/${file} ${nwges_dir}/INPUT/${file} + done + fi + fi +fi + +# +#----------------------------------------------------------------------- +# +# Print message indicating successful completion of script. +# +#----------------------------------------------------------------------- +# +print_info_msg " +======================================================================== +save restart for forecast hour $fhr completed successfully. + +Exiting script: \"${scrfunc_fn}\" +In directory: \"${scrfunc_dir}\" +========================================================================" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/func- +# tion. +# +#----------------------------------------------------------------------- +# +{ restore_shell_opts; } > /dev/null 2>&1 + diff --git a/scripts/fvcom_remap.py b/scripts/fvcom_remap.py new file mode 100755 index 000000000..590bde709 --- /dev/null +++ b/scripts/fvcom_remap.py @@ -0,0 +1,252 @@ +import sys +import numpy as np +from netCDF4 import Dataset +import math +import scipy.interpolate as interp +import matplotlib +matplotlib.use('Agg') +import matplotlib.pyplot as plt + +brdr=0.05 +missing_value = -99.9999 + +# get input file +argvs = sys.argv +ncfile_fvcom_eri = argvs[1] +ncfile_fvcom_mhs = argvs[2] +ncfile_fvcom_sup = argvs[3] +ncfile_fvcom_ont = argvs[4] +predef_grid_name = argvs[5] + +# Set dimensions for CONUS and NA 3-km grids +if predef_grid_name == 'RRFS_CONUS_3km': + x1 = 674 + x2 = 955 + y1 = 1039 + y2 = 1490 +elif predef_grid_name == 'RRFS_NA_3km': + x1 = 960 + x2 = 1240 + y1 = 2490 + y2 = 2960 + +# read "containar" file +ncfile='./out_fv3grid.nc' +fh = Dataset(ncfile, mode='a') + +lakemask = fh.variables['glmask'][:] +erimask = fh.variables['erimask'][:] +ontmask = fh.variables['ontmask'][:] +supmask = fh.variables['supmask'][:] +mhsmask = fh.variables['mhsmask'][:] +twsfc = fh.variables['twsfc'][:]#.reshape((1,399,500)) +tisfc = fh.variables['tisfc'][:]#.reshape((1,399,500)) +aicec = fh.variables['aice'][:]#.reshape((1,399,500)) +vicec = fh.variables['vice'][:]#.reshape((1,399,500)) +tsfc = fh.variables['tsfc'][:]#.reshape((1,399,500)) +lon = fh.variables['geolon'][:] +lat = fh.variables['geolat'][:] +time = fh.variables['time'][:] + +# read FVCOM outputs +try: # check if erie outputs exist + fh_fvcom_eri = Dataset(ncfile_fvcom_eri,mode='r') + lon_fvcom_eri = fh_fvcom_eri.variables['lon'][:] + lat_fvcom_eri = fh_fvcom_eri.variables['lat'][:] + temp_fvcom_eri = fh_fvcom_eri.variables['temp'][:] + eri_exist = True +except: + lon_fvcom_eri = np.array([missing_value]) + lat_fvcom_eri = np.array([missing_value]) + temp_fvcom_eri = np.ones((len(time),1,1))*missing_value + tice_fvcom_eri = np.ones((len(time),1))*missing_value + aice_fvcom_eri = np.ones((len(time),1))*missing_value + vice_fvcom_eri = np.ones((len(time),1))*missing_value + eri_exist = False +if ( eri_exist ): # check if ice outputs exist + try: + tice_fvcom_eri = fh_fvcom_eri.variables['tsfc'][:] + aice_fvcom_eri = fh_fvcom_eri.variables['aice'][:] + vice_fvcom_eri = fh_fvcom_eri.variables['vice'][:] + except: + tice_fvcom_eri = np.zeros((len(time),len(lon_fvcom_eri))) + aice_fvcom_eri = np.zeros((len(time),len(lon_fvcom_eri))) + vice_fvcom_eri = np.zeros((len(time),len(lon_fvcom_eri))) + +try: # check if mich-huron outputs exist + fh_fvcom_mhs = Dataset(ncfile_fvcom_mhs,mode='r') + lon_fvcom_mhs = fh_fvcom_mhs.variables['lon'][:] + lat_fvcom_mhs = fh_fvcom_mhs.variables['lat'][:] + temp_fvcom_mhs = fh_fvcom_mhs.variables['temp'][:] + mhs_exist = True +except: + lon_fvcom_mhs = np.array([missing_value]) + lat_fvcom_mhs = np.array([missing_value]) + temp_fvcom_mhs = np.ones((len(time),1,1))*missing_value + tice_fvcom_mhs = np.ones((len(time),1))*missing_value + aice_fvcom_mhs = np.ones((len(time),1))*missing_value + vice_fvcom_mhs = np.ones((len(time),1))*missing_value + mhs_exist = False +if ( mhs_exist ): # check if ice outputs exist + try: + tice_fvcom_mhs = fh_fvcom_mhs.variables['tsfc'][:] + aice_fvcom_mhs = fh_fvcom_mhs.variables['aice'][:] + vice_fvcom_mhs = fh_fvcom_mhs.variables['vice'][:] + except: + tice_fvcom_mhs = np.zeros((len(time),len(lon_fvcom_mhs))) + aice_fvcom_mhs = np.zeros((len(time),len(lon_fvcom_mhs))) + vice_fvcom_mhs = np.zeros((len(time),len(lon_fvcom_mhs))) + +try: # check if sup outputs exist + fh_fvcom_sup = Dataset(ncfile_fvcom_sup,mode='r') + lon_fvcom_sup = fh_fvcom_sup.variables['lon'][:] + lat_fvcom_sup = fh_fvcom_sup.variables['lat'][:] + temp_fvcom_sup = fh_fvcom_sup.variables['temp'][:] + sup_exist = True +except: + lon_fvcom_sup = np.array([missing_value]) + lat_fvcom_sup = np.array([missing_value]) + temp_fvcom_sup = np.ones((len(time),1,1))*missing_value + tice_fvcom_sup = np.ones((len(time),1))*missing_value + aice_fvcom_sup = np.ones((len(time),1))*missing_value + vice_fvcom_sup = np.ones((len(time),1))*missing_value + sup_exist = False +if ( sup_exist ): # check if ice outputs exist + try: + tice_fvcom_sup = fh_fvcom_sup.variables['tsfc'][:] + aice_fvcom_sup = fh_fvcom_sup.variables['aice'][:] + vice_fvcom_sup = fh_fvcom_sup.variables['vice'][:] + except: + tice_fvcom_sup = np.zeros((len(time),len(lon_fvcom_sup))) + aice_fvcom_sup = np.zeros((len(time),len(lon_fvcom_sup))) + vice_fvcom_sup = np.zeros((len(time),len(lon_fvcom_sup))) + +try: # check if ont outputs exist + fh_fvcom_ont = Dataset(ncfile_fvcom_ont,mode='r') + lon_fvcom_ont = fh_fvcom_ont.variables['lon'][:] + lat_fvcom_ont = fh_fvcom_ont.variables['lat'][:] + temp_fvcom_ont = fh_fvcom_ont.variables['temp'][:] + ont_exist = True +except: + lon_fvcom_ont = np.array([missing_value]) + lat_fvcom_ont = np.array([missing_value]) + temp_fvcom_ont = np.ones((len(time),1,1))*missing_value + tice_fvcom_ont = np.ones((len(time),1))*missing_value + aice_fvcom_ont = np.ones((len(time),1))*missing_value + vice_fvcom_ont = np.ones((len(time),1))*missing_value + ont_exist = False +if ( ont_exist ): # check if ice outputs exist + try: + tice_fvcom_ont = fh_fvcom_ont.variables['tsfc'][:] + aice_fvcom_ont = fh_fvcom_ont.variables['aice'][:] + vice_fvcom_ont = fh_fvcom_ont.variables['vice'][:] + except: + tice_fvcom_ont = np.zeros((len(time),len(lon_fvcom_ont))) + aice_fvcom_ont = np.zeros((len(time),len(lon_fvcom_ont))) + vice_fvcom_ont = np.zeros((len(time),len(lon_fvcom_ont))) + +print(eri_exist, mhs_exist, sup_exist, ont_exist) +print('array shapes') +print(temp_fvcom_eri.shape) +print(temp_fvcom_sup.shape) +print(temp_fvcom_ont.shape) +print(temp_fvcom_mhs.shape) + +# concatenate +lon_fvcom0 = np.concatenate([lon_fvcom_eri,lon_fvcom_mhs,lon_fvcom_sup,lon_fvcom_ont]) +lat_fvcom0 = np.concatenate([lat_fvcom_eri,lat_fvcom_mhs,lat_fvcom_sup,lat_fvcom_ont]) +temp_fvcom0 = np.concatenate((temp_fvcom_eri,temp_fvcom_mhs,temp_fvcom_sup,temp_fvcom_ont),axis=2) +tice_fvcom0 = np.concatenate((tice_fvcom_eri,tice_fvcom_mhs,tice_fvcom_sup,tice_fvcom_ont),axis=1) +aice_fvcom0 = np.concatenate((aice_fvcom_eri,aice_fvcom_mhs,aice_fvcom_sup,aice_fvcom_ont),axis=1) +vice_fvcom0 = np.concatenate((vice_fvcom_eri,vice_fvcom_mhs,vice_fvcom_sup,vice_fvcom_ont),axis=1) +lon_fvcom = np.ma.masked_where( lon_fvcom0 == missing_value, lon_fvcom0 ) +lat_fvcom = np.ma.masked_where( lat_fvcom0 == missing_value, lat_fvcom0 ) +temp_fvcom = np.ma.masked_where( temp_fvcom0 == missing_value, temp_fvcom0 ) +tice_fvcom = np.ma.masked_where( tice_fvcom0 == missing_value, tice_fvcom0 ) +aice_fvcom = np.ma.masked_where( aice_fvcom0 == missing_value, aice_fvcom0 ) +vice_fvcom = np.ma.masked_where( vice_fvcom0 == missing_value, vice_fvcom0 ) + +for nn in range(len(time)): + + print(nn,str(time[nn])) + + twsfc_fvcom = np.array(temp_fvcom[nn,0,:]) + # RRFS grid GL subset + lon_wrfsubset = lon[x1:x2,y1:y2] + lat_wrfsubset = lat[x1:x2,y1:y2] + twsfc_wrf0 = np.array(0. * twsfc[nn,:,:]) # make it all zero. overwritten by interpolated values later. + + tisfc_fvcom = np.array(tice_fvcom[nn,:]) + # HRRR grid GL subset + tisfc_wrf0 = np.array(0. * tisfc[nn,:,:]) # make it all zero. overwritten by interpolated values later. + tisfc_wrf = np.array(tisfc_wrf0) # GL subset + + aicec_fvcom = np.array(aice_fvcom[nn,:]) + # HRRR grid GL subset + aicec_wrf0 = np.array(0. * aicec[nn,:,:]) # make it all zero. overwritten by interpolated values later. + aicec_wrf = np.array(aicec_wrf0) # GL subset + + vicec_fvcom = np.array(vice_fvcom[nn,:]) + # HRRR grid GL subset + vicec_wrf0 = np.array(0. * vicec[nn,:,:]) # make it all zero. overwritten by interpolated values later. + vicec_wrf = np.array(vicec_wrf0) # GL subset + + twsfc_wrf=interp.griddata((lon_fvcom,lat_fvcom),twsfc_fvcom,(lon_wrfsubset,lat_wrfsubset),method='nearest')#'linear') + tisfc_wrf=interp.griddata((lon_fvcom,lat_fvcom),tisfc_fvcom,(lon_wrfsubset,lat_wrfsubset),method='nearest')#'linear') + aicec_wrf=interp.griddata((lon_fvcom,lat_fvcom),aicec_fvcom,(lon_wrfsubset,lat_wrfsubset),method='nearest')#'linear') + vicec_wrf=interp.griddata((lon_fvcom,lat_fvcom),vicec_fvcom,(lon_wrfsubset,lat_wrfsubset),method='nearest')#'linear') + + twsfc_wrf0[x1:x2,y1:y2]=twsfc_wrf + tisfc_wrf0[x1:x2,y1:y2]=tisfc_wrf + aicec_wrf0[x1:x2,y1:y2]=aicec_wrf + vicec_wrf0[x1:x2,y1:y2]=vicec_wrf + + twsfc_wrf0[lakemask==0.] = missing_value + tisfc_wrf0[lakemask==0.] = missing_value + aicec_wrf0[lakemask==0.] = missing_value + vicec_wrf0[lakemask==0.] = missing_value + if ( not eri_exist): + twsfc_wrf0[erimask==1.] = missing_value + tisfc_wrf0[erimask==1.] = missing_value + aicec_wrf0[erimask==1.] = missing_value + vicec_wrf0[erimask==1.] = missing_value + if ( not mhs_exist): + twsfc_wrf0[mhsmask==1.] = missing_value + tisfc_wrf0[mhsmask==1.] = missing_value + aicec_wrf0[mhsmask==1.] = missing_value + vicec_wrf0[mhsmask==1.] = missing_value + if ( not sup_exist): + twsfc_wrf0[supmask==1.] = missing_value + tisfc_wrf0[supmask==1.] = missing_value + aicec_wrf0[supmask==1.] = missing_value + vicec_wrf0[supmask==1.] = missing_value + if ( not ont_exist): + twsfc_wrf0[ontmask==1.] = missing_value + tisfc_wrf0[ontmask==1.] = missing_value + aicec_wrf0[ontmask==1.] = missing_value + vicec_wrf0[ontmask==1.] = missing_value + + twsfc[nn,:,:] = twsfc_wrf0 + tisfc[nn,:,:] = tisfc_wrf0 + aicec[nn,:,:] = aicec_wrf0 + vicec[nn,:,:] = vicec_wrf0 + tsfc[nn,:,:]=twsfc_wrf0*(1.0-aicec_wrf0)+tisfc_wrf0*aicec_wrf0 + +fh.variables['twsfc'][:]=twsfc +fh.variables['tisfc'][:]=tisfc +fh.variables['aice'][:]=aicec +fh.variables['vice'][:]=vicec +fh.variables['tsfc'][:]=tsfc + +fh.close() + +if ( eri_exist ): + fh_fvcom_eri.close() +if ( mhs_exist ): + fh_fvcom_mhs.close() +if ( sup_exist ): + fh_fvcom_sup.close() +if ( ont_exist ): + fh_fvcom_ont.close() + +print ('fvcom_remap.py completed successfully') diff --git a/scripts/preprocess_smoke.py b/scripts/preprocess_smoke.py new file mode 100755 index 000000000..f4ebccaed --- /dev/null +++ b/scripts/preprocess_smoke.py @@ -0,0 +1,296 @@ +######################################################################### +# # +# Python script for fire emissions preprocessing from RAVE FRP and FRE # +# (Li et al.,2022). Written by Johana Romero-Alvarez and Haiqin Li # +# based on Kai Wang and Jianping Huang prototype # +# # +######################################################################### + +import sys +import xarray as xr +import datetime as dt +from datetime import date, time,timedelta +import pandas as pd +import numpy as np +import ESMF +from netCDF4 import Dataset +import os + +#import fix files +staticdir = sys.argv[1] +ravedir = sys.argv[2] +newges_dir = sys.argv[3] +predef_grid = sys.argv[4] + +#constants emissions estimation +beta= 0.38 # based on Wooster et al. 2005 + +#units conversion +to_s=3.6e3 +fkg_to_ug=1e9 +fg_to_ug=1e6 + +#Emission factors based on SERA US Forest Service +EF_FLM = dict({'frst':19,'hwd':9.4,'mxd':14.6,'shrb':9.3,'shrb_grs':10.7,'grs':13.3}) +EF_SML = dict({'frst':28,'hwd':37.7,'mxd':17.6,'shrb':36.6,'shrb_grs':36.7,'grs':38.4}) + +#list of variables to interpolate +vars_emis = ["FRP_MEAN","FRP_SD","FRE","PM2.5"] + +#pass env vars from workflow +current_day = os.environ.get("CDATE") +nwges_dir = os.environ.get("NWGES_DIR") + +#Fixed files directories +normal_template_file = staticdir+'/pypost_conus_basic_template.grib2' +veg_map = staticdir+'/veg_map.nc' +grid_in= staticdir+'/grid_in.nc' +weightfile= staticdir+'/weight_file.nc' +grid_out = staticdir+'/ds_out_base.nc' +dummy_hr_rave= staticdir+'/dummy_hr_rave.nc' +RAVE=ravedir +intp_dir=newges_dir +rave_to_intp= predef_grid+"_intp_" +filename =weightfile + +#Set predefined grid +if predef_grid=='RRFS_NA_3km': + cols,rows=2700,3950 +else: + cols,rows=1092,1820 +print('PREDEF GRID',predef_grid,'cols,rows',cols,rows) + +#Functions +#Create date range +def date_range(current_day): + print('Searching for interpolated RAVE for',current_day) + fcst_YYYYMMDDHH=dt.datetime.strptime(current_day, "%Y%m%d%H") + previous_day=fcst_YYYYMMDDHH - timedelta(days = 1) + date_list=pd.date_range(previous_day,periods=24,freq="H") + fcst_dates=date_list.strftime("%Y%m%d%H") + rave_to_intp= predef_grid+"_intp_" + print('Current day', fcst_YYYYMMDDHH,'Persistance',previous_day) + return fcst_dates + +#Check if interoplated RAVE is available for the previous 24 hours. Create dummy RAVE if given hours are not available +def check_for_intp_rave(intp_dir,fcst_dates,rave_to_intp): + os.chdir(intp_dir) + sorted_obj = sorted(os.listdir(intp_dir)) + intp_avail_hours=[] + intp_non_avail_hours=[] + for d in range(len(fcst_dates)): + if rave_to_intp+fcst_dates[d]+'00_'+fcst_dates[d]+'00.nc' in sorted_obj: + print('RAVE interpolated available for',rave_to_intp+fcst_dates[d]+'00_'+fcst_dates[d]+'00.nc') + intp_avail_hours.append(fcst_dates[d]) + else: + print('Create interpolated RAVE for',rave_to_intp+fcst_dates[d]+'00_'+fcst_dates[d]+'00.nc') + intp_non_avail_hours.append(fcst_dates[d]) + print('Avail_intp_hours',intp_avail_hours,'Non_avail_intp_hours',intp_non_avail_hours) + return intp_avail_hours,intp_non_avail_hours + +#Check if raw RAVE in intp_non_avail_hours is available to interpolate +def check_for_raw_rave(RAVE,intp_non_avail_hours): + os.chdir(RAVE) + raw_rave="Hourly_Emissions_3km_" + updated_rave="RAVE-HrlyEmiss-3km_v1r0_blend_s" + sorted_obj = sorted(os.listdir(RAVE)) + rave_avail=[] + rave_avail_hours=[] + rave_nonavail_hours_test=[] + for d in range(len(intp_non_avail_hours)): + if raw_rave+intp_non_avail_hours[d]+'00_'+intp_non_avail_hours[d]+'00.nc' in sorted_obj: + print('Raw RAVE available for interpolation',raw_rave+intp_non_avail_hours[d]+'00_'+intp_non_avail_hours[d]+'00.nc') + rave_avail.append(raw_rave+intp_non_avail_hours[d]+'00_'+intp_non_avail_hours[d]+'00.nc') + rave_avail_hours.append(intp_non_avail_hours[d]) + else: + print('Raw RAVE non_available for interpolation',raw_rave+intp_non_avail_hours[d]+'00_'+intp_non_avail_hours[d]+'00.nc') + rave_nonavail_hours_test.append(intp_non_avail_hours[d]) + print("Raw RAVE available",rave_avail_hours, "rave_nonavail_hours_test",rave_nonavail_hours_test) + return rave_avail,rave_avail_hours,rave_nonavail_hours_test + +#Create source and target fields +def creates_st_fields(grid_in,grid_out): + os.chdir(intp_dir) + #source RAW emission grid file + ds_in=xr.open_dataset(grid_in) + #target (3-km) grid file + ds_out = xr.open_dataset(grid_out) + #source center lat/lon + src_latt = ds_in['grid_latt'] + #target center lat/lon + tgt_latt = ds_out['grid_latt'] + tgt_lont = ds_out['grid_lont'] + #grid shapes + src_shape = src_latt.shape + tgt_shape = tgt_latt.shape + #build the ESMF grid coordinates + srcgrid = ESMF.Grid(np.array(src_shape), staggerloc=[ESMF.StaggerLoc.CENTER, ESMF.StaggerLoc.CORNER],coord_sys=ESMF.CoordSys.SPH_DEG) + tgtgrid = ESMF.Grid(np.array(tgt_shape), staggerloc=[ESMF.StaggerLoc.CENTER, ESMF.StaggerLoc.CORNER],coord_sys=ESMF.CoordSys.SPH_DEG) + #read in the pre-generated weight file + tgt_area=ds_out['area'] + #dummy source and target fields + srcfield = ESMF.Field(srcgrid, name='test',staggerloc=ESMF.StaggerLoc.CENTER) + tgtfield = ESMF.Field(tgtgrid, name='test',staggerloc=ESMF.StaggerLoc.CENTER) + print('Grid in and out files available. Generating target and source fields') + return srcfield,tgtfield,tgt_latt,tgt_lont,srcgrid,tgtgrid,src_latt,tgt_area + +#Define output and variable meta data +def create_emiss_file(fout): + fout.createDimension('t',None) + fout.createDimension('lat',cols) + fout.createDimension('lon',rows) + setattr(fout,'PRODUCT_ALGORITHM_VERSION','Beta') + setattr(fout,'TIME_RANGE','1 hour') + setattr(fout,'RangeBeginningDate)',rave_name[21:25]+'-'+rave_name[25:27]+'-'+rave_name[27:29]) + setattr(fout,'RangeBeginningTime\(UTC-hour\)',rave_name[29:31]) +def Store_latlon_by_Level(fout,varname,var,long_name,units,dim,fval,sfactor): + if dim=='2D': + var_out = fout.createVariable(varname, 'f4', ('lat','lon')) + var_out.units=units + var_out.long_name=long_name + var_out.standard_name=varname + fout.variables[varname][:]=var + var_out.FillValue=fval + var_out.coordinates='geolat geolon' +def Store_by_Level(fout,varname,long_name,units,dim,fval,sfactor): + if dim=='3D': + var_out = fout.createVariable(varname, 'f4', ('t','lat','lon')) + var_out.units=units + var_out.long_name = long_name + var_out.standard_name=long_name + var_out.FillValue=fval + var_out.coordinates='t geolat geolon' + +#Open LU map and extract land categories +def generate_EFs(veg_map,EF_FLM,EF_SML): + LU_map=(veg_map) + nc_land= xr.open_dataset(LU_map) + vtype= nc_land['vtype'][0,:,:] + vtype_val=vtype.values + #Processing EF + arr_parent_EFs=np.zeros((cols, rows)) + for i in range(cols): + for j in range(rows): + efs=vtype_val[i][j] + if efs == 1 or efs == 2: #needle and bradleaf + EF_12= (0.75*EF_FLM['frst'])+(0.25*EF_SML['frst']) + arr_parent_EFs[i][j] = EF_12 + elif efs == 3 or efs == 4: #deciduos + EF_34= (0.80*EF_FLM['hwd'])+(0.20*EF_SML['hwd']) + arr_parent_EFs[i][j] = EF_34 + elif efs == 5: # mixed + EF_5= (0.85*EF_FLM['mxd'])+(0.15*EF_SML['mxd']) + arr_parent_EFs[i][j] = EF_5 + elif efs == 6 or efs == 7: #Shrublands + EF_6= (0.95*EF_FLM['shrb'])+(0.05*EF_SML['shrb']) + arr_parent_EFs[i][j] = EF_6 + elif efs == 8: #woody savannas + EF_7= (0.95*EF_FLM['shrb_grs'])+(0.05*EF_SML['shrb_grs']) + arr_parent_EFs[i][j] = EF_7 + elif efs == 9 or efs == 10: #savannas & grasslandas + EF_8= (0.95*EF_FLM['grs'])+(0.05*EF_SML['grs']) + arr_parent_EFs[i][j] = EF_8 + elif efs == 12 or efs == 14 : #cropland and natural veg. + EF_9= (0.95*EF_FLM['grs'])+(0.05*EF_SML['grs']) + arr_parent_EFs[i][j] = EF_9 + else: + EF_rest= 0 + arr_parent_EFs[i][j] = EF_rest + return arr_parent_EFs + +#create a dummy hr rave interpolated file for rave_non_avail_hours and when regridder fails +def create_dummy(intp_dir,dummy_hr_rave,generate_hr_dummy,rave_avail,rave_nonavail_hours_test,rave_to_intp): + os.chdir(intp_dir) + if generate_hr_dummy==True: + for i in rave_avail: + print('Producing RAVE dummy files for all hrs:',i) + dummy_rave=xr.open_dataset(dummy_hr_rave) + missing_rave=xr.zeros_like(dummy_rave) + missing_rave.attrs['RangeBeginningDate']=i[0:4]+'-'+i[4:6]+'-'+i[6:8] + missing_rave.attrs['RangeBeginningTime\(UTC-hour\)']= i[8:10] + missing_rave.to_netcdf(rave_to_intp+i[21:49],unlimited_dims={'t':True}) + else: + for i in rave_nonavail_hours_test: + print('Producing RAVE dummy files for:',i) + dummy_rave=xr.open_dataset(dummy_hr_rave) + missing_rave=xr.zeros_like(dummy_rave) + missing_rave.attrs['RangeBeginningDate']=i[0:4]+'-'+i[4:6]+'-'+i[6:8] + missing_rave.attrs['RangeBeginningTime\(UTC-hour\)']= i[8:10] + missing_rave.to_netcdf(rave_to_intp+i+'00_'+i+'00.nc',unlimited_dims={'t':True}) + + +#Sort raw RAVE, create source and target filelds, and compute emissions factors +fcst_dates=date_range(current_day) +intp_avail_hours,intp_non_avail_hours=check_for_intp_rave(intp_dir,fcst_dates,rave_to_intp) +rave_avail,rave_avail_hours,rave_nonavail_hours_test=check_for_raw_rave(RAVE,intp_non_avail_hours) +srcfield,tgtfield,tgt_latt,tgt_lont,srcgrid,tgtgrid,src_latt,tgt_area=creates_st_fields(grid_in,grid_out) +arr_parent_EFs=generate_EFs(veg_map,EF_FLM,EF_SML) +#generate regridder +try: + print('GENERATING REGRIDDER') + regridder = ESMF.RegridFromFile(srcfield, tgtfield,filename) + print('REGRIDDER FINISHED') +except ValueError: + print('REGRIDDER FAILS USE DUMMY EMISSIONS') + use_dummy_emiss=True + generate_hr_dummy=True +else: + use_dummy_emiss=False + generate_hr_dummy=False +#process RAVE available for interpolation +sorted_obj = sorted(os.listdir(RAVE)) +for f in range(len(rave_avail)): + os.chdir(RAVE) + if use_dummy_emiss==False and rave_avail[f] in sorted_obj: + print('Interpolating:',rave_avail[f]) + rave_name=rave_avail[f] + ds_togrid=xr.open_dataset(rave_avail[f]) + QA=ds_togrid['QA'] #QC flags for fire emiss + FRE_threshold= ds_togrid['FRE'] + print('=============before regridding===========','FRP_MEAN') + print(np.sum(ds_togrid['FRP_MEAN'],axis=(1,2))) + os.chdir(intp_dir) + fout=Dataset(rave_to_intp+rave_name[21:33]+'_'+rave_name[21:33]+'.nc','w') + create_emiss_file(fout) + Store_latlon_by_Level(fout,'geolat',tgt_latt,'cell center latitude','degrees_north','2D','-9999.f','1.f') + Store_latlon_by_Level(fout,'geolon',tgt_lont,'cell center longitude','degrees_east','2D','-9999.f','1.f') + for svar in vars_emis: + print(svar) + srcfield = ESMF.Field(srcgrid, name=svar) + tgtfield = ESMF.Field(tgtgrid, name=svar) + src_rate = ds_togrid[svar].fillna(0) + #apply QC flags + src_QA=xr.where(FRE_threshold>1000,src_rate,0.0) + src_cut = src_QA[0,:,:] + src_cut = xr.where(src_latt>7.22291,src_cut,0.0) + srcfield.data[...] = src_cut + tgtfield = regridder(srcfield, tgtfield) + if svar=='FRP_MEAN': + Store_by_Level(fout,'frp_avg_hr','Mean Fire Radiative Power','MW','3D','0.f','1.f') + tgt_rate = tgtfield.data + fout.variables['frp_avg_hr'][0,:,:] = tgt_rate + print('=============after regridding==========='+svar) + print(np.sum(tgt_rate)) + elif svar=='FRE': + Store_by_Level(fout,'ebb_smoke_hr','PM2.5 emissions','ug m-2 h-1','3D','0.f','1.f') + tgt_rate = tgtfield.data + tgt_rate = tgt_rate*arr_parent_EFs*beta + tgt_rate = (tgt_rate*fg_to_ug)/to_s + tgt_rate = tgt_rate/tgt_area + tgt_rate =xr.DataArray(tgt_rate) + fout.variables['ebb_smoke_hr'][0,:,:] = tgt_rate + elif svar=='FRP_SD': + Store_by_Level(fout,'frp_std_hr','Standar Deviation of Fire Radiative Energy','MW','3D','0.f','1.f') + tgt_rate = tgtfield.data + fout.variables['frp_std_hr'][0,:,:] = tgt_rate + elif svar=='PM2.5': + Store_by_Level(fout,'ebu_oc','Particulate matter < 2.5 ug','ug m-2 s-1','3D','0.f','1.f') + tgt_rate = tgtfield.data/to_s + fout.variables['ebu_oc'][0,:,:] = tgt_rate + else : + tgt_rate = tgtfield.data/to_s + fout.variables[svar][0,:,:] = tgt_rate + ds_togrid.close() + fout.close() +#Create dummy hr files +create_dummy(intp_dir,dummy_hr_rave,generate_hr_dummy,rave_avail,rave_nonavail_hours_test,rave_to_intp) diff --git a/tests/baseline_configs/config.nco_CONUS_25km_GFDLgrid.sh b/tests/baseline_configs/config.nco_grid_CONUS_25km_GFDLgrid_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16beta.sh similarity index 100% rename from tests/baseline_configs/config.nco_CONUS_25km_GFDLgrid.sh rename to tests/baseline_configs/config.nco_grid_CONUS_25km_GFDLgrid_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16beta.sh diff --git a/tests/baseline_configs/config.nco_RRFS_CONUS_25km_HRRR_RAP.sh b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh similarity index 100% rename from tests/baseline_configs/config.nco_RRFS_CONUS_25km_HRRR_RAP.sh rename to tests/baseline_configs/config.nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh diff --git a/tests/baseline_configs/config.nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_HRRR.sh b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_HRRR.sh new file mode 100644 index 000000000..c16cf5488 --- /dev/null +++ b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_HRRR.sh @@ -0,0 +1,18 @@ +RUN_ENVIR="nco" +PREEXISTING_DIR_METHOD="rename" + +PREDEF_GRID_NAME="RRFS_CONUS_25km" +QUILTING="TRUE" + +CCPP_PHYS_SUITE="FV3_HRRR" + +FCST_LEN_HRS="06" +LBC_SPEC_INTVL_HRS="3" + +DATE_FIRST_CYCL="20200208" +DATE_LAST_CYCL="20200208" +CYCL_HRS=( "00" ) + +EXTRN_MDL_NAME_ICS="HRRR" +EXTRN_MDL_NAME_LBCS="RAP" +USE_USER_STAGED_EXTRN_FILES="TRUE" diff --git a/tests/baseline_configs/config.nco_RRFS_CONUS_3km_FV3GFS_FV3GFS.sh b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp_regional.sh similarity index 100% rename from tests/baseline_configs/config.nco_RRFS_CONUS_3km_FV3GFS_FV3GFS.sh rename to tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp_regional.sh diff --git a/tests/baseline_configs/config.nco_RRFS_CONUS_3km_HRRR_RAP.sh b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh similarity index 100% rename from tests/baseline_configs/config.nco_RRFS_CONUS_3km_HRRR_RAP.sh rename to tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh diff --git a/tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_HRRR.sh b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_HRRR.sh new file mode 100644 index 000000000..88d007451 --- /dev/null +++ b/tests/baseline_configs/config.nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_HRRR.sh @@ -0,0 +1,18 @@ +RUN_ENVIR="nco" +PREEXISTING_DIR_METHOD="rename" + +PREDEF_GRID_NAME="RRFS_CONUS_3km" +QUILTING="TRUE" + +CCPP_PHYS_SUITE="FV3_HRRR" + +FCST_LEN_HRS="06" +LBC_SPEC_INTVL_HRS="3" + +DATE_FIRST_CYCL="20200208" +DATE_LAST_CYCL="20200208" +CYCL_HRS=( "00" ) + +EXTRN_MDL_NAME_ICS="HRRR" +EXTRN_MDL_NAME_LBCS="RAP" +USE_USER_STAGED_EXTRN_FILES="TRUE" diff --git a/tests/baseline_configs/config.nco_RRFS_SUBCONUS_3km_HRRR_RAP.sh b/tests/baseline_configs/config.nco_grid_RRFS_SUBCONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh similarity index 100% rename from tests/baseline_configs/config.nco_RRFS_SUBCONUS_3km_HRRR_RAP.sh rename to tests/baseline_configs/config.nco_grid_RRFS_SUBCONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR.sh diff --git a/tests/baselines_list.txt b/tests/baselines_list.txt index 819833ed8..aa4e72a35 100644 --- a/tests/baselines_list.txt +++ b/tests/baselines_list.txt @@ -45,12 +45,14 @@ grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_HRRR grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_RRFS_v1beta grid_RRFS_SUBCONUS_3km_FV3GFS_FV3GFS grid_RRFS_SUBCONUS_3km_HRRR_RAP -nco_CONUS_25km_GFDLgrid -nco_RRFS_CONUS_25km_HRRR_RAP -nco_RRFS_CONUS_3km_FV3GFS_FV3GFS -nco_RRFS_CONUS_3km_HRRR_RAP -nco_RRFS_SUBCONUS_3km_HRRR_RAP nco_ensemble +nco_grid_CONUS_25km_GFDLgrid_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16beta +nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_GSD_SAR +nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_HRRR +nco_grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_2017_gfdlmp_regional +nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR +nco_grid_RRFS_CONUS_3km_ics_HRRR_lbcs_RAP_suite_HRRR +nco_grid_RRFS_SUBCONUS_3km_ics_HRRR_lbcs_RAP_suite_GSD_SAR new_ESGgrid new_GFDLgrid new_GFDLgrid__GFDLgrid_USE_GFDLgrid_RES_IN_FILENAMES_eq_FALSE diff --git a/ush/bash_utils/check_for_preexist_dir_file.sh b/ush/bash_utils/check_for_preexist_dir_file.sh index 7b9b59772..900ec453a 100644 --- a/ush/bash_utils/check_for_preexist_dir_file.sh +++ b/ush/bash_utils/check_for_preexist_dir_file.sh @@ -63,7 +63,7 @@ where the arguments are defined as follows: method: String specifying the action to take if a preexisting version of - dir_or_file is found. Valid values are \"delete\", \"rename\", and \"quit\". + dir_or_file is found. Valid values are \"delete\", \"upgrade\", \"rename\", and \"quit\". " fi @@ -84,7 +84,7 @@ where the arguments are defined as follows: # #----------------------------------------------------------------------- # - local valid_vals_method=( "delete" "rename" "quit" ) + local valid_vals_method=( "delete" "upgrade" "rename" "quit" ) check_var_valid_value "method" "valid_vals_method" # #----------------------------------------------------------------------- @@ -112,6 +112,46 @@ where the arguments are defined as follows: # #----------------------------------------------------------------------- # +# If method is set to "upgrade", +# keep preexisting directory intact except that +# when preexisting directory is $EXPDIR, do the following: +# save all old files to a subdirecotry oldxxx/ and then +# populate new files into the $EXPDIR directory +# This is useful to keep ongoing runs uninterrupted: +# rocotoco *db files and previous cycles will stay and hence +# 1. no need to manually cp/mv *db files and previous cycles back +# 2. no need to manually restart related rocoto tasks failed during +# the workflow generation process +# This may best suit for incremental system upgrades. +# +# Alternatively, one can always elect to use the "rename" option +# and then manually do the above aftermath +# +#----------------------------------------------------------------------- +# + "upgrade") + if [[ "${dir_or_file}" == "${EXPTDIR}" ]]; then + local i=1 + local old_indx=$( printf "%03d" "$i" ) + local old_dir_or_file="${dir_or_file}_old${old_indx}" + while [ -d "${old_dir_or_file}" ]; do + i=$[$i+1] + old_indx=$( printf "%03d" "$i" ) + old_dir_or_file="${dir_or_file}_old${old_indx}" + done + + print_info_msg "$VERBOSE" " + Specified directory or file (dir_or_file) already exists: + dir_or_file = \"${dir_or_file}\" + Moving (renaming) preexisting directory or file to: + old_dir_or_file = \"${old_dir_or_file}\"" + + rsync_vrfy -a "${dir_or_file}/" "${old_dir_or_file}" + fi + ;; +# +#----------------------------------------------------------------------- +# # If method is set to "rename", we move (rename) the preexisting directory # or file. # diff --git a/ush/bash_utils/filesys_cmds_vrfy.sh b/ush/bash_utils/filesys_cmds_vrfy.sh index d11ec4720..d3aed0451 100644 --- a/ush/bash_utils/filesys_cmds_vrfy.sh +++ b/ush/bash_utils/filesys_cmds_vrfy.sh @@ -234,6 +234,12 @@ function cp_vrfy() { { restore_shell_opts; } > /dev/null 2>&1 } +function rsync_vrfy() { + { save_shell_opts; set -u +x; } > /dev/null 2>&1 + filesys_cmd_vrfy "rsync" "$@" + { restore_shell_opts; } > /dev/null 2>&1 +} + function mv_vrfy() { { save_shell_opts; set -u +x; } > /dev/null 2>&1 filesys_cmd_vrfy "mv" "$@" diff --git a/ush/bash_utils/make_agent_link_for_fix b/ush/bash_utils/make_agent_link_for_fix new file mode 100755 index 000000000..97c4a2499 --- /dev/null +++ b/ush/bash_utils/make_agent_link_for_fix @@ -0,0 +1,13 @@ +#!/bin/sh +mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +ushdir="$(dirname "$mydir")" +basedir="$(dirname "$ushdir")" +agentdir="$basedir/fix/.agent" +source $ushdir/fix_rrfs_locations.sh +mkdir -p $basedir/fix + +filetype=$(file $agentdir) +if [[ ! "$filetype" == *"symbolic link"* ]]; then + rm -rf $agentdir +fi +ln -snf $FIX_RRFS_LOCATION $agentdir diff --git a/ush/bash_utils/preCommit b/ush/bash_utils/preCommit new file mode 100755 index 000000000..a0237a207 --- /dev/null +++ b/ush/bash_utils/preCommit @@ -0,0 +1,66 @@ +#!/bin/sh +# pre-commit hook +# +FMAXSIZE="1536" #limit of file size for all files, unit kb, 1.5MB +DATASIZE="5" #limit of binary data file size, unit kb, 5kb +TEXTTYPE="text" +# +mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +ushdir="$(dirname "$mydir")" +basedir="$(dirname "$ushdir")" +tmpdir=$basedir/.git/tmp +mkdir -p "$tmpdir" +# +function LargeOrNot { + local filepath="${1%/}" + local filesize=$(du -b $filepath 2>/dev/null |cut -f1 2>/dev/null) + if [ -z $filesize ]; then filesize=0; fi + local filetype=$(file $filepath) + + if [ -n "$DATASIZE" ] && [ "$DATASIZE" -eq "$DATASIZE" ] 2>/dev/null; then #check if $DATASIZE is a number + local qattr=$(( $DATASIZE * 1024 )) #conver to bytes + if [[ $filesize -gt $qattr ]] && [[ ! "$filetype" == *"$TEXTTYPE"* ]]; then + if_large=true + else #also avoid large text files + if [ -n "$FMAXSIZE" ] && [ "$FMAXSIZE" -eq "$FMAXSIZE" ] 2>/dev/null; then #check if $FMAXSIZE is a number + local qattr=$(( $FMAXSIZE * 1024 )) #conver to bytes + if [[ $filesize -gt $qattr ]]; then + if_large=true + fi + else + echo "Bad FMAXSIZE setting" >&2 + if_large=true # set to true and let users handle it + fi + fi + else + echo "Bad DATASIZE setting" >&2 + if_large=true # set to true and let users handle it + fi +} +# +#pre-commit operations +# +# get staged files except those deleted +ierr=$(git diff --diff-filter=d --cached --name-only 1>$tmpdir/files.changed 2>/dev/null; echo $? ) +if [ $ierr -ne 0 ]; then + echo "fatal: fail to run git diff --diff-filter=d --cached --name-only" + exit 1 #stop the commit +fi + +has_large=false +while read line; do # <$tmpdir/files.changed + if [ ! -z "$line" ]; then + myfile=$(echo "${line}" |xargs) #trim leading whitespaces + if_large=false + LargeOrNot $myfile #check if it is a large binary file + if $if_large; then + echo "$myfile is a large or binary file and should be trackted through a link." >&2 + has_large=true + fi + fi +done < $tmpdir/files.changed + +if $has_large; then + echo " commit failed. " >&2 + exit 1 #stop the commit +fi diff --git a/ush/config.sh.RRFS-SD_PM25DA_CONUS_3km b/ush/config.sh.RRFS-SD_PM25DA_CONUS_3km new file mode 100644 index 000000000..196e887f8 --- /dev/null +++ b/ush/config.sh.RRFS-SD_PM25DA_CONUS_3km @@ -0,0 +1,241 @@ +MACHINE="jet" +ACCOUNT="nrtrr" +#MACHINE="hera" +#ACCOUNT="wrfruc" +#RESERVATION="rrfsdet" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/mnt/lfs1/BMC/wrfruc/hwang/base_e/RRFS-SD_T4" +EXPT_SUBDIR="RRFS_CONUS_3km_rt" + +if [[ -n $RESERVATION ]] ; then + ACCOUNT=rtrr + SERVICE_ACCOUNT=rtrr + PARTITION_DEFAULT=kjet + PARTITION_FCST=kjet + PARTITION_GRAPHICS=kjet + PARTITION_ANALYSIS=kjet + PARTITION_WGRIB2=kjet + + QUEUE_DEFAULT="rth" + QUEUE_FCST="rth" + QUEUE_ANALYSIS="rth" + QUEUE_WGRIB2="rt" + QUEUE_GRAPHICS="rt" + QUEUE_HPSS="rt" +fi + +if [[ $MACHINE == "hera" ]] ; then + ACCOUNT="wrfruc" + PARTITION_DEFAULT="" + PARTITION_FCST="" + QUEUE_ANALYSIS="batch" + QUEUE_WGRIB2="batch" + QUEUE_GRAPHICS="batch" +fi + +if [[ $MACHINE == "orion" ]] ; then + ACCOUNT=wrfruc + QUEUE_ANALYSIS="batch" + QUEUE_WGRIB2="batch" + QUEUE_GRAPHICS="batch" + QUEUE_POST="batch" + NCORES_PER_NODE=24 +fi + +if [[ $MACHINE == "wcoss2" ]] ; then + ACCOUNT=RRFS-DEV + QUEUE_DEFAULT="dev" + QUEUE_ANALYSIS="dev" + QUEUE_FCST="dev" + QUEUE_HPSS="dev_transfer" + QUEUE_WGRIB2="dev" + QUEUE_GRAPHICS="dev" +fi + +VERBOSE="TRUE" + +RUN_ENVIR="nco" + +PREDEF_GRID_NAME=RRFS_CONUS_3km +ADDNL_OUTPUT_GRIDS=() + +TILE_LABELS="CONUS REGIONS" +TILE_SETS="full NE,NC,NW,SE,SC,SW" + +DO_DACYCLE="TRUE" +DO_SDDACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="FALSE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" + +BERROR_SD_FN="berror.rrfs_sd" #under $FIX_GSI +ANAVINFO_SD_FN="anavinfo.rrfs_sd" +CONVINFO_SD_FN="convinfo.rrfs_sd" + +QUILTING="TRUE" +CCPP_PHYS_SUITE="FV3_HRRR" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="18" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +#DATE_FIRST_CYCL="20210511" +#DATE_LAST_CYCL="20210512" +DATE_FIRST_CYCL="20221018" +DATE_LAST_CYCL="20221019" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="10" +CYCLEDAY="18-19" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 01:00:00" +POSTPROC_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 01:00:00" +POSTPROC_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 03:00:00" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +fi + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="12" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=12; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +SOIL_SURGERY_time=2022072404 + +DT_ATMOS=60 +NCORES_RUN_ANAL=240 +NCORES_RUN_OBSERVER=80 +HYBENSMEM_NMIN=66 +HALO_BLEND=20 +IO_LAYOUT_Y=1 +PPN_RUN_REF2TTEN=1 +PPN_RUN_NONVARCLDANL=${IO_LAYOUT_Y} + +PRINT_DIFF_PGR="TRUE" + +if [[ -n $RESERVATION ]] ; then + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="1" + PPN_RUN_POST="40" +fi + +WTIME_RUN_FCST="02:45:00" +WTIME_MAKE_LBCS="02:00:00" + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +envir="para" + +NET="RRFS_CONUS" +TAG="RRFS_CONUS_3km" + +USE_CUSTOM_POST_CONFIG_FILE="TRUE" +TESTBED_FIELDS_FN="testbed_fields_bgdawp.txt" +TESTBED_FIELDS_FN2="testbed_fields_bgrd3d.txt" +CUSTOM_POST_CONFIG_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/postxconfig-NT-fv3lam_rrfs.txt" +CUSTOM_POST_PARAMS_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/params_grib2_tbl_new" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_dev1" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/rtrr/RRFS/graphics" +NCL_REGION="conus" +MODEL="RRFS_conus_3km" + +# +# In NCO mode, the following don't need to be explicitly set to "FALSE" +# in this configuration file because the experiment generation script +# will do this (along with printing out an informational message). +# +#RUN_TASK_MAKE_GRID="FALSE" +#RUN_TASK_MAKE_OROG="FALSE" +#RUN_TASK_MAKE_SFC_CLIMO="FALSE" + +if [[ $MACHINE == "wcoss2" ]] ; then + LAYOUT_X="42" + LAYOUT_Y="40" + PPN_MAKE_ICS="32" + PPN_MAKE_LBCS="64" + NNODES_MAKE_ICS="2" + NNODES_MAKE_LBCS="1" + PPN_RUN_ANAL="32" + NNODES_RUN_ANAL="10" + PPN_RUN_FCST="64" + NNODES_RUN_FCST="31" + PPN_RUN_POST="64" + NNODES_RUN_POST="1" + + MAXTRIES_MAKE_ICS="2" + MAXTRIES_MAKE_LBCS="2" + MAXTRIES_RUN_PREPSTART="2" + MAXTRIES_RUN_FCST="2" + MAXTRIES_ANAL_GSI="2" + MAXTRIES_ANAL_ENKF="2" + MAXTRIES_RUN_POST="2" + MAXTRIES_RUN_WGRIB2="2" + MAXTRIES_RUN_ANAL="2" + + FV3GFS_FILE_FMT_ICS="netcdf" + FV3GFS_FILE_FMT_LBCS="netcdf" +fi + +if [[ $MACHINE == "orion" ]] ; then + LAYOUT_X="30" + LAYOUT_Y="40" + PPN_RUN_FCST="40" + WTIME_RUN_WGRIB2="00:20:00" +fi + +RUN="RRFS_conus_3km" +COMINgfs="" + +. set_rrfs_config.sh + +STMP="/mnt/lfs1/BMC/wrfruc/hwang/base_e/RRFS-SD_T4/NCO_dirs/stmp" # Path to directory STMP that mostly contains input files. +PTMP="/mnt/lfs1/BMC/wrfruc/hwang/base_e/RRFS-SD_T4/NCO_dirs/ptmp" # Path to directory STMP that mostly contains input files. +NWGES="/mnt/lfs1/BMC/wrfruc/hwang/base_e/RRFS-SD_T4/NCO_dirs/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/mnt/lfs1/BMC/wrfruc/hwang/RRFS-SD_T4/NCO_dirs/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=10 # FV3LAM ensemble size for GSI hybrid analysis +fi + + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=9 +# DO_SPPT=TRUE +# SPPT_MAG=0.5 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" +fi + diff --git a/ush/config.sh.RRFS_AK_dev1 b/ush/config.sh.RRFS_AK_dev1 new file mode 100644 index 000000000..8a7f368d6 --- /dev/null +++ b/ush/config.sh.RRFS_AK_dev1 @@ -0,0 +1,177 @@ +MACHINE="jet" +ACCOUNT="nrtrr" +RESERVATION="rrfsdet" +EXPT_BASEDIR="/home/rtrr/RRFS" +EXPT_SUBDIR="RRFS_AK_dev1" + +if [[ -n $RESERVATION ]] ; then + ACCOUNT=rtrr + SERVICE_ACCOUNT=nrtrr + PARTITION_DEFAULT=kjet + PARTITION_FCST=kjet + PARTITION_GRAPHICS=kjet,xjet,tjet,ujet,vjet + PARTITION_ANALYSIS=kjet +fi + +if [[ $MACHINE == "hera" ]] ; then + ACCOUNT="wrfruc" + PARTITION_DEFAULT="" + PARTITION_FCST="" + QUEUE_ANALYSIS="batch" + +# for using RAP as boundary and initial +# EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/public/data/grids/rap/full/wrfnat/grib2 +# EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/public/data/grids/rap/full/wrfnat/grib2 +# for using GFS as boundary and initial + EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/public/data/grids/gfs/0p25deg/grib2 + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/public/data/grids/gfs/0p25deg/grib2 +# observations + OBSPATH=/scratch2/BMC/public/data/grids/rap/obs + OBSPATH_NSSLMOSIAC=/scratch2/BMC/public/data/radar/nssl/mrms/conus + LIGHTNING_ROOT=/scratch2/BMC/public/data/lightning + ENKF_FCST=/scratch1/NCEPDEV/rstprod/com/gfs/prod +fi + +VERBOSE="TRUE" + +RUN_ENVIR="nco" +PREEXISTING_DIR_METHOD="upgrade" + +PREDEF_GRID_NAME=RRFS_AK_3km + +DO_DACYCLE="TRUE" +#DO_SPINUP="TRUE" +#DO_RETRO="TRUE" +#LBCS_ICS_ONLY="TRUE" +#DO_RADDA="FALSE" + +AIRCRAFT_REJECT="/home/amb-verif/acars_RR/amdar_reject_lists" +SFCOBS_USELIST="/lfs4/BMC/amb-verif/rap_ops_mesonet_uselists" +QUILTING="TRUE" +CCPP_PHYS_SUITE="FV3_HRRR" + +EXTRN_MDL_ICS_OFFSET_HRS="0" +BOUNDARY_LEN_HRS="21" +BOUNDARY_LONG_LEN_HRS="27" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="0" +EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS="0" + +DATE_FIRST_CYCL="20210708" +DATE_LAST_CYCL="20210930" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="7-9" +#CYCLEDAY="1-4" + +if [[ $DO_RETRO == "TRUE" ]] ; then + if [[ $LBCS_ICS_ONLY == "TRUE" ]]; then + PREEXISTING_DIR_METHOD="rename" + INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 12:00:00" + BOUNDARY_CYCLEDEF="00 00-02,04-08,10-14,16-20,22,23 ${CYCLEDAY} ${CYCLEMONTH} 2021 *" + BOUNDARY_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 06:00:00" + else + PREEXISTING_DIR_METHOD="upgrade" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" + POSTPROC_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" + POSTPROC_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 03:00:00" + if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2021 *" + fi + fi +else + INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0900 ${DATE_LAST_CYCL}2300 12:00:00" + BOUNDARY_CYCLEDEF="00 00-02,04-08,10-14,16-20,22,23 ${CYCLEDAY} ${CYCLEMONTH} 2021 *" + BOUNDARY_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 06:00:00" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" + POSTPROC_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" + POSTPROC_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 03:00:00" + if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2021 *" + fi + ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" +fi + +FCST_LEN_HRS="18" +FCST_LEN_HRS_SPINUP="2" +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="18" +#FCST_LEN_HRS_CYCLES=(18 3 3 18 3 3 18 3 3 18 3 3 18 3 3 18 3 3 18 3 3 18 3 3) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=18; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1 2 3 4 5 6" + +NCORES_RUN_ANAL=240 +HYBENSMEM_NMIN=66 +HALO_BLEND=10 + +if [[ -n $RESERVATION ]] ; then + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="1" + PPN_RUN_POST="40" +fi + +WTIME_RUN_FCST="03:00:00" +DT_ATMOS=40 + +EXTRN_MDL_NAME_ICS="RAP" +EXTRN_MDL_NAME_LBCS="RAP" + +envir="para" + +NET="RRFS_AK" +TAG="RRFS_dev1_AK" + +ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ak_dev1" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/rtrr/RRFS/graphics" +NCL_REGION="alaska" +MODEL="RRFS_AK (dev1)" + +# +# In NCO mode, the following don't need to be explicitly set to "FALSE" +# in this configuration file because the experiment generation script +# will do this (along with printing out an informational message). +# +#RUN_TASK_MAKE_GRID="FALSE" +#RUN_TASK_MAKE_OROG="FALSE" +#RUN_TASK_MAKE_SFC_CLIMO="FALSE" + +RUN="RRFS_AK" +COMINgfs="" + +STMP="/lfs4/BMC/nrtrr/NCO_dirs/stmp" # Path to directory STMP that mostly contains input files. +PTMP="/lfs4/BMC/nrtrr/NCO_dirs/ptmp" # Path to directory STMP that mostly contains input files. +NWGES="/lfs4/BMC/nrtrr/NCO_dirs/nwges" # Path to directory NWGES that save boundary, cold initial, restart files + +if [[ $DO_RETRO == "TRUE" ]] ; then + CLEAN_OLDPROD_HRS="240" + CLEAN_OLDLOG_HRS="240" + CLEAN_OLDRUN_HRS="6" + CLEAN_OLDFCST_HRS="6" + CLEAN_OLDSTMPPOST_HRS="6" + if [[ $LBCS_ICS_ONLY == "TRUE" ]]; then + CLEAN_OLDRUN_HRS="7777" + CLEAN_OLDFCST_HRS="7777" + fi +fi +# +# In NCO mode, the user must manually (e.g. after doing the build step) +# create the symlink "${FIXrrfs}/fix_sar" that points to EMC's FIXLAM +# directory on the machine. For example, on hera, the symlink's target +# needs to be +# +# /scratch2/NCEPDEV/fv3-cam/emc.campara/fix_fv3cam/fix_sar +# +# The experiment generation script will then set FIXLAM to +# +# FIXLAM="${FIXrrfs}/fix_lam/${EMC_GRID_NAME}" +# +# where EMC_GRID_NAME has the value set above. +# + diff --git a/ush/config.sh.RRFS_CONUS_13km b/ush/config.sh.RRFS_CONUS_13km new file mode 100644 index 000000000..538532c72 --- /dev/null +++ b/ush/config.sh.RRFS_CONUS_13km @@ -0,0 +1,111 @@ +MACHINE="hera" +version="v0.3.3" +ACCOUNT="nrtrr" +#RESERVATION="rrfsdet" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="YourOwnSpace/rrfs.${version}" +EXPT_SUBDIR="rrfs_conus_13km" + +PREDEF_GRID_NAME=RRFS_CONUS_13km +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" +DO_SAVE_INPUT="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="18" +BOUNDARY_PROC_GROUP_NUM="10" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220207" +DATE_LAST_CYCL="20220208" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="2" +CYCLEDAY="7-8" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01,02,04,05,07,08,10,11,13,14,16,17,19,20,22,23 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +PRODLONG_CYCLEDEF="00 0-23/3 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +fi + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="12" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=12; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1 2" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +netcdf_diag=.true. +binary_diag=.false. +SOIL_SURGERY_time=2022020704 + +regional_ensemble_option=5 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="rrfs" +TAG="rrfs_c13v33" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_dev1" +NCL_REGION="conus" +MODEL="rrfs_c13v33" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="YourOwnSpace/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="YourOwnSpace/${version}/${envir}" # Path to directory STMP that mostly contains input files. +NWGES="YourOwnSpace/${version}/nwges/${envir}/${NET}" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="YourOwnSpace/${version}/nwges/${envir}/${NET}" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi + diff --git a/ush/config.sh.RRFS_CONUS_13km_ens b/ush/config.sh.RRFS_CONUS_13km_ens new file mode 100644 index 000000000..945e087c9 --- /dev/null +++ b/ush/config.sh.RRFS_CONUS_13km_ens @@ -0,0 +1,178 @@ +MACHINE="hera" +version="v0.3.2" +ACCOUNT="wrfruc" +#RESERVATION="rrfsens" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="YourOwnSpace/rrfs.${version}" +EXPT_SUBDIR="RRFS_CONUS_13km_ens" + +PREDEF_GRID_NAME=RRFS_CONUS_13km +. set_rrfs_config_general.sh + +DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_SAVE_INPUT="FALSE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="4" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20221110" +DATE_LAST_CYCL="20221130" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("18") +CYCL_HRS_PRODSTART=("19") +CYCL_HRS_STOCH=("00" "12") +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="11" +CYCLEDAY="10-30" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 07-08 02 2022 *" +PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]]; then + BOUNDARY_LEN_HRS="36" + DO_SPINUP="FALSE" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" + PRODLONG_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=6; done +if [[ ${DO_ENSFCST} == "TRUE" ]]; then + for i in {0..23..12}; do FCST_LEN_HRS_CYCLES[$i]=36; done + POSTPROC_LEN_HRS="36" + BOUNDARY_PROC_GROUP_NUM="8" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +netcdf_diag=.true. +binary_diag=.false. +NFHOUT="3" +NFHMAX_HF="24" + +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="01:45:00" +NNODES_RUN_ANAL="1" +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +if [[ $MACHINE == "wcoss2" ]] ; then + EXTRN_MDL_NAME_LBCS="FV3GFS" +fi +EXTRN_MDL_SOURCE_BASEDIR_ICS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" +EXTRN_MDL_SOURCE_BASEDIR_LBCS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +RUN="rrfs_conus_13km_ensda" +if [[ ${DO_ENSFCST} == "TRUE" ]]; then + RUN="rrfs_conus_13km_ensfcst" +fi +envir="para" +NCL_REGION="conus" +MODEL="rrfs_b" +NET="rrfs_a" +TAG="c13enkf32" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_dev1" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="FALSE" + DO_ENSINIT="TRUE" + NUM_ENS_MEMBERS_FCST=9 + NNODES_RUN_RECENTER="3" + PPN_RUN_RECENTER="$(( ${NUM_ENS_MEMBERS} + 1 ))" + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} +# DO_SPPT=TRUE + DO_SPP=TRUE +# SPPT_MAG=0.5 + WTIME_RUN_FCST="01:45:00" + WTIME_MAKE_LBCS="01:30:00" + fi + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + CLEAN_OLDFCST_HRS="48" + CLEAN_OLDSTMPPOST_HRS="48" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. +fi + +RUN="rrfs_a_c13_ensda" +RUN_ensctrl="rrfs" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="rrfs_a_c13_ensfcst" +fi +COMINgfs="" + +. set_rrfs_config.sh + +STMP="YourOwnSpace/${version}/stmp_ensda" # Path to directory STMP that mostly contains input files. +if [[ ${DO_ENSFCST} == "TRUE" ]]; then + STMP="YourOwnSpace/${version}/stmp_ensfcst" # Path to directory STMP that mostly contains input files. +fi +PTMP="YourOwnSpace/${version}" # Path to directory STMP that mostly contains input files. +NWGES="YourOwnSpace/${version}/nwges/${envir}/${NET}" # Path to directory NWGES that save boundary, cold initial, restart files +ENSCTRL_STMP="YourOwnSpace/${version}/stmp" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="YourOwnSpace/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="YourOwnSpace/${version}/nwges/${envir}/${NET}" # Path to directory STMP that mostly contains control input files for ensemble recentering. + diff --git a/ush/config.sh.RRFS_CONUS_3km b/ush/config.sh.RRFS_CONUS_3km new file mode 100644 index 000000000..aa312ecfb --- /dev/null +++ b/ush/config.sh.RRFS_CONUS_3km @@ -0,0 +1,124 @@ +MACHINE="jet" +version="v0.6.2" +ACCOUNT="nrtrr" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="YourOwnSpace/${version}" +EXPT_SUBDIR="RRFS_CONUS_3km" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="FALSE" +USE_FVCOM="FALSE" +PREP_FVCOM="FALSE" +DO_PARALLEL_PRDGEN="FALSE" +DO_GSIDIAG_OFFLINE="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="18" +BOUNDARY_PROC_GROUP_NUM="3" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220720" +DATE_LAST_CYCL="20220721" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="7" +CYCLEDAY="20-21" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01,02,04,05,07,08,10,11,13,14,16,17,19,20,22,23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 0-23/3 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=12; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +## set up post +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="12" +NFHOUT_HF="1" +# 15 min output upto 18 hours +#NFHMAX_HF="2" +#NFHOUT="1" +#NSOUT_MIN="15" +#OUTPUT_FH="0.0 0.25 0.50 0.75 1.0 1.25 1.50 1.75 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +SOIL_SURGERY_time=2022072004 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=1 # 5 for RRFS ensemble + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="rrfs_b" +TAG="c3v52" + +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_b" +NCL_REGION="conus" +MODEL="rrfs_b" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="YourOwnSpace/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="YourOwnSpace/${version}" # Path to directory STMP that mostly contains input files. +NWGES="YourOwnSpace/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="YourOwnSpace/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh.RRFS_CONUS_3km_ens b/ush/config.sh.RRFS_CONUS_3km_ens new file mode 100644 index 000000000..abb395dc9 --- /dev/null +++ b/ush/config.sh.RRFS_CONUS_3km_ens @@ -0,0 +1,196 @@ +MACHINE="jet" +version="v0.6.2" +ACCOUNT="wrfruc" +RESERVATION="rrfsens" +RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/misc/whome/wrfruc/RRFSE/rrfs.${version}" +EXPT_SUBDIR="RRFS_CONUS_3km_ens" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +#DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +#DO_BUFRSND="TRUE" +#USE_FVCOM="TRUE" +#PREP_FVCOM="TRUE" + +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + EXPT_SUBDIR="rrfs_conus_enfcst" + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="4" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20221214" +DATE_LAST_CYCL="20221215" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("06" "18") +CYCL_HRS_PRODSTART=("07" "19") +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + CYCL_HRS_STOCH=("00" "06" "12" "18") +fi +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="12" +CYCLEDAY="14-15" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 01:00:00" +PRODLONG_CYCLEDEF="00 01 01 01 2100 *" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + BOUNDARY_LEN_HRS="36" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=1; done +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + for i in {0..23..06}; do FCST_LEN_HRS_CYCLES[$i]=24; done + FCST_LEN_HRS="6" + POSTPROC_LEN_HRS="24" + BOUNDARY_PROC_GROUP_NUM="8" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +netcdf_diag=.true. +binary_diag=.false. + +## set up post +NFHOUT_HF="1" +NFHMAX_HF="12" +NFHOUT="3" + +WTIME_RUN_FCST="01:00:00" +WTIME_MAKE_LBCS="02:00:00" + +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +envir="para" +NET="rrfs_b" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_b" +NCL_REGION="conus" +MODEL="RRFS_conus_3km" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="TRUE" + DO_ENSINIT="TRUE" + + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + CLEAN_OLDFCST_HRS="12" + CLEAN_OLDSTMPPOST_HRS="12" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. + + START_TIME_SPINUP="00:30:00" +# LAYOUT_X="11" +# LAYOUT_Y="32" +# NNODES_RUN_FCST="6" + + NUM_ENS_MEMBERS_FCST=9 + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} + WTIME_RUN_FCST="04:45:00" + WTIME_MAKE_LBCS="01:30:00" + +# LAYOUT_X="31" +# LAYOUT_Y="32" +# NNODES_RUN_FCST="16" + + DO_SPP="TRUE" + DO_SPPT="TRUE" + DO_SKEB="FALSE" + SPPT_MAG="0.7" + DO_LSM_SPP="TRUE" + DO_RECENTER="TRUE" + + fi + PPN_RUN_RECENTER="$(( ${NUM_ENS_MEMBERS} + 1 ))" + NNODES_RUN_RECENTER="6" +# NNODES_RUN_RECENTER="10" +# PPN_RUN_RECENTER="128" + + CLEAN_OLDFCST_HRS="48" + CLEAN_OLDSTMPPOST_HRS="48" +fi + +RUN_ensctrl="rrfs" +RUN="rrfs_conus_3km_ensda" +TAG="c3enkf62" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="rrfs_conus_3km_ensfcst" + TAG="c3enfcst62" +fi + +. set_rrfs_config.sh + +STMP="/mnt/lfs4/BMC/wrfruc/RRFSE/${version}/stmp_ensda" # Path to directory STMP that mostly contains input files. +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + STMP="/mnt/lfs4/BMC/wrfruc/RRFSE/${version}/stmp_ensfcst" # Path to directory STMP that mostly contains input files. +fi +PTMP="/mnt/lfs4/BMC/wrfruc/RRFSE/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/mnt/lfs4/BMC/wrfruc/RRFSE/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +ENSCTRL_STMP="/mnt/lfs4/BMC/nrtrr/${version}/stmp" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="/mnt/lfs4/BMC/nrtrr/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="/mnt/lfs4/BMC/nrtrr/${version}/nwges" # Path to directory STMP that mostly contains control input files for ensemble recentering. diff --git a/ush/config.sh.RRFS_NA_13km b/ush/config.sh.RRFS_NA_13km new file mode 100644 index 000000000..6d8d3e41f --- /dev/null +++ b/ush/config.sh.RRFS_NA_13km @@ -0,0 +1,91 @@ +MACHINE="jet" +ACCOUNT="nrtrr" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="YourOwnSpacei/rrfs.${version}" +EXPT_SUBDIR="RRFS_NA_13km_dev1" + +PREDEF_GRID_NAME=GSD_RAP13km +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +ADDNL_OUTPUT_GRIDS=( "130" "242" ) + +TILE_LABELS="NA" +TILE_SETS="full" + +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +LBCS_ICS_ONLY="FALSE" + +NET="RRFS_NA_13km" +TAG="RRFS_dev1_NA_13km" +ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_na_13km_dev1" +NCL_REGION="conus" +MODEL="RRFS_NA_13km" +RUN="RRFS_NA_13km_dev1" + +SOIL_SURGERY_time=2023041904 + +grid_ratio_fv3=1.0 + +CCPP_PHYS_SUITE="FV3_RAP" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +BOUNDARY_LEN_HRS="21" +BOUNDARY_LONG_LEN_HRS="1" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS="0" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20210512" +DATE_LAST_CYCL="20210513" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="5" +CYCLEDAY="12-14" + +# +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 01:00:00" +POSTPROC_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 01:00:00" +POSTPROC_LONG_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 03:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2021 *" +fi +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="12" +#FCST_LEN_HRS_CYCLES=(21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=12; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" + +WTIME_RUN_FCST="02:30:00" +WTIME_MAKE_LBCS="02:30:00" + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +. set_rrfs_config.sh + +STMP="YourOwnSpace/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="YourOwnSpace/${version}" # Path to directory STMP that mostly contains input files. +NWGES="YourOwnSpace/${version}/nwges/${envir}/${NET}" # Path to directory NWGES that save boundary, cold initial, restart files + diff --git a/ush/config.sh.RRFS_NA_3km b/ush/config.sh.RRFS_NA_3km new file mode 100644 index 000000000..728261e4d --- /dev/null +++ b/ush/config.sh.RRFS_NA_3km @@ -0,0 +1,125 @@ +MACHINE="hera" +version="v0.5.3" +ACCOUNT="nrtrr" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="YourOwnSpace/rrfs.${version}" +EXPT_SUBDIR="RRFS_NA_3km" + +PREDEF_GRID_NAME="RRFS_NA_3km" + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="FALSE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="FALSE" +USE_FVCOM="FALSE" +PREP_FVCOM="FALSE" +DO_PARALLEL_PRDGEN="FALSE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="0" +BOUNDARY_LEN_HRS="21" +BOUNDARY_LONG_LEN_HRS="1" +BOUNDARY_PROC_GROUP_NUM="3" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220720" +DATE_LAST_CYCL="20220721" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="7" +CYCLEDAY="20-21" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-11,13-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,12 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..3}; do FCST_LEN_HRS_CYCLES[$i]=12; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +## set up post +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="12" +NFHOUT_HF="1" +# 15 min output upto 18 hours +#NFHMAX_HF="2" +#NFHOUT="1" +#NSOUT_MIN="15" +#OUTPUT_FH="0.0 0.25 0.50 0.75 1.0 1.25 1.50 1.75 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +SOIL_SURGERY_time=2022072004 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=1 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="RRFS_NA_3km" +TAG="n3v47" + +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_b" +NCL_REGION="conus" +MODEL="rrfs_b" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="YourOwnSpace/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="YourOwnSpace/${version}/com" # Path to directory STMP that mostly contains input files. +NWGES="YourOwnSpace/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files + +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/scratch1/BMC/wrfruc/mhu/rrfs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh.RTMA_CONUS_3km b/ush/config.sh.RTMA_CONUS_3km new file mode 100644 index 000000000..51f0b89b3 --- /dev/null +++ b/ush/config.sh.RTMA_CONUS_3km @@ -0,0 +1,310 @@ +#!/bin/bash +source fix_rrfs_locations.sh #determine current platform +MACHINE=${PLATFORM} +version="v0.6.6" +ACCOUNT="nrtrr" +RESERVATION="rrfsens" +EXPT_BASEDIR="/home/role.rtrr/RTMA/rtma.${version}" +EXPT_SUBDIR="RTMA_CONUS" + +if [[ -n $RESERVATION ]] ; then + ACCOUNT=rtwrfruc + SERVICE_ACCOUNT=rtwrfruc + HPSS_ACCOUNT=nrtrr + PARTITION_DEFAULT=kjet + PARTITION_FCST=kjet + PARTITION_GRAPHICS=kjet + PARTITION_ANALYSIS=kjet + PARTITION_PRDGEN=kjet + PARTITION_POST=kjet + QUEUE_DEFAULT="rth" + QUEUE_FCST="rth" + QUEUE_ANALYSIS="rth" + QUEUE_PRDGEN="rth" + QUEUE_GRAPHICS="rth" + QUEUE_HPSS="batch" + QUEUE_POST="rth" + RESERVATION_POST="rrfsens" + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="2" + PPN_RUN_POST="40" + PPN_PROC_RADAR="20" + LAYOUT_X=15 + LAYOUT_Y=40 + NCORES_RUN_ANAL=200 + PPN_RUN_NONVARCLDANL="10" + NNODES_RUN_NONVARCLDANL="12" +fi + +OBSPATH_NSSLMOSIAC=/public/data/radar/nssl/mrms/conus +if [[ $MACHINE == "hera" ]] ; then + ACCOUNT="wrfruc" + PARTITION_DEFAULT="" + PARTITION_FCST="" + QUEUE_ANALYSIS="batch" + QUEUE_GRAPHICS="batch" +fi + +VERBOSE="TRUE" +RUN_ENVIR="nco" +QUILTING="TRUE" +netcdf_diag=.true. +binary_diag=.false. +HYBENSMEM_NMIN=66 +HALO_BLEND=20 +#PRINT_DIFF_PGR="TRUE" +envir="para" +USE_CUSTOM_POST_CONFIG_FILE="TRUE" +TESTBED_FIELDS_FN="testbed_fields_rtma.txt" +TESTBED_FIELDS_FN2="testbed_fields_bgrd3d.txt" +CUSTOM_POST_CONFIG_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/postxconfig-NT-fv3lam_rrfs.txt" +CUSTOM_POST_PARAMS_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/params_grib2_tbl_new" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/role.rtrr/RTMA/graphics" +COMINgfs="" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="FALSE" +DO_SPINUP="FALSE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" ## +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" ## +DO_ENVAR_RADAR_REF="FALSE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" +# +#------------------------------------------------------------------------------------- +# GSI Namelist parameters configurable across differnt applications +# if we need to tune one GSI namelist parameter, we can elevate it to a shell variable +# and assign value in config.sh and give it a default value in config_default.sh +# In realtime testing, don't need to regenerate the whole workflow, you can tweak +# $EXPTDIR/var_defns.sh and $FIX_GSI/gsiparm.anl.sh to make sure the change is +# expected and then put it back into config.sh and config_default.sh +# (need to follow FORTRAN namelist convetion) +#------------------------------------------------------------------------------------- +# +# &SETUP and &BKGERR +l_obsprvdiag=.true. +diag_radardbz=.false. +write_diag_2=.true. +bkgerr_vs=0.125 #1.0 is default setting +bkgerr_hzscl=0.7,1.4,2.80 #HRRR default: .373,0.746,1.5 +usenewgfsberror=.true. + +# &HYBRID_ENSEMBLE +readin_localization=.true. #if true, it overwrites the "beta1_inv/ens_h/ens_v" setting +beta1_inv=0.5 #beata_inv is 1-ensemble_wgt +ens_h=20 #110 +ens_v=1 #3 +regional_ensemble_option=5 #1 for GDAS, 5 for RRFSDAS +grid_ratio_fv3=2.0 #fv3 resolution 3km, so analysis=3*2=6km +grid_ratio_ens=3 #analysis 6km, so ensemble=6*3=18km. GDAS ensemble is 20km +##MEMO1: regional_ensemble_option=5 will be changed to 1 if there are not enough RRFS ensembles at the runtime. +##MEMO2: grid_ratio_ens will be hardwired to 1 for RRFSDAS, so grid_ratio_ens here only affects GDAS. +i_en_perts_io=1 #0 or 1: original file 3: pre-processed ensembles + +# &RAPIDREFRESH_CLDSURF +l_PBL_pseudo_SurfobsT=.false. +l_PBL_pseudo_SurfobsQ=.false +i_use_2mQ4B=0 +i_use_2mT4B=0 +i_T_Q_adjust=1 +l_rtma3d=.true. +i_precip_vertical_check=3 +#------------------------------------------------------------------------------------- +# +BERROR_FN="berror.rtma" #under $FIX_GSI +ANAVINFO_FN="anavinfo.rrfs" +CONVINFO_FN="convinfo.rtma" +OBERROR_FN="errtable.rtma" +HYBENSINFO_FN="hybens_info.rtma" +AIRCRAFT_REJECT="/home/role.amb-verif/acars_RR/amdar_reject_lists" +SFCOBS_USELIST="/lfs4/BMC/amb-verif/rap_ops_mesonet_uselists" + +LBC_SPEC_INTVL_HRS="1" + +DATE_FIRST_CYCL="20230826" +DATE_LAST_CYCL="20231231" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("99") # RTMA always warm-starts +CYCLEMONTH="8-12" +#CYCLEDAY="1-4" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +#INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +#BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" +#PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 12:00:00" +ARCHIVE_CYCLEDEF=$PROD_CYCLEDEF +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="0" +FCST_LEN_HRS_SPINUP="0" +POSTPROC_LEN_HRS="0" +POSTPROC_LONG_LEN_HRS="0" + +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=0.0003; done +DA_CYCLE_INTERV="1" #need to be 1 to have hourly DA +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("19" "20" "21" "22" "23" "00") + +#SST_update_hour=01 +#GVF_update_hour=04 +#SNOWICE_update_hour=00 +#SOIL_SURGERY_time=2022072404 + +DT_ATMOS=1 +NCORES_RUN_ANAL=240 +IO_LAYOUT_Y=1 +regional_ensemble_option=1 + +MAXTRIES_RUN_PREPSTART="3" +MAXTRIES_RUN_FCST="3" +MAXTRIES_ANAL_GSI="3" +MAXTRIES_POSTANAL="3" +MAXTRIES_CLDANL_NONVAR="3" +MAXTRIES_RUN_POST="3" +MAXTRIES_RUN_PRDGEN="3" +#adjust to low priority queue and possible preemption, slurm socket error, etc +MAXTRIES_PROCESS_RADARREF="3" +MAXTRIES_PROCESS_LIGHTNING="3" +MAXTRIES_PROCESS_BUFR="3" + +WTIME_RUN_FCST="00:20:00" +WTIME_RUN_FCST_LONG="03:45:00" +WTIME_MAKE_LBCS="02:00:00" +WTIME_RUN_ANAL="00:50:00" +WTIME_RUN_PREPSTART="00:20:00" + +START_TIME_SPINUP="02:10:00" +START_TIME_PROD="08:20:00" +START_TIME_LATE_ANALYSIS="08:40:00" +START_TIME_CONVENTIONAL_SPINUP="00:40:00" +START_TIME_CONVENTIONAL="00:50:00" +START_TIME_NSSLMOSIAC="00:45:00" +START_TIME_LIGHTNINGNC="00:45:00" +START_TIME_PROCSMOKE="00:45:00" + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +PREDEF_GRID_NAME=RRFS_CONUS_3km +ADDNL_OUTPUT_GRIDS=() +TILE_LABELS="CONUS REGIONS" +TILE_SETS="full NE,NC,NW,SE,SC,SW" +CCPP_PHYS_SUITE="FV3_HRRR_gf" +PPN_RUN_POSTANAL="5" + +NET="RTMA_CONUS" ##must start with "RTMA". ${NET}.t${cyc}z.bgdawpf${fhr}.${tmmark}.grib2 +TAG="RTMA_CONUS" ## used by job names +IS_RTMA="TRUE" +NCORES_PER_NODE=40 #kjet +FG_ROOTDIR="/home/role.rtrr/rrfs_b_nwges" #only needed by RTMA +PYTHON_GRAPHICS_YML_FN="rtma.yml" +POST_FULL_MODEL_NAME="FV3R" +POST_SUB_MODEL_NAME="RTMA" +ARCHIVEDIR="/5year/BMC/wrfruc/rtma_b" +MODEL="RTMA_B" #used by NCL +RUN="RTMA_CONUS" +#RTMA_OBS_FEED="NCO" +#OBSPATH="/lfs4/BMC/wrfruc/gge/rtma/wcoss_obs" + +STMP="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/stmp" +PTMP="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/com" +NWGES="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/nwges" + +# change settings if it is wcoss_dell_p3 +if [[ "$MACHINE" == "wcoss2" ]]; then + ACCOUNT="RTMA-DEV" + QUEUE_DEFAULT="dev" + QUEUE_ANALYSIS="dev" + QUEUE_FCST="dev" + QUEUE_POST="dev" + QUEUE_HPSS="dev_transfer" + QUEUE_PRDGEN="dev" + QUEUE_GRAPHICS="dev" + + RESERVATION="" + RESERVATION_POST="" + EXPT_BASEDIR="/lfs/h2/emc/da/noscrub/${USER}/3drtma/rtma.${version}" + SERVICE_ACCOUNT="" + HPSS_ACCOUNT="RTMA-DEV" + PARTITION_DEFAULT="" + PARTITION_FCST="" + PARTITION_ANALYSIS="" + PARTITION_GRAPHICS="" + PARTITION_POST="" + PARTITION_PRDGEN="" + DO_BUFRSND="FALSE" +# RTMA_OBS_FEED="NCO" # comment out as RTMA will try to use the rtma_ru obs if set to NCO (wcoss2) + binary_diag=.true. + + ARCHIVEDIR="/NCEPDEV/emc-meso/1year/${USER}" + ARCHIVE_CYCLEDEF="00 01 01 01 2100 *" + + OBSPATH_NSSLMOSIAC="/lfs/h1/ops/prod/dcom/ldmdata/obs/upperair/mrms/conus/MergedReflectivityQC" + AIRCRAFT_REJECT="/lfs/h2/emc/da/noscrub/edward.colon/NOAA_3drtma_legacy/fix/obsuselist/amdar_reject_lists" + SFCOBS_USELIST="/lfs/h2/emc/da/noscrub/edward.colon/NOAA_3drtma_legacy/fix/obsuselist/mesonet_uselists" + + regional_ensemble_option=1 + USE_RRFSE_ENS="FALSE" + CYCL_HRS_HYB_FV3LAM_ENS=("99") + + WTIME_RUN_ANAL="00:30:00" + PPN_RUN_ANAL="32" + TPP_RUN_ANAL="4" + NNODES_RUN_ANAL="10" + PPN_RUN_FCST="64" + TPP_RUN_FCST="2" + NNODES_RUN_FCST="16" + PPN_RUN_POST="64" + NNODES_RUN_POST="2" + MEMO_RUN_PRDGEN="80G" + MEMO_RUN_PROCESSBUFR="80G" + PPN_PROC_RADAR="128" + NNODES_PROC_RADAR="1" + + LAYOUT_X=31 + LAYOUT_Y=32 + WTIME_RUN_FCST="00:20:00" + WRTCMP_write_groups="1" + WRTCMP_write_tasks_per_group="40" + + + FG_ROOTDIR="/lfs/h2/emc/ptmp/emc.lam/rrfs/conus/nwges" + OBSPATH="/lfs/h1/ops/prod/com/obsproc/v1.1" + ENKF_FCST="/lfs/h1/ops/prod/com/gfs/v16.3" + LIGHTNING_ROOT="/lfs/h1/ops/prod/com/obsproc/v1.1" + + STMP="/lfs/h2/emc/ptmp/${USER}/3drtma/rtma.${version}/stmp" + PTMP="/lfs/h2/emc/ptmp/${USER}/3drtma/rtma.${version}" + NWGES="/lfs/h2/emc/ptmp/${USER}/3drtma/rtma.${version}/nwges" +fi + diff --git a/ush/config.sh.RTMA_NA_3km b/ush/config.sh.RTMA_NA_3km new file mode 100644 index 000000000..a4dfedc2f --- /dev/null +++ b/ush/config.sh.RTMA_NA_3km @@ -0,0 +1,326 @@ +#!/bin/bash +source fix_rrfs_locations.sh #determine current platform +MACHINE=${PLATFORM} +version="v0.6.5" # odd for NA; even for CONUS +ACCOUNT="nrtrr" +RESERVATION="rrfsdet" +EXPT_BASEDIR="/home/role.rtrr/RTMA/rtma.${version}" +EXPT_SUBDIR="RTMA_NA" + +if [[ -n $RESERVATION ]] ; then + ACCOUNT=rtrr + SERVICE_ACCOUNT=rtrr + HPSS_ACCOUNT=nrtrr + PARTITION_DEFAULT=kjet + PARTITION_FCST=kjet + PARTITION_GRAPHICS=kjet + PARTITION_ANALYSIS=kjet + PARTITION_PRDGEN=kjet + PARTITION_MINT=kjet + PARTITION_MAXT=kjet + PARTITION_POST=kjet + QUEUE_DEFAULT="rt" + QUEUE_FCST="rt" + QUEUE_ANALYSIS="rt" + QUEUE_PRDGEN="rt" + QUEUE_MINT="rt" + QUEUE_MAXT="rt" + QUEUE_GRAPHICS="rt" + QUEUE_HPSS="batch" + QUEUE_POST="rt" + RESERVATION_POST="rrfsdet" + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="1" + PPN_RUN_POST="40" +fi + +OBSPATH_NSSLMOSIAC=/public/data/radar/nssl/mrms/conus +if [[ $MACHINE == "hera" ]] ; then + ACCOUNT="wrfruc" + PARTITION_DEFAULT="" + PARTITION_FCST="" + QUEUE_ANALYSIS="batch" + QUEUE_GRAPHICS="batch" +fi + +VERBOSE="TRUE" +RUN_ENVIR="nco" +QUILTING="TRUE" +netcdf_diag=.true. +binary_diag=.false. +HYBENSMEM_NMIN=66 +HALO_BLEND=20 +#PRINT_DIFF_PGR="TRUE" +envir="para" +USE_CUSTOM_POST_CONFIG_FILE="TRUE" +TESTBED_FIELDS_FN="testbed_fields_rtma.txt" +TESTBED_FIELDS_FN2="testbed_fields_bgrd3d.txt" +SPC_FIELDS_FN="spc_fields_rtma.txt" +CUSTOM_POST_CONFIG_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/postxconfig-NT-fv3lam_rrfs.txt" +CUSTOM_POST_PARAMS_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/params_grib2_tbl_new" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/role.rtrr/RTMA/graphics" +COMINgfs="" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="FALSE" +DO_SPINUP="FALSE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" ## +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" ## +DO_ENVAR_RADAR_REF="FALSE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" +DO_MINMAXT="TRUE" +# +#------------------------------------------------------------------------------------- +# GSI Namelist parameters configurable across differnt applications +# if we need to tune one GSI namelist parameter, we can elevate it to a shell variable +# and assign value in config.sh and give it a default value in config_default.sh +# In realtime testing, don't need to regenerate the whole workflow, you can tweak +# $EXPTDIR/var_defns.sh and $FIX_GSI/gsiparm.anl.sh to make sure the change is +# expected and then put it back into config.sh and config_default.sh +# (need to follow FORTRAN namelist convetion) +#------------------------------------------------------------------------------------- +# +# &SETUP and &BKGERR +l_obsprvdiag=.true. +diag_radardbz=.false. +write_diag_2=.true. +bkgerr_vs=0.125 #1.0 is default setting +bkgerr_hzscl=0.7,1.4,2.80 #HRRR default: .373,0.746,1.5 +usenewgfsberror=.true. + +# &HYBRID_ENSEMBLE +readin_localization=.true. #if true, it overwrites the "beta1_inv/ens_h/ens_v" setting +beta1_inv=0.5 #beata_inv is 1-ensemble_wgt +ens_h=20 #110 +ens_v=1 #3 +regional_ensemble_option=1 #1 for GDAS, 5 for RRFSDAS +grid_ratio_fv3=2.0 #fv3 resolution 3km, so analysis=3*2=6km +grid_ratio_ens=3 #analysis 6km, so ensemble=6*3=18km. GDAS ensemble is 20km +##MEMO1: regional_ensemble_option=5 will be changed to 1 if there are not enough RRFS ensembles at the runtime. +##MEMO2: grid_ratio_ens will be hardwired to 1 for RRFSDAS, so grid_ratio_ens here only affects GDAS. +i_en_perts_io=1 #0 or 1: original file 3: pre-processed ensembles + +# &RAPIDREFRESH_CLDSURF +l_PBL_pseudo_SurfobsT=.false. +l_PBL_pseudo_SurfobsQ=.false +i_use_2mQ4B=0 +i_use_2mT4B=0 +i_T_Q_adjust=1 +l_rtma3d=.true. +i_precip_vertical_check=3 +#------------------------------------------------------------------------------------- +# +BERROR_FN="berror.rtma" #under $FIX_GSI +ANAVINFO_FN="anavinfo.rrfs" +CONVINFO_FN="convinfo.rtma" +OBERROR_FN="errtable.rtma" +HYBENSINFO_FN="hybens_info.rtma" +AIRCRAFT_REJECT="/home/role.amb-verif/acars_RR/amdar_reject_lists" +SFCOBS_USELIST="/lfs4/BMC/amb-verif/rap_ops_mesonet_uselists" + +LBC_SPEC_INTVL_HRS="1" + +DATE_FIRST_CYCL="20230416" +DATE_LAST_CYCL="20250831" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("99") # RTMA always warm-starts +CYCLEMONTH="8-12" +#CYCLEDAY="1-4" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +#INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +#BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" +#PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 12:00:00" +ARCHIVE_CYCLEDEF="$PROD_CYCLEDEF" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="0" +FCST_LEN_HRS_SPINUP="0" +POSTPROC_LEN_HRS="0" +POSTPROC_LONG_LEN_HRS="0" + +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=0.0003; done +DA_CYCLE_INTERV="1" #need to be 1 to have hourly DA +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("19" "20" "21" "22" "23" "00") + +#SST_update_hour=01 +#GVF_update_hour=04 +#SNOWICE_update_hour=00 +#SOIL_SURGERY_time=2022072404 + +DT_ATMOS=1 +NCORES_RUN_ANAL=240 +IO_LAYOUT_Y=1 +PPN_RUN_NONVARCLDANL=${IO_LAYOUT_Y} + +MAXTRIES_RUN_PREPSTART="3" +MAXTRIES_RUN_FCST="3" +MAXTRIES_ANAL_GSI="3" +MAXTRIES_POSTANAL="3" +MAXTRIES_CLDANL_NONVAR="3" +MAXTRIES_RUN_POST="3" +MAXTRIES_RUN_PRDGEN="3" +MAXTRIES_RUN_MINT="3" +MAXTRIES_RUN_MAXT="3" +#adjust to low priority queue and possible preemption, slurm socket error, etc +MAXTRIES_PROCESS_RADARREF="3" +MAXTRIES_PROCESS_LIGHTNING="3" +MAXTRIES_PROCESS_BUFR="3" + +WTIME_RUN_FCST="00:20:00" +WTIME_RUN_FCST_LONG="03:45:00" +WTIME_MAKE_LBCS="02:00:00" +WTIME_RUN_ANAL="00:50:00" +WTIME_RUN_PREPSTART="00:20:00" + +START_TIME_SPINUP="02:10:00" +START_TIME_PROD="08:20:00" +START_TIME_LATE_ANALYSIS="08:40:00" +START_TIME_CONVENTIONAL_SPINUP="00:40:00" +START_TIME_CONVENTIONAL="00:40:00" +START_TIME_NSSLMOSIAC="00:45:00" +START_TIME_LIGHTNINGNC="00:45:00" +START_TIME_PROCSMOKE="00:45:00" + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +PREDEF_GRID_NAME=RRFS_NA_3km +ADDNL_OUTPUT_GRIDS=("hrrr" "rrfsak" ) +TILE_LABELS="NA" +TILE_SETS="full" +CCPP_PHYS_SUITE="FV3_HRRR_gf" + +NET="RTMA_NA" ##must start with "RTMA". ${NET}.t${cyc}z.bgdawpf${fhr}.${tmmark}.grib2 +TAG="RTMA_NA" ## used by job names +IS_RTMA="TRUE" +NCORES_PER_NODE=40 #kjet +FG_ROOTDIR="/home/role.rtrr/rrfs_b_nwges" #only needed by RTMA +PYTHON_GRAPHICS_YML_FN="rtma.yml" +POST_FULL_MODEL_NAME="FV3R" +POST_SUB_MODEL_NAME="RTMA" +ARCHIVEDIR="/5year/BMC/wrfruc/rtma_b" +MODEL="RTMA_B" #used by NCL +RUN="RTMA_NA" +#RTMA_OBS_FEED="NCO" +#OBSPATH="/lfs4/BMC/wrfruc/gge/rtma/wcoss_obs" + +STMP="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/stmp" +PTMP="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/com" +NWGES="/lfs4/BMC/nrtrr/NCO_dirs/rtma.${version}/nwges" + +# change settings if it is wcoss_dell_p3 +if [[ "$MACHINE" == "wcoss2" ]]; then + ACCOUNT="RTMA-DEV" + QUEUE_DEFAULT="dev" + QUEUE_ANALYSIS="dev" + QUEUE_FCST="dev" + QUEUE_POST="dev" + QUEUE_HPSS="dev_transfer" + QUEUE_PRDGEN="dev" + QUEUE_MINT="dev" + QUEUE_MAXT="dev" + QUEUE_GRAPHICS="dev" + + RESERVATION="" + RESERVATION_POST="" + EXPT_BASEDIR="/lfs/h2/emc/da/noscrub/${USER}/testdir/rtma.${version}" + SERVICE_ACCOUNT="" + HPSS_ACCOUNT="RTMA-DEV" + PARTITION_DEFAULT="" + PARTITION_FCST="" + PARTITION_ANALYSIS="" + PARTITION_GRAPHICS="" + PARTITION_POST="" + PARTITION_PRDGEN="" + PARTITION_MINT="" + PARTITION_MAXT="" + DO_BUFRSND="FALSE" +# RTMA_OBS_FEED="NCO" # comment out as RTMA will try to use the rtma_ru obs if set to NCO (wcoss2) + binary_diag=.true. + + ARCHIVEDIR="/NCEPDEV/emc-meso/1year/${USER}" + ARCHIVE_CYCLEDEF="00 01 01 01 2100 *" + + OBSPATH_NSSLMOSIAC="/lfs/h1/ops/prod/dcom/ldmdata/obs/upperair/mrms/conus/MergedReflectivityQC" + AIRCRAFT_REJECT="/lfs/h2/emc/da/noscrub/matthew.t.morris/FixData/obsuselist/amdar_reject_lists" + SFCOBS_USELIST="/lfs/h2/emc/da/noscrub/matthew.t.morris/FixData/obsuselist/mesonet_uselists" + MINMAX_BINS="/lfs/h2/emc/da/noscrub/edward.colon/FixData/minmaxt" + regional_ensemble_option=1 + USE_RRFSE_ENS="FALSE" + CYCL_HRS_HYB_FV3LAM_ENS=("99") + + WTIME_RUN_ANAL="00:30:00" + PPN_RUN_ANAL="8" + TPP_RUN_ANAL="16" + NNODES_RUN_ANAL="60" + PPN_RUN_POSTANAL="8" + NNODES_RUN_NONVARCLDANL="10" + PPN_RUN_NONVARCLDANL="32" + PPN_RUN_FCST="64" + TPP_RUN_FCST="2" + NNODES_RUN_FCST="51" + PPN_RUN_POST="32" + TPP_RUN_POST="4" + NNODES_RUN_POST="4" + PPN_RUN_PRDGEN="128" + PPN_RUN_MINT="128" + PPN_RUN_MAXT="128" + MEMO_PREP_CYC="40G" + MEMO_RUN_NONVARCLDANL="256G" + MEMO_RUN_PRDGEN="256G" + MEMO_RUN_MINT="256G" + MEMO_RUN_MAXT="256G" + MEMO_RUN_PROCESSBUFR="20G" + PPN_PROC_RADAR="64" + NNODES_PROC_RADAR="1" + + LAYOUT_X=50 + LAYOUT_Y=64 + WTIME_RUN_ANAL="00:50:00" + WTIME_RUN_FCST="00:30:00" + WRTCMP_write_groups="1" + WRTCMP_write_tasks_per_group="64" + + FG_ROOTDIR="/lfs/h2/emc/ptmp/emc.lam/rrfs/na/nwges" + OBSPATH="/lfs/h1/ops/prod/com/obsproc/v1.1" + ENKF_FCST="/lfs/h1/ops/prod/com/gfs/v16.3" + LIGHTNING_ROOT="/lfs/h1/ops/prod/com/obsproc/v1.1" + + STMP="/lfs/h2/emc/ptmp/${USER}/3D-RTMA/rtma.${version}/stmp" + PTMP="/lfs/h2/emc/ptmp/${USER}/3D-RTMA/rtma.${version}" + NWGES="/lfs/h2/emc/ptmp/${USER}/3D-RTMA/rtma.${version}/nwges" +fi + diff --git a/ush/config.sh.rrfs_a_c13 b/ush/config.sh.rrfs_a_c13 new file mode 100644 index 000000000..bdf98cd2e --- /dev/null +++ b/ush/config.sh.rrfs_a_c13 @@ -0,0 +1,111 @@ +MACHINE="wcoss2" +version="v0.3.2" +ACCOUNT="nrtrr" +#RESERVATION="rrfsdet" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfsx/${version}" +EXPT_SUBDIR="rrfs_conus_13km" + +PREDEF_GRID_NAME=RRFS_CONUS_13km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="72" +BOUNDARY_PROC_GROUP_NUM="30" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20221218" +DATE_LAST_CYCL="20221230" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="12" +CYCLEDAY="18-30" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +PRODLONG_CYCLEDEF="00 00,06,12,18 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}0700 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} 2022 *" +fi + +FCST_LEN_HRS="18" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="18" +POSTPROC_LONG_LEN_HRS="60" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=18; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=60; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1 2 3" +RESTART_INTERVAL_LONG="1 2 3 4 5 6" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +netcdf_diag=.true. +binary_diag=.false. +SOIL_SURGERY_time=2022020704 + +regional_ensemble_option=5 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="rrfs_a" +TAG="rrfs_a_c13v32" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_dev1" +NCL_REGION="conus" +MODEL="rrfs_ac13" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/nwges/${envir}/${NET}" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi + diff --git a/ush/config.sh.rrfs_a_c3 b/ush/config.sh.rrfs_a_c3 new file mode 100644 index 000000000..b5524ce6a --- /dev/null +++ b/ush/config.sh.rrfs_a_c3 @@ -0,0 +1,124 @@ +MACHINE="wcoss2" +version="v0.5.2" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/$version/" +EXPT_SUBDIR="rrfs_conus" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="TRUE" +USE_FVCOM="TRUE" +PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="FALSE" +DO_GSIDIAG_OFFLINE="TRUE" +USE_CLM="FALSE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="72" +BOUNDARY_PROC_GROUP_NUM="72" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20230501" +DATE_LAST_CYCL="20230531" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="05" +CYCLEDAY="*" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,06,12,18 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="18" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=18; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=60; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1 2" +RESTART_INTERVAL_LONG="1 2" +## set up post +POSTPROC_LEN_HRS="18" +POSTPROC_LONG_LEN_HRS="60" +NFHOUT_HF="1" +# 15 min output upto 18 hours +#NFHMAX_HF="18" +#NFHOUT="1" +#NSOUT="15" +#NSOUT_MIN="15" + +USE_RRFSE_ENS="TRUE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=5 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="rrfs_a" +TAG="c3v52" + +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam/${TAG}" +NCL_REGION="conus" +MODEL="rrfs_a" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh.rrfs_a_c3_retro b/ush/config.sh.rrfs_a_c3_retro new file mode 100644 index 000000000..a76b24016 --- /dev/null +++ b/ush/config.sh.rrfs_a_c3_retro @@ -0,0 +1,127 @@ +MACHINE="wcoss2" +MACHINETYPE="backup" +version="v0.6.4" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}" +EXPT_SUBDIR="rrfs_conus" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="TRUE" +USE_FVCOM="TRUE" +PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="FALSE" +DO_GSIDIAG_OFFLINE="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="72" +BOUNDARY_PROC_GROUP_NUM="72" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220720" +DATE_LAST_CYCL="20220721" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="07" +CYCLEDAY="20-21" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,06,12,18 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="18" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=18; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=60; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +## set up post +POSTPROC_LEN_HRS="18" +POSTPROC_LONG_LEN_HRS="60" +NFHOUT_HF="1" +# 15 min output upto 18 hours +#NFHMAX_HF="18" +#NFHOUT="1" +#NSOUT="15" +#NSOUT_MIN="15" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=01 +SOIL_SURGERY_time=2022072004 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=1 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +envir="para" + +NET="rrfs_a" +TAG="c3v64" + +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam/${TAG}" +NCL_REGION="conus" +MODEL="rrfs_a" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh.rrfs_b_c3 b/ush/config.sh.rrfs_b_c3 new file mode 100644 index 000000000..1653ae53b --- /dev/null +++ b/ush/config.sh.rrfs_b_c3 @@ -0,0 +1,123 @@ +MACHINE="jet" +version="v0.5.2" +ACCOUNT="nrtrr" +RESERVATION="rrfsdet" +EXPT_BASEDIR="/home/role.rtrr/RRFS/rrfs.${version}" +EXPT_SUBDIR="RRFS_CONUS_3km" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="FALSE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="FALSE" +USE_FVCOM="FALSE" +PREP_FVCOM="FALSE" +DO_PARALLEL_PRDGEN="FALSE" +DO_GSIDIAG_OFFLINE="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="24" +BOUNDARY_PROC_GROUP_NUM="12" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20230601" +DATE_LAST_CYCL="20230730" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="06,07" +CYCLEDAY="*" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-11,13-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,12 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="3" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=3; done +for i in {0..23..12}; do FCST_LEN_HRS_CYCLES[$i]=24; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +## set up post +POSTPROC_LEN_HRS="3" +POSTPROC_LONG_LEN_HRS="24" +NFHOUT_HF="1" +# 15 min output upto 18 hours +NFHMAX_HF="12" +NFHOUT="1" +NSOUT_MIN="15" +OUTPUT_FH="0.0 0.25 0.50 0.75 1.0 1.25 1.50 1.75 2.0 2.25 2.50 2.75 3.0 3.25 3.50 3.75 4.0 4.25 4.50 4.75 5.0 5.25 5.50 5.75 6.0 6.25 6.50 5.75 7.0 7.25 7.50 7.75 8.0 8.25 8.50 8.75 9.0 9.25 9.50 9.75 10.0 10.25 10.50 10.75 11.0 11.25 11.50 11.75 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0 20.0 21.0 22.0 23.0 24.0" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=1 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="RRFS_CONUS" +TAG="c3v52" + +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_b" +NCL_REGION="conus" +MODEL="rrfs_b" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs4/BMC/nrtrr/NCO_dirs/${version}/stmp" # Path to directory STMP that mostly contains input files. +PTMP="/lfs4/BMC/nrtrr/NCO_dirs/${version}/com" # Path to directory STMP that mostly contains input files. +NWGES="/lfs4/BMC/nrtrr/NCO_dirs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs4/BMC/wrfruc/RRFSE/NCO_dirs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh_rrfs_a_enkf_c13 b/ush/config.sh_rrfs_a_enkf_c13 new file mode 100644 index 000000000..577641058 --- /dev/null +++ b/ush/config.sh_rrfs_a_enkf_c13 @@ -0,0 +1,173 @@ +MACHINE="wcoss2" +version="v0.3.2" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsens" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfsx/${version}/" +EXPT_SUBDIR="rrfs_conus_enfcst_13km" + +PREDEF_GRID_NAME=RRFS_CONUS_13km + +. set_rrfs_config_general.sh + +DO_ENSEMBLE="TRUE" +DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +#DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="4" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20221219" +DATE_LAST_CYCL="20221230" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("18") +CYCL_HRS_PRODSTART=("19") +#CYCL_HRS_STOCH=("00" "12") +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="12" +CYCLEDAY="19-30" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 19-30 12 2022 *" +PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + BOUNDARY_LEN_HRS="36" + DO_SPINUP="FALSE" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" + PRODLONG_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 24:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 12:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=6; done +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + for i in {0..23..12}; do FCST_LEN_HRS_CYCLES[$i]=36; done + POSTPROC_LEN_HRS="36" + BOUNDARY_PROC_GROUP_NUM="8" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1 2 3 4 5 6" +netcdf_diag=.true. +binary_diag=.false. +NFHOUT="3" +NFHMAX_HF="24" + +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="01:45:00" +NNODES_RUN_ANAL="1" + +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +if [[ $MACHINE == "wcoss2" ]] ; then + EXTRN_MDL_NAME_LBCS="FV3GFS" +fi +EXTRN_MDL_SOURCE_BASEDIR_ICS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" +EXTRN_MDL_SOURCE_BASEDIR_LBCS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +envir="para" +NCL_REGION="conus" +MODEL="rrfs_b" +NET="rrfs_a" +TAG="c13enkf32" +ARCHIVEDIR="/1year/BMC/wrfruc/rrfs_dev1" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="FALSE" + DO_ENSINIT="TRUE" + NUM_ENS_MEMBERS_FCST=9 + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} +# DO_SPPT=TRUE + DO_SPP=TRUE +# SPPT_MAG=0.5 + WTIME_RUN_FCST="01:45:00" + WTIME_MAKE_LBCS="01:30:00" + fi + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + NNODES_RUN_RECENTER="1" + PPN_RUN_RECENTER="128" + CLEAN_OLDFCST_HRS="48" + CLEAN_OLDSTMPPOST_HRS="48" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. +fi + +RUN="rrfs_a_c13_ensda" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="rrfs_a_c13_ensfcst" +fi +COMINgfs="" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/stmp" # Path to directory STMP that mostly contains input files. +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + STMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/enfcst" # Path to directory STMP that mostly contains input files. +fi +PTMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +ENSCTRL_STMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/stmp" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="/lfs/h2/emc/stmp/emc.lam/rrfsx/${version}/nwges" # Path to directory STMP that mostly contains control input files for ensemble recentering. diff --git a/ush/config.sh_rrfs_a_enkf_c3 b/ush/config.sh_rrfs_a_enkf_c3 new file mode 100644 index 000000000..5af8bcb27 --- /dev/null +++ b/ush/config.sh_rrfs_a_enkf_c3 @@ -0,0 +1,202 @@ +MACHINE="wcoss2" +version="v0.5.2" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsens" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}/" +EXPT_SUBDIR="rrfs_conus_enkf" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh + +DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +#DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +#DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +#DO_BUFRSND="TRUE" +#USE_FVCOM="TRUE" +#PREP_FVCOM="TRUE" + +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + EXPT_SUBDIR="rrfs_conus_enfcst" + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="4" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20230401" +DATE_LAST_CYCL="20230531" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("06" "18") +CYCL_HRS_PRODSTART=("07" "19") +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + CYCL_HRS_STOCH=("00" "06" "12" "18") +fi +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="04,05" +CYCLEDAY="*" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + BOUNDARY_LEN_HRS="60" + LBC_SPEC_INTVL_HRS="1" + DO_SPINUP="FALSE" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" + PRODLONG_CYCLEDEF="00 01 01 01 2100 *" + RECENTER_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}1800 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=1; done +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + for i in {0..23..06}; do FCST_LEN_HRS_CYCLES[$i]=60; done + FCST_LEN_HRS="60" + POSTPROC_LEN_HRS="60" + BOUNDARY_PROC_GROUP_NUM="10" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +netcdf_diag=.true. +binary_diag=.false. + +## set up post +#NFHOUT_HF="1" +#NFHMAX_HF="18" +#NFHOUT="3" + +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="03:45:00" +NNODES_RUN_ANAL="1" + +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +EXTRN_MDL_SOURCE_BASEDIR_ICS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" +EXTRN_MDL_SOURCE_BASEDIR_LBCS="/mnt/lfs4/BMC/wrfruc/RRFSE/data/gens" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +envir="para" +NET="rrfs_a" +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam" +NCL_REGION="conus" +MODEL="rrfs_b" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="FALSE" + DO_ENSINIT="TRUE" + + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + CLEAN_OLDFCST_HRS="12" + CLEAN_OLDSTMPPOST_HRS="12" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. + + START_TIME_SPINUP="00:30:00" + LAYOUT_X="11" + LAYOUT_Y="32" + NNODES_RUN_FCST="6" + + NUM_ENS_MEMBERS_FCST=9 + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} + WTIME_RUN_FCST="04:45:00" + WTIME_MAKE_LBCS="01:30:00" + + LAYOUT_X="31" + LAYOUT_Y="32" + NNODES_RUN_FCST="16" + + DO_SPP="TRUE" + DO_SPPT="TRUE" + DO_SKEB="FALSE" + SPPT_MAG="0.7" + DO_LSM_SPP="TRUE" + DO_RECENTER="TRUE" + + fi + PPN_RUN_RECENTER="$(( ${NUM_ENS_MEMBERS} + 1 ))" + NNODES_RUN_RECENTER="3" +fi + +RUN_ensctrl="rrfs" +RUN="enkfrrfs" +TAG="c3enkf52" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="refs" + TAG="c3enfcst52" +fi + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}/enfcst" # Path to directory STMP that mostly contains input files. +fi +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +ENSCTRL_STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory STMP that mostly contains control input files for ensemble recentering. + diff --git a/ush/config.sh_rrfs_a_enkf_c3_retro b/ush/config.sh_rrfs_a_enkf_c3_retro new file mode 100644 index 000000000..4335f18eb --- /dev/null +++ b/ush/config.sh_rrfs_a_enkf_c3_retro @@ -0,0 +1,205 @@ +MACHINE="wcoss2" +MACHINETYPE="backup" +version="v0.6.4" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsens" +#RESERVATION_POST="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}/" +EXPT_SUBDIR="rrfs_conus_enkf" + +PREDEF_GRID_NAME=RRFS_CONUS_3km + +. set_rrfs_config_general.sh + +DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +#DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +#DO_BUFRSND="TRUE" +#USE_FVCOM="TRUE" +#PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="FALSE" +DO_GSIDIAG_OFFLINE="FALSE" + +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + EXPT_SUBDIR="rrfs_conus_enfcst" + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="12" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220720" +DATE_LAST_CYCL="20220721" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("06" "18") +CYCL_HRS_PRODSTART=("07" "19") +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + CYCL_HRS_STOCH=("00" "06" "12" "18") +fi +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="07" +CYCLEDAY="20-21" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 01:00:00" +PRODLONG_CYCLEDEF="00 01 01 01 2100 *" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1500 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + BOUNDARY_LEN_HRS="60" + LBC_SPEC_INTVL_HRS="3" + DO_SPINUP="FALSE" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" + RECENTER_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}1200 ${DATE_LAST_CYCL}2300 06:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=1; done +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + for i in {0..23..06}; do FCST_LEN_HRS_CYCLES[$i]=60; done + FCST_LEN_HRS="60" + POSTPROC_LEN_HRS="60" + BOUNDARY_PROC_GROUP_NUM="10" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +netcdf_diag=.true. +binary_diag=.false. + +## set up post +#NFHOUT_HF="1" +#NFHMAX_HF="18" +#NFHOUT="3" + +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="03:45:00" +NNODES_RUN_ANAL="1" + +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" +EXTRN_MDL_SAVETYPE="GSL" + +envir="para" +NET="rrfs_a" +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam" +NCL_REGION="conus" +MODEL="RRFS_A" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="FALSE" + DO_ENSINIT="TRUE" + + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + CLEAN_OLDFCST_HRS="12" + CLEAN_OLDSTMPPOST_HRS="12" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. + + START_TIME_SPINUP="00:30:00" + LAYOUT_X="11" + LAYOUT_Y="32" + NNODES_RUN_FCST="6" + + NUM_ENS_MEMBERS_FCST=9 + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} + WTIME_RUN_FCST="04:45:00" + WTIME_MAKE_LBCS="01:30:00" + + LAYOUT_X="31" + LAYOUT_Y="32" + NNODES_RUN_FCST="16" + + DO_SPP="TRUE" + DO_SPPT="FALSE" + DO_SKEB="FALSE" + SPPT_MAG="0.5" + DO_LSM_SPP="TRUE" + DO_RECENTER="TRUE" + + fi +# PPN_RUN_RECENTER="$(( ${NUM_ENS_MEMBERS} + 1 ))" +# NNODES_RUN_RECENTER="3" + PPN_RUN_RECENTER="128" + NNODES_RUN_RECENTER="10" +fi + +RUN_ensctrl="rrfs" +RUN="enkfrrfs" +TAG="c3enkf64" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="refs" + TAG="c3enfcst64" +fi +COMINgfs="" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}/enfcst" # Path to directory STMP that mostly contains input files. + NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +fi +ENSCTRL_STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory STMP that mostly contains control input files for ensemble recentering. diff --git a/ush/config.sh_rrfs_a_enkf_n3 b/ush/config.sh_rrfs_a_enkf_n3 new file mode 100644 index 000000000..acadb0c91 --- /dev/null +++ b/ush/config.sh_rrfs_a_enkf_n3 @@ -0,0 +1,212 @@ +MACHINE="wcoss2" +MACHINETYPE="primary" +version="v0.6.7" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}" +EXPT_SUBDIR="rrfs_na_enkf" + +PREDEF_GRID_NAME="RRFS_NA_3km" + +. set_rrfs_config_general.sh + +DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +#DO_DACYCLE="TRUE" +#DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_DA_OUTPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="FALSE" +#DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +#DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="FALSE" +#DO_REFL2TTEN="FALSE" +#RADARREFL_TIMELEVEL=(0) +#FH_DFI_RADAR="0.0,0.25,0.5" +#DO_SOIL_ADJUST="TRUE" +#DO_RADDA="FALSE" +#DO_BUFRSND="TRUE" +#USE_FVCOM="TRUE" +#PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="TRUE" +DO_GSIDIAG_OFFLINE="FALSE" + +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + EXPT_SUBDIR="rrfs_na_enfcst" + DO_SPINUP="FALSE" + DO_SAVE_DA_OUTPUT="FALSE" + DO_NONVAR_CLDANAL="FALSE" + DO_POST_PROD="TRUE" +fi + +EXTRN_MDL_ICS_OFFSET_HRS="30" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="12" +BOUNDARY_PROC_GROUP_NUM="12" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20230901" +DATE_LAST_CYCL="20231031" +CYCL_HRS=( "00" "12" ) +CYCL_HRS=( "18" ) +CYCL_HRS_SPINSTART=("06" "18") +CYCL_HRS_PRODSTART=("07" "19") +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + CYCL_HRS_STOCH=("00" "06" "12" "18") +fi +#CYCL_HRS_RECENTER=("19") +CYCLEMONTH="09,10" +CYCLEDAY="*" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" # "rename" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +#RECENTER_CYCLEDEF="00 19 * 10 2022 *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + BOUNDARY_LEN_HRS="60" + LBC_SPEC_INTVL_HRS="3" + DO_SPINUP="FALSE" + INITIAL_CYCLEDEF="00 01 01 01 2100 *" + BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" + PROD_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" + PRODLONG_CYCLEDEF="00 01 01 01 2100 *" + RECENTER_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +fi +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="${DATE_FIRST_CYCL}0600 ${DATE_LAST_CYCL}2300 12:00:00" +fi +if [[ $DO_SAVE_DA_OUTPUT == "TRUE" ]] ; then + SAVEDA_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +fi + +FCST_LEN_HRS="1" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=1; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=1; done +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + for i in {0..23..06}; do FCST_LEN_HRS_CYCLES[$i]=60; done + FCST_LEN_HRS="60" + POSTPROC_LEN_HRS="60" + BOUNDARY_PROC_GROUP_NUM="10" +fi +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" +netcdf_diag=.true. +binary_diag=.false. + +## set up post +#NFHOUT_HF="1" +#NFHMAX_HF="18" +#NFHOUT="3" + +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="04:45:00" +PPN_RUN_ANAL="16" +NNODES_RUN_ANAL="1" +TPP_RUN_ANAL="8" + +EXTRN_MDL_NAME_ICS="GEFS" +EXTRN_MDL_NAME_LBCS="GEFS" +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +envir="para" +NET="rrfs_a" +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam" +NCL_REGION="na" +MODEL="RRFS_A" + +if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + NUM_ENS_MEMBERS=30 +# DO_ENSCONTROL="TRUE" + DO_GSIOBSERVER="TRUE" + DO_ENKFUPDATE="TRUE" +# DO_RECENTER="TRUE" + DO_ENS_GRAPHICS="TRUE" + DO_ENKF_RADAR_REF="TRUE" + DO_ENSPOST="FALSE" + DO_ENSINIT="TRUE" + + RADAR_REF_THINNING="2" + ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_ens" + CLEAN_OLDFCST_HRS="12" + CLEAN_OLDSTMPPOST_HRS="12" + cld_bld_hgt=0.0 + l_precip_clear_only=.true. + write_diag_2=.true. + + START_TIME_SPINUP="00:30:00" + LAYOUT_X="15" + LAYOUT_Y="55" + NNODES_RUN_FCST="13" + WRTCMP_write_tasks_per_group="7" + + NUM_ENS_MEMBERS_FCST=5 + if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + NUM_ENS_MEMBERS=${NUM_ENS_MEMBERS_FCST} + WTIME_RUN_FCST="04:45:00" + WTIME_MAKE_LBCS="01:30:00" + + LAYOUT_X="50" + LAYOUT_Y="64" + NNODES_RUN_FCST="51" + WRTCMP_write_tasks_per_group="64" + + DO_SPP="TRUE" + DO_SPPT="FALSE" + DO_SKEB="FALSE" + SPPT_MAG="0.5" + DO_LSM_SPP="TRUE" + DO_RECENTER="TRUE" + + fi +# PPN_RUN_RECENTER="$(( ${NUM_ENS_MEMBERS} + 1 ))" +# NNODES_RUN_RECENTER="3" + PPN_RUN_RECENTER="128" + NNODES_RUN_RECENTER="10" +fi + +RUN_ensctrl="rrfs" +RUN="enkfrrfs" +TAG="n3enkf67" +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + RUN="refs" + TAG="n3enfcst67" +fi +COMINgfs="" + +. set_rrfs_config.sh + +EXTRN_MDL_SOURCE_BASEDIR_ICS=/lfs/h1/ops/prod/com/gefs/v12.3 +EXTRN_MDL_SOURCE_BASEDIR_LBCS=/lfs/h1/ops/prod/com/gefs/v12.3 + +STMP="/lfs/f2/t2o/ptmp/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/f2/t2o/ptmp/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${DO_ENSFCST} == "TRUE" ]] ; then + STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}/enfcst" # Path to directory STMP that mostly contains input files. + PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. + NWGES="/lfs/f2/t2o/ptmp/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +fi +ENSCTRL_STMP="/lfs/f2/t2o/ptmp/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains control input files for ensemble recentering. +ENSCTRL_NWGES="/lfs/f2/t2o/ptmp/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory STMP that mostly contains control input files for ensemble recentering. diff --git a/ush/config.sh_rrfs_a_n3 b/ush/config.sh_rrfs_a_n3 new file mode 100644 index 000000000..5f6b44904 --- /dev/null +++ b/ush/config.sh_rrfs_a_n3 @@ -0,0 +1,124 @@ +MACHINE="wcoss2" +MACHINETYPE="primary" +version="v0.6.7" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}" +EXPT_SUBDIR="rrfs_na" + +PREDEF_GRID_NAME="RRFS_NA_3km" + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="FALSE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="TRUE" +USE_FVCOM="TRUE" +PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="TRUE" +DO_GSIDIAG_OFFLINE="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="72" +BOUNDARY_PROC_GROUP_NUM="72" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20230901" +DATE_LAST_CYCL="20231031" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="09,10" +CYCLEDAY="*" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,06,12,18 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="12" +FCST_LEN_HRS_SPINUP="1" +#FCST_LEN_HRS_CYCLES=(48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18 48 18 18 18 18 18) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=12; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=60; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1 2" +RESTART_INTERVAL_LONG="1 2" +## set up post +POSTPROC_LEN_HRS="12" +POSTPROC_LONG_LEN_HRS="60" +NFHOUT_HF="1" +# 15 min output upto 18 hours +#NFHMAX_HF="18" +#NFHOUT="1" +#NSOUT="15" +#NSOUT_MIN="15" + +USE_RRFSE_ENS="TRUE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=01 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=5 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" + +envir="para" + +NET="rrfs_a" +TAG="n3v67" + +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam/${TAG}" +NCL_REGION="conus" +MODEL="rrfs_a" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs/f2/t2o/ptmp/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/f2/t2o/ptmp/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs/f2/t2o/ptmp/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "07" "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config.sh_rrfs_a_n3r b/ush/config.sh_rrfs_a_n3r new file mode 100644 index 000000000..74be0925d --- /dev/null +++ b/ush/config.sh_rrfs_a_n3r @@ -0,0 +1,118 @@ +MACHINE="wcoss2" +version="v0.4.1" +ACCOUNT="RRFS_DEV" +#RESERVATION="rrfsdet" +EXPT_BASEDIR="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs/${version}" +EXPT_SUBDIR="rrfs_na" + +PREDEF_GRID_NAME="RRFS_NA_3km" + +. set_rrfs_config_general.sh +. set_rrfs_config_SDL_VDL_MixEn.sh + +#DO_ENSEMBLE="TRUE" +#DO_ENSFCST="TRUE" +DO_DACYCLE="TRUE" +DO_SURFACE_CYCLE="TRUE" +DO_SPINUP="TRUE" +DO_SAVE_INPUT="TRUE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_RETRO="TRUE" +DO_NONVAR_CLDANAL="TRUE" +DO_ENVAR_RADAR_REF="TRUE" +DO_SMOKE_DUST="TRUE" +DO_REFL2TTEN="FALSE" +RADARREFL_TIMELEVEL=(0) +FH_DFI_RADAR="0.0,0.25,0.5" +DO_SOIL_ADJUST="TRUE" +DO_RADDA="TRUE" +DO_BUFRSND="TRUE" +USE_FVCOM="TRUE" +PREP_FVCOM="TRUE" +DO_PARALLEL_PRDGEN="TRUE" + +EXTRN_MDL_ICS_OFFSET_HRS="3" +LBC_SPEC_INTVL_HRS="1" +EXTRN_MDL_LBCS_OFFSET_HRS="6" +BOUNDARY_LEN_HRS="72" +BOUNDARY_PROC_GROUP_NUM="72" + +# avaialble retro period: +# 20210511-20210531; 20210718-20210801 +DATE_FIRST_CYCL="20220720" +DATE_LAST_CYCL="20230721" +CYCL_HRS=( "00" "12" ) +CYCL_HRS_SPINSTART=("03" "15") +CYCL_HRS_PRODSTART=("09" "21") +CYCLEMONTH="07" +CYCLEDAY="20-21" + +STARTYEAR=${DATE_FIRST_CYCL:0:4} +STARTMONTH=${DATE_FIRST_CYCL:4:2} +STARTDAY=${DATE_FIRST_CYCL:6:2} +STARTHOUR="00" +ENDYEAR=${DATE_LAST_CYCL:0:4} +ENDMONTH=${DATE_LAST_CYCL:4:2} +ENDDAY=${DATE_LAST_CYCL:6:2} +ENDHOUR="23" + +PREEXISTING_DIR_METHOD="upgrade" +INITIAL_CYCLEDEF="${DATE_FIRST_CYCL}0300 ${DATE_LAST_CYCL}2300 12:00:00" +BOUNDARY_CYCLEDEF="${DATE_FIRST_CYCL}0000 ${DATE_LAST_CYCL}2300 06:00:00" +PROD_CYCLEDEF="00 01-05,07-11,13-17,19-23 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +PRODLONG_CYCLEDEF="00 00,06,12,18 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +#ARCHIVE_CYCLEDEF="${DATE_FIRST_CYCL}1400 ${DATE_LAST_CYCL}2300 24:00:00" +if [[ $DO_SPINUP == "TRUE" ]] ; then + SPINUP_CYCLEDEF="00 03-08,15-20 ${CYCLEDAY} ${CYCLEMONTH} ${STARTYEAR} *" +fi + +FCST_LEN_HRS="18" +FCST_LEN_HRS_SPINUP="1" +POSTPROC_LEN_HRS="18" +POSTPROC_LONG_LEN_HRS="60" +#FCST_LEN_HRS_CYCLES=(21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21 21 21 21 63 21 21) +for i in {0..23}; do FCST_LEN_HRS_CYCLES[$i]=18; done +for i in {0..23..6}; do FCST_LEN_HRS_CYCLES[$i]=60; done +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1" +RESTART_INTERVAL_LONG="1" + +USE_RRFSE_ENS="FALSE" +CYCL_HRS_HYB_FV3LAM_ENS=("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23") + +SST_update_hour=01 +GVF_update_hour=04 +SNOWICE_update_hour=00 +netcdf_diag=.true. +binary_diag=.false. + +regional_ensemble_option=1 + +EXTRN_MDL_NAME_ICS="FV3GFS" +EXTRN_MDL_NAME_LBCS="FV3GFS" +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +PRINT_DIFF_PGR="TRUE" +envir="para" + +NET="rrfs_a" +TAG="n3v41" + +ARCHIVEDIR="/NCEPDEV/emc-meso/1year/emc.lam" +NCL_REGION="conus" +MODEL="rrfs_a" +RUN="rrfs" + +. set_rrfs_config.sh + +STMP="/lfs/h2/emc/stmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +PTMP="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}" # Path to directory STMP that mostly contains input files. +NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to directory NWGES that save boundary, cold initial, restart files +if [[ ${regional_ensemble_option} == "5" ]]; then + RRFSE_NWGES="/lfs/h2/emc/ptmp/emc.lam/rrfs/${version}/nwges" # Path to RRFSE directory NWGES that mostly contains ensemble restart files for GSI hybrid. + NUM_ENS_MEMBERS=30 # FV3LAM ensemble size for GSI hybrid analysis + CYCL_HRS_PRODSTART_ENS=( "19" ) + DO_ENVAR_RADAR_REF="TRUE" +fi diff --git a/ush/config_defaults.sh b/ush/config_defaults.sh index 7618e3aa2..a9cc4d7c6 100644 --- a/ush/config_defaults.sh +++ b/ush/config_defaults.sh @@ -31,9 +31,12 @@ # implications on the experiment variables that need to be set and the # the directory structure used. # +# version +# set version of the system #----------------------------------------------------------------------- # RUN_ENVIR="nco" +version="0.1.0" # #----------------------------------------------------------------------- # @@ -43,9 +46,20 @@ RUN_ENVIR="nco" # MACHINE: # Machine on which the workflow will run. # +# MACHINETYPE: +# decide Machine type for wcoss2 (backup or primary) +# # ACCOUNT: # The account under which to submit jobs to the queue. # +# SERVICE_ACCOUNT: +# The account under which to submit non-reservation jobs to the queue. +# Defaults to ACCOUNT if not set. +# +# HPSS_ACCOUNT: +# The account under which to submit non-reservation jobs to the queue. +# Defaults to SERVICE_ACCOUNT if not set. +# # SCHED: # The job scheduler to use (e.g. slurm). Set this to an empty string in # order for the experiment generation script to set it depending on the @@ -97,12 +111,49 @@ RUN_ENVIR="nco" # If this is not set or set to an empty string, it will be (re)set to a # machine-dependent value. # +# QUEUE_ANALYSIS: +# The queue or QOS to which the task that runs a analysis is submitted. +# If this is not set or set to an empty string, it will be (re)set to a +# machine-dependent value. +# +# PARTITION_PRDGEN: +# If using the slurm job scheduler (i.e. if SCHED is set to "slurm"), +# the partition to which the task that remaps output grids is submitted. If +# this is not set or set to an empty string, it will be (re)set to a +# machine-dependent value. This is not used if SCHED is not set to +# "slurm". +# +# QUEUE_PRDGEN: +# The queue or QOS to which the task that prodgen is submitted. +# If this is not set or set to an empty string, it will be (re)set to a +# machine-dependent value. +# +# PARTITION_POST: +# If using the slurm job scheduler (i.e. if SCHED is set to "slurm"), +# the partition to which the task that upp is submitted. +# +# QUEUE_POST: +# The queue or QOS to which the task that upp is submitted. +# If this is not set or set to an empty string, it will be (re)set to a +# machine-dependent value. +# +# RESERVATION: +# The reservation for major tasks. +# +# RESERVATION_POST: +# The reservation for post tasks. +# # mach_doc_end # #----------------------------------------------------------------------- # MACHINE="BIG_COMPUTER" +MACHINETYPE="backup" ACCOUNT="project_name" +SERVICE_ACCOUNT="" +HPSS_ACCOUNT="" +RESERVATION="" +RESERVATION_POST="" SCHED="" PARTITION_DEFAULT="" QUEUE_DEFAULT="" @@ -110,6 +161,19 @@ PARTITION_HPSS="" QUEUE_HPSS="" PARTITION_FCST="" QUEUE_FCST="" +PARTITION_GRAPHICS="" +QUEUE_GRAPHICS="" +PARTITION_ANALYSIS="" +QUEUE_ANALYSIS="" +PARTITION_PRDGEN="" +PARTITION_MINT="" +PARTITION_MAXT="" +QUEUE_PRDGEN="" +QUEUE_MINT="" +QUEUE_MAXT="" +PARTITION_POST="" +QUEUE_POST="" +MINMAX_BINS="" # #----------------------------------------------------------------------- # @@ -186,7 +250,7 @@ EXPT_SUBDIR="" # that will point to a subdirectory (having the name of the grid being # used) under this directory. This variable should be set to a null # string in this file, but it can be specified in the user-specified -# workflow configuration file (EXPT_CONFIG_FN) +# workflow configuration file (EXPT_CONFIG_FN). # # STMP: # The beginning portion of the directory that will contain cycle-dependent @@ -224,15 +288,84 @@ EXPT_SUBDIR="" # # $PTMP/com/$NET/$envir/$RUN.$yyyymmdd/$hh # +# NWGES: +# The beginning portion of the directory that will contain the output +# files from the forecast for a given cycle. For a cycle +# that starts on the date specified by yyyymmdd and hour specified by hh +# (where yyyymmdd and hh are as described above), the directory in which +# the forecast output files will be placed will be: +# $NWGES/$NET/$envir/$RUN.$yyyymmdd/$hh +# +# Setup default observation locations for data assimilation: +# +# OBSPATH: observation BUFR file path +# OBSPATH_NSSLMOSIAC: location of NSSL radar reflectivity +# LIGHTNING_ROOT: location of lightning observations +# ENKF_FCSTL: location of global ensemble forecast +# FFG_DIR: location of flash flood guidance for QPF comparison +# +# Setup default locations for global SST and update time: +# SST_ROOT: locations of global SST +# SST_update_hour: cycle time for updating SST +# +# Setup default locations for GVF and update time: +# GVF_ROOT: locations of GVF observations +# GVF_update_hour: cycle time for updating GVF +# +# Setup default locations for IMS snow/ice and update time: +# IMSSNOW_ROOT: locations of IMS snow/ice observations +# SNOWICE_update_hour: cycle time for updating snow/ice +# +# Setup default resource data locations for soil surgery and time: +# RAPHRR_SOIL_ROOT: locations of RAP/HRRR forecast netcdf files +# SOIL_SURGERY_time: cycle time for soil surgery +# +# Setup default locations for FIRE_RRFS files and update time +# FIRE_RAVE_DIR +# FIRE_RRFS_ROOT +# FIRE_RRFS_update_hour #----------------------------------------------------------------------- # COMINgfs="/base/path/of/directory/containing/gfs/input/files" FIXLAM_NCO_BASEDIR="" STMP="/base/path/of/directory/containing/model/input/and/raw/output/files" +ENSCTRL_STMP="/base/path/of/directory/containing/model/input/and/raw/output/files" +RRFSE_NWGES_BASEDIR="/base/path/of/directory/containing/model/restart/files" NET="rrfs" envir="para" RUN="experiment_name" +RUN_ensctrl="experiment_name" +TAG="dev_grid" PTMP="/base/path/of/directory/containing/postprocessed/output/files" +ENSCTRL_PTMP="/base/path/of/directory/containing/postprocessed/output/files" +NWGES="/base/path/of/directory/containing/model/output/files" +ENSCTRL_NWGES="/base/path/of/directory/containing/model/restart/files" +RRFSE_NWGES="/base/path/of/directory/containing/model/output/files" + +ARCHIVEDIR="/5year/BMC/wrfruc/rrfs_dev1" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/rtrr/RRFS/graphics" +NCL_REGION="conus" +MODEL="NO MODEL CHOSEN" + +OBSPATH="/public/data/grids/rap/obs" +OBSPATH_NSSLMOSIAC="/public/data/radar/mrms" +OBSPATH_PM="/mnt/lfs1/BMC/wrfruc/hwang/rrfs_sd/pm" +LIGHTNING_ROOT="/public/data/lightning" +ENKF_FCST="/lfs4/BMC/public/data/grids/enkf/atm" +FFG_DIR="/public/data/grids/ncep/ffg/grib2" +SST_ROOT="/lfs4/BMC/public/data/grids/ncep/sst/0p083deg/grib2" +SST_update_hour=99 +GVF_ROOT="/public/data/sat/ncep/viirs/gvf/grib2" +GVF_update_hour=99 +IMSSNOW_ROOT="/public/data/grids/ncep/snow/ims96/grib2" +SNOWICE_update_hour=99 +RAPHRR_SOIL_ROOT="/mnt/lfs4/BMC/rtwbl/mhu/wcoss/nco/com" +SOIL_SURGERY_time=9999999999 +FIRE_RAVE_DIR="/lfs4/BMC/public/data/grids/nesdis/3km_fire_emissions" +FIRE_RRFS_ROOT="/mnt/lfs4/BMC/gsd-fv3-dev/FIRE_RRFS_ROOT" +FIRE_RRFS_update_hour=99 + # #----------------------------------------------------------------------- # @@ -365,6 +498,11 @@ WFLOW_LAUNCH_LOG_FN="log.launch_FV3LAM_wflow" # Starting date of the last forecast in the set of forecasts to run. # Format is "YYYYMMDD". Note that this does not include the hour-of-day. # +# STARTYEAR,STARTMONTH,STARTDAY,STARTHOUR: +# Year,month,day and hour of the first cycle in the set of forecasts to run +# ENDYEAR,ENDMONTH,ENDDAY,ENDHOUR +# Year,month,day and hour of the last cycle in the set of forecasts to run +# # CYCL_HRS: # An array containing the hours of the day at which to launch forecasts. # Forecasts are launched at these hours on each day from DATE_FIRST_CYCL @@ -372,15 +510,254 @@ WFLOW_LAUNCH_LOG_FN="log.launch_FV3LAM_wflow" # two-digit string representing an integer that is less than or equal to # 23, e.g. "00", "03", "12", "23". # +# CYCL_HRS_SPINSTART: +# An array containing the hours of the day at which the spin up cycle starts. +# +# CYCL_HRS_PRODSTART: +# An array containing the hours of the day at which the product cycle starts, +# from cold start input or from spin-up cycle forcast +# +# CYCL_HRS_PRODSTART_ENS: +# An array containing the hours of the day at which the product cycle starts, +# from cold start input or from spin-up cycle forcast, for the ensemble. +# this is only needed for locating the RRFS ensemble files for the the deterministic hybrid analysis. +# +# CYCL_HRS_RECENTER: +# An array containing the hours of the day at which the ensemble recenter is on +# +# CYCL_HRS_STOCH +# An array containing the hours of the day at which the stochastics physcis is on +# this might include: SPPT, SHUM, SKEB, SPP, LSM_SPP +# +# BOUNDARY_LEN_HRS +# The length of boundary condition for normal forecast, in integer hours. +# +# BOUNDARY_LONG_LEN_HRS +# The length of boundary condition for long forecast, in integer hours. +# +# BOUNDARY_PROC_GROUP_NUM +# The number of groups used to run make_lbcs, in integer from 1 to forecast longest hours. +# # FCST_LEN_HRS: # The length of each forecast, in integer hours. # +# FCST_LEN_HRS_SPINUP: +# The length of each forecast in spin up cycles, in integer hours. +# +# FCST_LEN_HRS_CYCLES: +# The length of forecast for each cycle, in integer hours. +# When it empty, all forecast will be FCST_LEN_HRS +# +# DA_CYCLE_INTERV: +# Data assimilation cycle interval, in integer hours for now. +# +# RESTART_INTERVAL: +# Set up frequenency or list of the forecast hours that FV3 should +# generate the restart files. +# +# RESTART_INTERVAL_LONG: +# Set up frequenency or list of the forecast hours that FV3 should +# generate the restart files. +# +# POSTPROC_LEN_HRS: +# The length of post process, in integer hours. +# +# POSTPROC_LONG_LEN_HRS: +# The length of long post process, in integer hours. +# +# CYCL_HRS_HYB_FV3LAM_ENS: +# An array containing the hours of the day at which the GSI hybrid using FV3LAM ensemeble. +# #----------------------------------------------------------------------- # DATE_FIRST_CYCL="YYYYMMDD" DATE_LAST_CYCL="YYYYMMDD" +STARTYEAR="2022" +STARTMONTH="10" +STARTDAY="21" +STARTHOUR="00" +ENDYEAR="2022" +ENDMONTH="10" +ENDDAY="21" +ENDHOUR="23" CYCL_HRS=( "HH1" "HH2" ) +CYCL_HRS_SPINSTART=( "HH1" "HH2" ) +CYCL_HRS_PRODSTART=( "HH1" "HH2" ) +CYCL_HRS_PRODSTART_ENS=( "HH1" "HH2" ) +CYCL_HRS_RECENTER=( "HH1" "HH2" ) +CYCL_HRS_STOCH=( "HH1" "HH2" ) +BOUNDARY_LEN_HRS="0" +BOUNDARY_LONG_LEN_HRS="0" +BOUNDARY_PROC_GROUP_NUM="1" +POSTPROC_LEN_HRS="1" +POSTPROC_LONG_LEN_HRS="1" FCST_LEN_HRS="24" +FCST_LEN_HRS_SPINUP="1" +FCST_LEN_HRS_CYCLES=( ) +DA_CYCLE_INTERV="1" +RESTART_INTERVAL="1 2" +RESTART_INTERVAL_LONG="1 2" +CYCL_HRS_HYB_FV3LAM_ENS=( "99" ) + +#----------------------------------------------------------------------- +# +# Set cycle definition for each group. The cycle definition sets the cycle +# time that the group will run. It has two way to set up: +# 1) 00 HHs DDs MMs YYYYs * +# HHs can be "01-03/01" or "01,02,03" or "*" +# DDs,MMs can be "01-03" or "01,02,03" or "*" +# YYYYs can be "2020-2021" or "2020,2021" or "*" +# 2) start_time(YYYYMMDDHH00) end_time(YYYYMMDDHH00) interval(HH:MM:SS) +# for example: 202104010000 202104310000 12:00:00 +# The default cycle definition is: +# "00 01 01 01 2100 *" +# which will likely never get to run. +# +# Definitions: +# +# AT_START_CYCLEDEF: +# cycle definition for "at start" group +# This group runs: make_grid, make_orog, make_sfc_climo +# +# INITIAL_CYCLEDEF: +# cycle definition for "initial" group +# This group runs get_extrn_ics, make_ics +# +# BOUNDARY_CYCLEDEF: +# cycle definition for "boundary" group +# This group runs: get_extrn_lbcs,make_lbcs +# +# BOUNDARY_LONG_CYCLEDEF: +# cycle definition for "boundary_long" group +# This group runs: get_extrn_lbcs_long,make_lbcs +# +# SPINUP_CYCLEDEF: +# cycle definition for spin-up cycle group +# This group runs: anal_gsi_input_spinup and data process, run_fcst_spinup, run_post_spinup +# +# PROD_CYCLEDEF: +# cycle definition for product cycle group +# This group runs: anal_gsi_input and data process, run_fcst, python_skewt, run_post, run_clean +# +# SAVEDA_CYCLEDEF: +# cycle definition for saving DA output files +# This group runs: save_da_output +# +# RECENTER_CYCLEDEF: +# cycle definition for recenter cycle group +# This group runs: recenter +# +# PRODLONG_CYCLEDEF: +# same as PROD_CYCLEDEF, but for long forecast +# +# ARCHIVE_CYCLEDEF: +# cycle definition for "archive" group +# This group runs: run_archive +# +#----------------------------------------------------------------------- +# +CYCLEDAY="*" +CYCLEMONTH="*" +AT_START_CYCLEDEF="00 01 01 01 2100 *" +INITIAL_CYCLEDEF="00 01 01 01 2100 *" +BOUNDARY_CYCLEDEF="00 01 01 01 2100 *" +BOUNDARY_LONG_CYCLEDEF="00 01 01 01 2100 *" +SPINUP_CYCLEDEF="00 01 01 01 2100 *" +PROD_CYCLEDEF="00 01 01 01 2100 *" +RECENTER_CYCLEDEF="00 01 01 01 2100 *" +PRODLONG_CYCLEDEF="00 01 01 01 2100 *" +ARCHIVE_CYCLEDEF="00 01 01 01 2100 *" +SAVEDA_CYCLEDEF="00 01 01 01 2100 *" +# +#------------------------------------------------------------------------------------- +# GSI Namelist parameters configurable across differnt applications +# if we need to tune one GSI namelist parameter, we can elevate it to a shell variable +# and assign value in config.sh and give it a default value in config_default.sh +# In realtime testing, don't need to regenerate the whole workflow, you can tweak +# $EXPTDIR/var_defns.sh and $FIX_GSI/gsiparm.anl.sh to make sure the change is +# expected and then put it back into config.sh and config_default.sh +# (need to follow FORTRAN namelist convetion) +#------------------------------------------------------------------------------------- +# &SETUP and &BKGERR +niter1=50 +niter2=50 +l_obsprvdiag=.false. +diag_radardbz=.false. +write_diag_2=.false. +bkgerr_vs=1.0 +bkgerr_hzscl=0.7,1.4,2.80 #no trailing , +usenewgfsberror=.true. +netcdf_diag=.false. +binary_diag=.true. + +# &HYBRID_ENSEMBLE +l_both_fv3sar_gfs_ens=.false. +weight_ens_gfs=1.0 +weight_ens_fv3sar=1.0 +readin_localization=.true. #if true, it overwrites the "beta1_inv/ens_h/ens_v" setting +beta1_inv=0.15 #beata_inv is 1-ensemble_wgt +ens_h=110 #horizontal localization scale of "Gaussian function=exp(-0.5)" for EnVar (km) +ens_v=3 #vertical localization scale of "Gaussian function=exp(-0.5)" for EnVar (positive:grids, negative:lnp) +ens_h_radardbz=4.10790 #horizontal localization scale of "Gaussian function=exp(-0.5)" for radardbz EnVar (km) +ens_v_radardbz=-0.30125 #vertical localization scale of "Gaussian function=exp(-0.5)" for radardbz EnVar (positive:grids, negative:lnp) +nsclgrp=1 +ngvarloc=1 +r_ensloccov4tim=1.0 +r_ensloccov4var=1.0 +r_ensloccov4scl=1.0 +regional_ensemble_option=1 #1 for GDAS ; 5 for FV3LAM ensemble +grid_ratio_fv3=2.0 #fv3 resolution 3km, so analysis=3*2=6km +grid_ratio_ens=3 #if analysis is 3km, then ensemble=3*3=9km. GDAS ensemble is 20km +i_en_perts_io=1 #0 or 1: original file 3: pre-processed ensembles +q_hyb_ens=.false. +ens_fast_read=.false. +CORRLENGTH=300 #horizontal localization scale of "Gaspari-Cohn function=0" for EnKF (km) +LNSIGCUTOFF=0.5 #vertical localization scale of "Gaspari-Cohn function=0" for EnKF (lnp) +CORRLENGTH_radardbz=18 #horizontal localization scale of "Gaspari-Cohn function=0" for radardbz EnKF (km) +LNSIGCUTOFF_radardbz=0.5 #vertical localization scale of "Gaspari-Cohn function=0" for radardbz EnKF (lnp) +assign_vdl_nml=.false. +vdl_scale=0 + +# &RAPIDREFRESH_CLDSURF +l_PBL_pseudo_SurfobsT=.false. +l_PBL_pseudo_SurfobsQ=.false. +i_use_2mQ4B=0 +i_use_2mT4B=0 +i_T_Q_adjust=1 +l_rtma3d=.false. +i_precip_vertical_check=0 +# &CHEM +laeroana_fv3smoke=.false. +berror_fv3_cmaq_regional=.false. +#----------------------------------------------------------------------- +# HYBENSMEM_NMIN: +# Minimum number of ensemble members required a hybrid GSI analysis +# +HYBENSMEM_NMIN=80 +ANAVINFO_FN="anavinfo.rrfs" +ANAVINFO_SD_FN="anavinfo.rrfs_sd" +ANAVINFO_DBZ_FN="anavinfo.rrfs_dbz" +ANAVINFO_CONV_DBZ_FN="anavinfo.rrfs_conv_dbz" +ENKF_ANAVINFO_FN="anavinfo.rrfs" +ENKF_ANAVINFO_DBZ_FN="anavinfo.enkf.rrfs_dbz" +CONVINFO_FN="convinfo.rrfs" +CONVINFO_SD_FN="convinfo.rrfs_sd" +BERROR_FN="rap_berror_stats_global_RAP_tune" #under $FIX_GSI +BERROR_SD_FN="berror.rrfs_sd" # for test only +OBERROR_FN="errtable.rrfs" +HYBENSINFO_FN="hybens_info.rrfs" +AIRCRAFT_REJECT="" +SFCOBS_USELIST="" +# +#----------------------------------------------------------------------- +# default namelist for nonvar cloud analysis +cld_bld_hgt=1200.0 +l_precip_clear_only=.false. +l_qnr_from_qr=.false. +# +#----------------------------------------------------------------------- +# default weighting for control analysis in ensemble recentering +beta_recenter=1.0 # #----------------------------------------------------------------------- # @@ -397,6 +774,12 @@ FCST_LEN_HRS="24" # lateral boundary condition (LBC) files will be generated for input into # the forecast model. # +# EXTRN_MDL_SAVETYPE: +#`define how EXTRN_MDL_NAME_ICS and EXTRN_MDL_NAME_LBCS were saved (such as GSL, NCO) +# +# EXTRN_MDL_ICS_OFFSET_HRS: +# initial file offset hours. +# # LBC_SPEC_INTVL_HRS: # The interval (in integer hours) with which LBC files will be generated. # We will refer to this as the boundary update interval. Note that the @@ -406,6 +789,22 @@ FCST_LEN_HRS="24" # data availble at least every 6 hours. It is up to the user to ensure # that this is the case. # +# EXTRN_MDL_LBCS_OFFSET_HRS: +# boundary file offset hours. +# +# LBCS_SEARCH_HRS: +# When search boundary conditions tasks from previous cycles in prep_cyc step, +# For example: 0 means search start for the same cycle lbcs task. +# 1 means search start for 1-h previous cycle lbcs task. +# 2 means search start for 2-h previous cycle lbcs task. +# +# EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS: +# When search boundary conditions from previous cycles in prep_start step, +# the search will start at cycle before (this parameter) of current cycle. +# For example: 0 means search start at the same cycle lbcs directory. +# 1 means search start at 1-h previous cycle lbcs directory. +# 2 means search start at 2-h previous cycle lbcs directory. +# # FV3GFS_FILE_FMT_ICS: # If using the FV3GFS model as the source of the ICs (i.e. if EXTRN_MDL_NAME_ICS # is set to "FV3GFS"), this variable specifies the format of the model @@ -420,7 +819,12 @@ FCST_LEN_HRS="24" # EXTRN_MDL_NAME_ICS="FV3GFS" EXTRN_MDL_NAME_LBCS="FV3GFS" +EXTRN_MDL_SAVETYPE="NONE" +EXTRN_MDL_ICS_OFFSET_HRS="0" LBC_SPEC_INTVL_HRS="6" +EXTRN_MDL_LBCS_OFFSET_HRS="" +EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS="0" +LBCS_SEARCH_HRS="6" FV3GFS_FILE_FMT_ICS="nemsio" FV3GFS_FILE_FMT_LBCS="nemsio" # @@ -474,9 +878,9 @@ NOMADS_file_type="nemsio" #----------------------------------------------------------------------- # USE_USER_STAGED_EXTRN_FILES="FALSE" -EXTRN_MDL_SOURCE_BASEDIR_ICS="/base/dir/containing/user/staged/extrn/mdl/files/for/ICs" +EXTRN_MDL_SOURCE_BASEDIR_ICS="" EXTRN_MDL_FILES_ICS=( "ICS_file1" "ICS_file2" "..." ) -EXTRN_MDL_SOURCE_BASEDIR_LBCS="/base/dir/containing/user/staged/extrn/mdl/files/for/LBCs" +EXTRN_MDL_SOURCE_BASEDIR_LBCS="" EXTRN_MDL_FILES_LBCS=( "LBCS_file1" "LBCS_file2" "..." ) # #----------------------------------------------------------------------- @@ -814,6 +1218,18 @@ ESGgrid_WIDE_HALO_WIDTH="" # BLOCKSIZE: # The amount of data that is passed into the cache at a time. # +# IO_LAYOUT_X,IO_LAYOUT_Y: +# When wrtie out restrat files, how many subdomain files will be write in +# x and y directory. Right now, please always set IO_LAYOUT_X=1. +# LAYOUT_Y/IO_LAYOUT_Y needs to be a integer number. +# +# FH_DFI_RADAR: +# the forecast hour to use radar tten, this is used to set the fh_dfi_radar +# parameter in input.nml, e.g. FH_DFI_RADAR="0.0,0.25,0.5,0.75,1.0" +# will set fh_dfi_radar = 0.0,0.25,0.5,0.75,1.0 in input.nml* and +# it tells the model to read at the 0, 15, 30, 45 minutes, +# and apply radar tten from 0-60 minutes of forecasts. +# # Here, we set these parameters to null strings. This is so that, for # any one of these parameters: # @@ -832,12 +1248,40 @@ ESGgrid_WIDE_HALO_WIDTH="" # the parameters defined in this section are set to non-empty strings # before creating the experiment directory. # +# +# NFHOUT: +# Output frequency in hours after forecast hour "nfhmax_hf". +# +# NFHMAX_HF: +# Number of forecast hours until output frequency "nfhout" takes affect. +# +# NFHOUT_HF: +# Output frequency in hours until forecast hour "nfhmax_hf". +# +# NSOUT +# setup frequency of writing out forecast files in time steps +# +# NSOUT_MIN +# setup frequency of writing out forecast files in minutes +# +# OUTPUT_FH +# setup time of writing out forecast files in hours +# #----------------------------------------------------------------------- # DT_ATMOS="" LAYOUT_X="" LAYOUT_Y="" +IO_LAYOUT_X="1" +IO_LAYOUT_Y="1" BLOCKSIZE="" +FH_DFI_RADAR="-20000000000" +NFHOUT="1" +NFHMAX_HF="60" +NFHOUT_HF="1" +NSOUT="0" +NSOUT_MIN="0" +OUTPUT_FH="-1" # #----------------------------------------------------------------------- # @@ -934,13 +1378,17 @@ PREDEF_GRID_NAME="" # use to deal with preexisting directories [e.g ones generated by previous # calls to the experiment generation script using the same experiment name # (EXPT_SUBDIR) as the current experiment]. This variable must be set to -# one of "delete", "rename", and "quit". The resulting behavior for each -# of these values is as follows: +# one of "delete", "upgrade", "rename", and "quit". The resulting behavior +# for each of these values is as follows: # # * "delete": # The preexisting directory is deleted and a new directory (having the # same name as the original preexisting directory) is created. # +# * "upgrade": +# save a copy and then upgrade the preexisting $EXPDIR directory +# keep intact for other preexisting directories +# # * "rename": # The preexisting directory is renamed and a new directory (having the # same name as the original preexisting directory) is created. The new @@ -962,10 +1410,14 @@ PREEXISTING_DIR_METHOD="delete" # Set VERBOSE. This is a flag that determines whether or not the experiment # generation and workflow task scripts tend to be print out more informational # messages. +# Set SAVE_CYCLE_LOG. This is a flag that determines whether or not save +# the information related to data assimilation cycling, such as background +# used in each cycle # #----------------------------------------------------------------------- # VERBOSE="TRUE" +SAVE_CYCLE_LOG="TRUE" # #----------------------------------------------------------------------- # @@ -998,7 +1450,24 @@ VERBOSE="TRUE" # # SFC_CLIMO_DIR: # Same as GRID_DIR but for the surface climatology generation task. -# +# +# IS_RTMA: +# If true, some ICs,LBCs,GSI rocoto tasks will be turned off +# +# FG_ROOTDIR: +# First Guess Root Directory, APP will find corresponding first guess +# fields from this directory. RRFS will find FG under NWGES_BASEDIR, +# but we needs to explicitly specify where to find FG for RTMA. +# So this parameter only matters for RTMA +# +# RTMA_OBS_FEED: +# "" or "GSL": RTMA's observations follow the GSL naming convention +# "NCO": RTMA's observations follow the NCO naming convention +# +# PYTHON_GRAPHICS_YML_FN +# The name of the yml file under ${PYTHON_GRAPHICS_DIR}/image_lists +# to be used by current application +# #----------------------------------------------------------------------- # RUN_TASK_MAKE_GRID="TRUE" @@ -1009,6 +1478,14 @@ OROG_DIR="/path/to/pregenerated/orog/files" RUN_TASK_MAKE_SFC_CLIMO="TRUE" SFC_CLIMO_DIR="/path/to/pregenerated/surface/climo/files" + + +# +NCORES_PER_NODE=24 #Jet default value +IS_RTMA="FALSE" +FG_ROOTDIR="" +RTMA_OBS_FEED="" +PYTHON_GRAPHICS_YML_FN="rrfs_subset.yml" # #----------------------------------------------------------------------- # @@ -1044,6 +1521,23 @@ SFC_CLIMO_FIELDS=( \ # The location on disk of the static surface climatology input fields, used by # sfc_climo_gen. These files are only used if RUN_TASK_MAKE_SFC_CLIMO=TRUE # +# FIX_GSI: +# System directory in which the fixed +# files that are needed to run the GSI are located +# +# FIX_UPP: +# System directory in which the fixed +# files that are needed to run the UPP are located +# +# FIX_CRTM: +# System directory in which the CRTM coefficient files are located +# +# FIX_SMOKE_DUST +# directory in which the smoke and dust fix files are located +# +# FIX_BUFRSND +# directory in which the bufrsnd fix files are located +# # FNGLAC, ..., FNMSKH: # Names of (some of the) global data files that are assumed to exist in # a system directory specified (this directory is machine-dependent; @@ -1089,6 +1583,7 @@ SFC_CLIMO_FIELDS=( \ # specifies its target file in FIXam (where columns are delineated by the # pipe symbol "|"). # +# #----------------------------------------------------------------------- # # Because the default values are dependent on the platform, we set these @@ -1097,6 +1592,13 @@ SFC_CLIMO_FIELDS=( \ FIXgsm="" TOPO_DIR="" SFC_CLIMO_INPUT_DIR="" +FIX_GSI="" +FIX_UPP="" +FIX_CRTM="" +FIX_MINMAX="" +FIX_UPP_CRTM="" +FIX_SMOKE_DUST="" +FIX_BUFRSND="" FNGLAC="global_glacier.2x2.grb" FNMXIC="global_maxice.2x2.grb" @@ -1201,10 +1703,39 @@ MAKE_OROG_TN="make_orog" MAKE_SFC_CLIMO_TN="make_sfc_climo" GET_EXTRN_ICS_TN="get_extrn_ics" GET_EXTRN_LBCS_TN="get_extrn_lbcs" +GET_EXTRN_LBCS_LONG_TN="get_extrn_lbcs_long" +GET_GEFS_LBCS_TN="get_gefs_lbcs" MAKE_ICS_TN="make_ics" MAKE_LBCS_TN="make_lbcs" RUN_FCST_TN="run_fcst" RUN_POST_TN="run_post" +RUN_PRDGEN_TN="run_prdgen" +RUN_MINT_TN="run_mint" +RUN_MAXT_TN="run_maxt" +RUN_BUFRSND_TN="run_bufrsnd" + +ANAL_GSI_TN="anal_gsi_input" +ANAL_GSIDIAG_TN="anal_gsi_diag" +ANAL_SD_GSI_TN="anal_sd_gsi_input" +POSTANAL_TN="postanal_input" +OBSERVER_GSI_ENSMEAN_TN="observer_gsi_ensmean" +OBSERVER_GSI_TN="observer_gsi" +PREP_START_TN="prep_start" +PREP_CYC_SPINUP_TN="prep_cyc_spinup" +PREP_CYC_PROD_TN="prep_cyc_prod" +PREP_CYC_ENSMEAN_TN="prep_cyc_ensmean" +PREP_CYC_TN="prep_cyc" +CALC_ENSMEAN_TN="calc_ensmean" +PROCESS_RADAR_REF_TN="process_radarref" +PROCESS_LIGHTNING_TN="process_lightning" +RADAR_REF_THINNING="1" +PROCESS_BUFR_TN="process_bufr" +PROCESS_SMOKE_TN="process_smoke" +RADAR_REFL2TTEN_TN="radar_refl2tten" +CLDANL_NONVAR_TN="cldanl_nonvar" +SAVE_RESTART_TN="save_restart" +SAVE_DA_OUTPUT_TN="save_da_output" +JEDI_ENVAR_IODA_TN="jedi_envar_ioda" # # Number of nodes. # @@ -1215,8 +1746,37 @@ NNODES_GET_EXTRN_ICS="1" NNODES_GET_EXTRN_LBCS="1" NNODES_MAKE_ICS="4" NNODES_MAKE_LBCS="4" +NNODES_RUN_PREPSTART="1" NNODES_RUN_FCST="" # This is calculated in the workflow generation scripts, so no need to set here. NNODES_RUN_POST="2" +NNODES_RUN_PRDGEN="1" +NNODES_RUN_MINT="1" +NNODES_RUN_MAXT="1" +NNODES_RUN_ANAL="16" +NNODES_RUN_GSIDIAG="1" +NNODES_RUN_POSTANAL="1" +NNODES_RUN_ENKF="90" +NNODES_RUN_RECENTER="6" +NNODES_PROC_RADAR="2" +NNODES_PROC_LIGHTNING="1" +NNODES_PROC_BUFR="1" +NNODES_PROC_SMOKE="1" +NNODES_RUN_REF2TTEN="1" +NNODES_RUN_NONVARCLDANL="1" +NNODES_RUN_GRAPHICS="1" +NNODES_RUN_ENSPOST="1" +NNODES_RUN_BUFRSND="1" +NNODES_SAVE_RESTART="1" +NNODES_RUN_JEDIENVAR_IODA="1" +# +# Number of cores. +# +NCORES_RUN_ANAL="4" +NCORES_RUN_OBSERVER="4" +NCORES_RUN_ENKF="4" +NATIVE_RUN_FCST="--cpus-per-task 2 --exclusive" +NATIVE_RUN_ANAL="--cpus-per-task 2 --exclusive" +NATIVE_RUN_ENKF="--cpus-per-task 4 --exclusive" # # Number of MPI processes per node. # @@ -1227,8 +1787,37 @@ PPN_GET_EXTRN_ICS="1" PPN_GET_EXTRN_LBCS="1" PPN_MAKE_ICS="12" PPN_MAKE_LBCS="12" +PPN_RUN_PREPSTART="1" PPN_RUN_FCST="24" # This may have to be changed depending on the number of threads used. PPN_RUN_POST="24" +PPN_RUN_PRDGEN="1" +PPN_RUN_MINT="1" +PPN_RUN_MAXT="1" +PPN_RUN_ANAL="24" +PPN_RUN_GSIDIAG="24" +PPN_RUN_POSTANAL="1" +PPN_RUN_ENKF="1" +PPN_RUN_RECENTER="20" +PPN_PROC_RADAR="24" +PPN_PROC_LIGHTNING="1" +PPN_PROC_BUFR="1" +PPN_PROC_SMOKE="1" +PPN_RUN_REF2TTEN="1" +PPN_RUN_NONVARCLDANL="1" +PPN_RUN_GRAPHICS="12" +PPN_RUN_ENSPOST="1" +PPN_RUN_BUFRSND="28" +PPN_SAVE_RESTART="1" +PPN_RUN_JEDIENVAR_IODA="1" +# +# Number of TPP for WCOSS2. +# +TPP_MAKE_ICS="1" +TPP_MAKE_LBCS="1" +TPP_RUN_ANAL="1" +TPP_RUN_ENKF="1" +TPP_RUN_FCST="1" +TPP_RUN_POST="1" # # Walltimes. # @@ -1238,9 +1827,59 @@ WTIME_MAKE_SFC_CLIMO="00:20:00" WTIME_GET_EXTRN_ICS="00:45:00" WTIME_GET_EXTRN_LBCS="00:45:00" WTIME_MAKE_ICS="00:30:00" -WTIME_MAKE_LBCS="00:30:00" -WTIME_RUN_FCST="04:30:00" +WTIME_MAKE_LBCS="01:30:00" +WTIME_RUN_PREPSTART="00:10:00" +WTIME_RUN_PREPSTART_ENSMEAN="00:10:00" +WTIME_RUN_FCST="00:30:00" +WTIME_RUN_FCST_LONG="04:30:00" +WTIME_RUN_FCST_SPINUP="00:30:00" WTIME_RUN_POST="00:15:00" +WTIME_RUN_PRDGEN="00:40:00" +WTIME_RUN_MINT="00:40:00" +WTIME_RUN_MAXT="00:40:00" +WTIME_RUN_ANAL="00:30:00" +WTIME_RUN_GSIDIAG="00:15:00" +WTIME_RUN_POSTANAL="00:30:00" +WTIME_RUN_ENKF="01:00:00" +WTIME_RUN_RECENTER="01:00:00" +WTIME_PROC_RADAR="00:25:00" +WTIME_PROC_LIGHTNING="00:25:00" +WTIME_PROC_BUFR="00:25:00" +WTIME_PROC_SMOKE="00:25:00" +WTIME_RUN_REF2TTEN="00:20:00" +WTIME_RUN_NONVARCLDANL="00:20:00" +WTIME_RUN_BUFRSND="00:45:00" +WTIME_SAVE_RESTART="00:15:00" +WTIME_RUN_ENSPOST="00:30:00" +WTIME_RUN_JEDIENVAR_IODA="00:30:00" +# +# Start times. +# +START_TIME_SPINUP="01:10:00" +START_TIME_PROD="02:20:00" +START_TIME_CONVENTIONAL_SPINUP="00:40:00" +START_TIME_LATE_ANALYSIS="01:40:00" +START_TIME_CONVENTIONAL="00:40:00" +START_TIME_NSSLMOSIAC="00:45:00" +START_TIME_LIGHTNINGNC="00:45:00" +START_TIME_PROCSMOKE="00:45:00" + +# +# Memory. +# +MEMO_RUN_PROCESSBUFR="20G" +MEMO_RUN_REF2TTEN="20G" +MEMO_RUN_NONVARCLDANL="20G" +MEMO_RUN_PREPSTART="24G" +MEMO_RUN_PRDGEN="24G" +MEMO_RUN_MINT="24G" +MEMO_RUN_MAXT="24G" +MEMO_RUN_JEDIENVAR_IODA="20G" +MEMO_PREP_CYC="40G" +MEMO_SAVE_RESTART="40G" +MEMO_SAVE_INPUT="40G" +MEMO_PROC_SMOKE="40G" +MEMO_SAVE_DA_OUTPUT="40G" # # Maximum number of attempts. # @@ -1251,8 +1890,48 @@ MAXTRIES_GET_EXTRN_ICS="1" MAXTRIES_GET_EXTRN_LBCS="1" MAXTRIES_MAKE_ICS="1" MAXTRIES_MAKE_LBCS="1" +MAXTRIES_RUN_PREPSTART="1" MAXTRIES_RUN_FCST="1" +MAXTRIES_ANAL_GSI="1" +MAXTRIES_POSTANAL="1" +MAXTRIES_ANAL_ENKF="1" MAXTRIES_RUN_POST="1" +MAXTRIES_RUN_PRDGEN="1" +MAXTRIES_RUN_MINT="1" +MAXTRIES_RUN_MAXT="1" +MAXTRIES_RUN_ANAL="1" +MAXTRIES_RUN_POSTANAL="1" +MAXTRIES_RECENTER="1" +MAXTRIES_PROCESS_RADARREF="1" +MAXTRIES_PROCESS_LIGHTNING="1" +MAXTRIES_PROCESS_BUFR="1" +MAXTRIES_PROCESS_SMOKE="1" +MAXTRIES_RADAR_REF2TTEN="1" +MAXTRIES_CLDANL_NONVAR="1" +MAXTRIES_SAVE_RESTART="1" +MAXTRIES_SAVE_DA_OUTPUT="1" +MAXTRIES_JEDI_ENVAR_IODA="1" +# +# +#----------------------------------------------------------------------- +# +# Set additional output grids for wgrib2 remapping, if any +# Space-separated list of strings, e.g., ( "130" "242" "clue" ) +# Default is no additional grids +# +# Current options as of 23 Apr 2021: +# "130" (CONUS 13.5 km) +# "200" (Puerto Rico 16 km) +# "221" (North America 32 km) +# "242" (Alaska 11.25 km) +# "243" (Pacific 0.4-deg) +# "clue" (NSSL/SPC 3-km CLUE grid for 2020/2021) +# "hrrr" (HRRR 3-km CONUS grid) +# "hrrre" (HRRRE 3-km CONUS grid) +# "rrfsak" (RRFS 3-km Alaska grid) +# "hrrrak" (HRRR 3-km Alaska grid) +# +ADDNL_OUTPUT_GRIDS=( ) # #----------------------------------------------------------------------- # @@ -1272,10 +1951,59 @@ MAXTRIES_RUN_POST="1" # used for post-processing. This is only used if CUSTOM_POST_CONFIG_FILE # is set to "TRUE". # +# CUSTOM_POST_PARAMS_FP: +# The full path to the custom post params file, including filename, to be +# used for post-processing. This is only used if CUSTOM_POST_CONFIG_FILE +# is set to "TRUE". +# +# POST_FULL_MODEL_NAME +# The full module name required by UPP and set in the itag file +# +# POST_SUB_MODEL_NAME +# The SUB module name required by UPP and set in the itag file +# +# TESTBED_FIELDS_FN +# The file which lists grib2 fields to be extracted to bgsfc for testbed +# Empty string means no need to generate bgsfc for testbed +# #----------------------------------------------------------------------- # USE_CUSTOM_POST_CONFIG_FILE="FALSE" CUSTOM_POST_CONFIG_FP="" +CUSTOM_POST_PARAMS_FP="" +POST_FULL_MODEL_NAME="FV3R" +POST_SUB_MODEL_NAME="NONE" +TESTBED_FIELDS_FN="" +TESTBED_FIELDS_FN2="" +SPC_FIELDS_FN="" +# +#----------------------------------------------------------------------- +# +# Set the tiles (or subdomains) for creating graphics in a Rocoto metatask. +# Do not include references to the grids that are produced in separate grib +# files (set with ADDNL_OUTPUT_GRIDS above). Those will be added in setup.sh +# +# TILE_LABELS +# A space separated list (string is fine, no need for array) of the labels +# applied to the groupings of tiles to be run as a single batch jobs. For +# example, you may label the set of tiles SE,NE,SC,NC,SW,NW as "regions", and +# the full input domain as "full" if you wanted those to run in two domains. The +# length must match the length of TILE_SETS. +# +# TILE_SETS +# A space separated list of tile groupings to plot. Space-separated sets +# indicate which ones will be grouped in a single batch job, comma sepated items +# are the tiles to be plotted in that batch job. For example: +# TILE_SETS="full SW,SC,SE NW,NC,NE" +# TILE_LABELS="full southern_regions northern_regions" +# would plot maps for the full domain in a batch job separately from the +# southern regions, using a third batch job for the northern regions. The +# space-separated list must match the length of TILE_LABELS. +# +#----------------------------------------------------------------------- +# +TILE_LABELS="full" +TILE_SETS="full" # #----------------------------------------------------------------------- # @@ -1300,10 +2028,176 @@ CUSTOM_POST_CONFIG_FP="" # (GLOBAL_VAR_DEFNS_FN), this variable appear with its leading zeros # stripped. This variable is not used if DO_ENSEMBLE is not set to "TRUE". # +# DO_ENSCONTROL: +# In ensemble mode, whether or not to run member 1 as control member +# +# DO_GSIOBSERVER: +# Decide whether or not to run GSI observer +# +# DO_ENKFUPDATE: +# Decide whether or not to run EnKF update for the ensemble members +# +# DO_ENKF_RADAR_REF: +# Decide whether or not to run Radar Reflectivity EnKF update for the ensemble members +# +# DO_ENVAR_RADAR_REF: +# Decide whether or not to run Radar Reflectivity hybrid analysis +# +# DO_ENVAR_RADAR_REF_ONCE: +# Decide whether or not to run Radar Reflectivity hybrid analysis simultaneously with other observations +# +# DO_RECENTER: +# Decide whether or not to run recenter for the ensemble members +# +# DO_SAVE_DA_OUTPUT: +# Decide whether or not to run save_da_output after the DA analysis +# +# DO_GSIDIAG_OFFLINE: +# Decide whether or not to run GSI diag generation outside of the GSI task +# +# DO_ENS_GRAPHICS: +# Flag to turn on/off ensemble graphics. Turns OFF deterministic +# graphics. +# +# DO_ENSPOST: +# Flag to turn on/off python ensemble postprocessing for WPC testbeds. +# +# DO_ENSINIT: +# Decide whether or not to do ensemble initialization by running 1 timestep ensemble +# forecast and recentering on the deterministic analysis +# +# DO_ENSFCST: +# Flag that determines whether to run ensemble free forecasts (for +# each set of specified cycles). If this is set to "TRUE", NUM_ENS_MEMBERS_FCST +# forecasts are run for each specified cycle, each with a different set of stochastic +# seed values. +# +# NUM_ENS_MEMBERS_FCST: +# The number of ensemble members to run forecast if DO_ENSFCST is set to "TRUE", +# This variable also controls the naming of the ensemble member directories. +# For example, if this is set to "8", the member directories will be named +# mem1, mem2, ..., mem8. If it is set to "08" (note the leading zero), +# the member directories will be named mem01, mem02, ..., mem08. Note, +# however, that after reading in the number of characters in this string +# (in order to determine how many leading zeros, if any, should be placed +# in the names of the member directories), the workflow generation scripts +# strip away those leading zeros. Thus, in the variable definitions file +# (GLOBAL_VAR_DEFNS_FN), this variable appear with its leading zeros +# stripped. This variable is not used if DO_ENSEMBLE is not set to "TRUE". +# +# DO_ENS_RADDA: +# It decides whether to include radiance DA in EnKF or not. Note that when one sets +# 'DO_ENS_RADDA="TRUE"', the radiance DA must be true, i.e., 'DO_RADDA="TRUE"'. This +# is because the radiance DA in EnKF relies the radiance procedures in the GSI-observer, +# which is mainly controled by DO_RADDA. #----------------------------------------------------------------------- # DO_ENSEMBLE="FALSE" NUM_ENS_MEMBERS="1" +DO_ENSFCST="FALSE" +NUM_ENS_MEMBERS_FCST="0" +DO_ENSCONTROL="FALSE" +DO_GSIOBSERVER="FALSE" +DO_ENKFUPDATE="FALSE" +DO_ENKF_RADAR_REF="FALSE" +DO_ENVAR_RADAR_REF="FALSE" +DO_ENVAR_RADAR_REF_ONCE="FALSE" +DO_RECENTER="FALSE" +DO_ENS_GRAPHICS="FALSE" +DO_ENSPOST="FALSE" +DO_ENSINIT="FALSE" +DO_SAVE_DA_OUTPUT="FALSE" +DO_GSIDIAG_OFFLINE="FALSE" +DO_ENS_RADDA="FALSE" +# +#----------------------------------------------------------------------- +# +# Set parameters associated with running data assimilation. Definitions: +# +# DO_DACYCLE: +# Flag that determines whether to run a data assimilation cycle. +# +# DO_SDDACYCLE: +# Flag that determines whether to run a SMOKE and DUST data assimilation cycle. +# +# DO_SURFACE_CYCLE: +# Flag that determines whether to continue cycle surface fields. +# +# SURFACE_CYCLE_DELAY_HRS: +# The surface cycle usually happens in cold start cycle. But there is +# a need to delay surface cycle to the warm start cycle following the +# cold start cycle. This one sets how many hours we want the surface +# cycle being delayed. +# +# DO_SOIL_ADJUST: +# Flag that determines whether to adjust soil T and Q based on +# the lowest level T/Q analysis increments. +# +# DO_UPDATE_BC: +# Flag that determines whether to update boundary conditions based on the +# analysis results +# +# DO_RADDA: +# Flag that determines whether to assimilate satellite radiance data +# +# DO_BUFRSND: +# Decide whether or not to run EMC BUFR sounding +# +# USE_RRFSE_ENS: +# Use rrfse ensemble for hybrid analysis +# +# DO_SMOKE_DUST +# Flag turn on smoke and dust for RRFS-SD +# +# USE_CLM: +# Use CLM mode in the model +#----------------------------------------------------------------------- +DO_DACYCLE="FALSE" +DO_SDDACYCLE="FALSE" +DO_SURFACE_CYCLE="FALSE" +SURFACE_CYCLE_DELAY_HRS="1" +DO_SOIL_ADJUST="FALSE" +DO_UPDATE_BC="FALSE" +DO_RADDA="FALSE" +DO_BUFRSND="FALSE" +USE_RRFSE_ENS="FALSE" +DO_SMOKE_DUST="FALSE" +USE_CLM="FALSE" +# +#----------------------------------------------------------------------- +# +# Set parameters associated with running retrospective experiments. Definitions: +# +# DO_RETRO: +# Flag turn on the retrospective experiments. +# +# DO_SPINUP: +# Flag turn on the spin-up cycle. +# +# LBCS_ICS_ONLY: +# Flag turn on the runs prepare boundary and cold start initial conditions in +# retrospective experiments. +# +# DO_POST_SPINUP: +# Flag turn on the UPP for spin-up cycle. +# +# DO_POST_PROD: +# Flag turn on the UPP for prod cycle. +# +# DO_PARALLEL_PRDGEN: +# Flag turn on parallel wgrib2 runs in prdgen . +# +# DO_SAVE_INPUT: +# Decide whether or not to save input along with saving restart files +# +DO_RETRO="FALSE" +DO_SPINUP="FALSE" +LBCS_ICS_ONLY="FALSE" +DO_POST_SPINUP="FALSE" +DO_POST_PROD="TRUE" +DO_PARALLEL_PRDGEN="FALSE" +DO_MINMAXT="FALSE" +DO_SAVE_INPUT="FALSE" # #----------------------------------------------------------------------- # @@ -1313,23 +2207,89 @@ NUM_ENS_MEMBERS="1" # #----------------------------------------------------------------------- # -DO_SHUM="false" -DO_SPPT="false" -DO_SKEB="false" +DO_SHUM="FALSE" +DO_SPPT="FALSE" +DO_SKEB="FALSE" +ISEED_SPPT="1" +ISEED_SHUM="2" +ISEED_SKEB="3" +NEW_LSCALE="TRUE" SHUM_MAG="0.006" #Variable "shum" in input.nml SHUM_LSCALE="150000" SHUM_TSCALE="21600" #Variable "shum_tau" in input.nml SHUM_INT="3600" #Variable "shumint" in input.nml -SPPT_MAG="1.0" #Variable "sppt" in input.nml +SPPT_MAG="0.7" #Variable "sppt" in input.nml +SPPT_LOGIT="TRUE" SPPT_LSCALE="150000" SPPT_TSCALE="21600" #Variable "sppt_tau" in input.nml SPPT_INT="3600" #Variable "spptint" in input.nml +SPPT_SFCLIMIT="TRUE" SKEB_MAG="0.5" #Variable "skeb" in input.nml SKEB_LSCALE="150000" SKEB_TSCALE="21600" #Variable "skeb_tau" in input.nml SKEB_INT="3600" #Variable "skebint" in input.nml +SKEBNORM="1" SKEB_VDOF="10" -USE_ZMTNBLCK="false" +USE_ZMTNBLCK="FALSE" +# +#----------------------------------------------------------------------- +# +# Set default SPP stochastic physics options. Each SPP option is an array, +# applicable (in order) to the scheme/parameter listed in SPP_VAR_LIST. +# Enter each value of the array in config.sh as shown below without commas +# or single quotes (e.g., SPP_VAR_LIST=( "pbl" "sfc" "mp" "rad" "gwd" ). +# Both commas and single quotes will be added by Jinja when creating the +# namelist. +# +# Note that SPP is currently only available for specific physics schemes +# used in the RAP/HRRR physics suite. Users need to be aware of which SDF +# is chosen when turning this option on. +# +# Patterns evolve and are applied at each time step. +# +#----------------------------------------------------------------------- +# +DO_SPP="FALSE" +SPP_VAR_LIST=( "pbl" "sfc" "mp" "rad" "gwd" ) +SPP_MAG_LIST=( "0.2" "0.2" "0.75" "0.2" "0.2" ) #Variable "spp_prt_list" in input.nml +SPP_LSCALE=( "150000.0" "150000.0" "150000.0" "150000.0" "150000.0" ) +SPP_TSCALE=( "21600.0" "21600.0" "21600.0" "21600.0" "21600.0" ) #Variable "spp_tau" in input.nml +SPP_SIGTOP1=( "0.1" "0.1" "0.1" "0.1" "0.1") +SPP_SIGTOP2=( "0.025" "0.025" "0.025" "0.025" "0.025" ) +SPP_STDDEV_CUTOFF=( "1.5" "1.5" "2.5" "1.5" "1.5" ) +ISEED_SPP=( "4" "5" "6" "7" "8" ) +# +#----------------------------------------------------------------------- +# +# Turn on SPP in Noah or RUC LSM (support for Noah MP is in progress). +# Please be aware of the SDF that you choose if you wish to turn on LSM +# SPP. +# +# SPP in LSM schemes is handled in the &nam_sfcperts namelist block +# instead of in &nam_sppperts, where all other SPP is implemented. +# +# The default perturbation frequency is determined by the fhcyc namelist +# entry. Since that parameter is set to zero in the SRW App, use +# LSM_SPP_EACH_STEP to perturb every time step. +# +# Perturbations to soil moisture content (SMC) are only applied at the +# first time step. +# +# LSM perturbations include SMC - soil moisture content (volume fraction), +# VGF - vegetation fraction, ALB - albedo, SAL - salinity, +# EMI - emissivity, ZOL - surface roughness (cm), and STC - soil temperature. +# +# Only five perturbations at a time can be applied currently, but all seven +# are shown below. In addition, only one unique iseed value is allowed +# at the moment, and is used for each pattern. +# +DO_LSM_SPP="FALSE" #If true, sets lndp_type=2 +LSM_SPP_TSCALE=( "21600" "21600" "21600" "21600" "21600" ) +LSM_SPP_LSCALE=( "150000" "150000" "150000" "150000" "150000" ) +ISEED_LSM_SPP=( "9" ) +LSM_SPP_VAR_LIST=( "smc" "vgf" "alb" "sal" "emi" "zol" "stc" ) +LSM_SPP_MAG_LIST=( "0.2" "0.001" "0.001" "0.001" "0.001" "0.001" "0.2" ) +LSM_SPP_EACH_STEP="TRUE" #Sets lndp_each_step=.true. # #----------------------------------------------------------------------- # @@ -1342,6 +2302,15 @@ USE_ZMTNBLCK="false" HALO_BLEND=10 # #----------------------------------------------------------------------- +# +# PRINT_DIFF_PGR: +# Option to turn on/off pressure tendency diagnostic +# +#----------------------------------------------------------------------- +# +PRINT_DIFF_PGR=FALSE +# +#----------------------------------------------------------------------- # # USE_FVCOM: # Flag set to update surface conditions in FV3-LAM with fields generated @@ -1351,6 +2320,9 @@ HALO_BLEND=10 # FV3-LAM grid. This flag will be used in make_ics to modify sfc_data.nc # after chgres_cube is run by running the routine process_FVCOM.exe # +# PREP_FVCOM: +# Flag set to interpolate FVCOM data to the desired FV3-LAM grid. +# # FVCOM_DIR: # User defined directory where FVCOM data already interpolated to FV3-LAM # grid is located. File name in this path should be "fvcom.nc" to allow @@ -1363,6 +2335,7 @@ HALO_BLEND=10 #------------------------------------------------------------------------ # USE_FVCOM="FALSE" +PREP_FVCOM="FALSE" FVCOM_DIR="/user/defined/dir/to/fvcom/data" FVCOM_FILE="fvcom.nc" # @@ -1394,4 +2367,70 @@ COMPILER="intel" #----------------------------------------------------------------------- # GWD_HRRRsuite_BASEDIR="" +# +#----------------------------------------------------------------------- +# +# Parameters for JEDI options +# DO_JEDI_ENVAR_IODA: +# Flag turn on the JEDI-IODA converters for EnVAR. It requires GSI +# to produce NetCDF diag files +#----------------------------------------------------------------------- +# +DO_JEDI_ENVAR_IODA="FALSE" +# +#----------------------------------------------------------------------- +# +# Parameters for analysis options +# DO_NONVAR_CLDANAL: +# Flag turn on the non-var cloud analysis. +# DO_REFL2TTEN: +# Flag turn on the radar reflectivity to temperature tendenecy. +# DO_NLDN_LGHT +# Flag turn on processing NLDN NetCDF lightning data +# +#----------------------------------------------------------------------- +# +DO_NONVAR_CLDANAL="FALSE" +DO_REFL2TTEN="FALSE" +DO_NLDN_LGHT="FALSE" +DO_SMOKE_DUST="FALSE" +# +#----------------------------------------------------------------------- +# +# Parameters for observation preprocess. +# RADARREFL_MINS: +# minute from the hour that the NSSL mosaic files will be searched for +# data preprocess +# RADARREFL_TIMELEVEL: +# time level (minute) from the hour that the NSSL mosaic files will be generated +# +#----------------------------------------------------------------------- +# +RADARREFL_MINS=(0 1 2 3) +RADARREFL_TIMELEVEL=(0) + + +# +#----------------------------------------------------------------------- +# +# Parameters for cleaning the real-time and retrospective runs. +# CLEAN_OLDPROD_HRS: +# the product under com directory from cycles older than (current cycle - this hour) will be cleaned +# CLEAN_OLDLOG_HRS +# the log files under com directory from cycles older than (current cycle - this hour) will be cleaned +# CLEAN_OLDRUN_HRS +# the run directory under tmpnwprd directory from cycles older than (current cycle - this hour) will be cleaned +# CLEAN_OLDFCST_HRS +# the fv3lam forecast netcdf files forecast run directory from cycles older than (current cycle - this hour) will be cleaned +# CLEAN_OLDSTMP_HRS +# the postprd GRIB-2 files from cycles older than (current cycle - this hour) will be cleaned +#----------------------------------------------------------------------- +# + +CLEAN_OLDPROD_HRS="72" +CLEAN_OLDLOG_HRS="72" +CLEAN_OLDRUN_HRS="48" +CLEAN_OLDFCST_HRS="24" +CLEAN_OLDSTMPPOST_HRS="24" +CLEAN_NWGES_HRS="72" diff --git a/ush/create_diag_table_files.sh b/ush/create_diag_table_file.sh similarity index 80% rename from ush/create_diag_table_files.sh rename to ush/create_diag_table_file.sh index cff8c0424..5a5237d56 100644 --- a/ush/create_diag_table_files.sh +++ b/ush/create_diag_table_file.sh @@ -6,7 +6,7 @@ # #----------------------------------------------------------------------- # -function create_diag_table_files() { +function create_diag_table_file() { # #----------------------------------------------------------------------- # @@ -45,7 +45,9 @@ function create_diag_table_files() { # #----------------------------------------------------------------------- # - local valid_args=() + local valid_args=( +run_dir \ +) process_args valid_args "$@" # #----------------------------------------------------------------------- @@ -65,8 +67,6 @@ function create_diag_table_files() { #----------------------------------------------------------------------- # local i \ - cdate \ - cycle_dir \ diag_table_fp \ settings # @@ -77,39 +77,35 @@ function create_diag_table_files() { #----------------------------------------------------------------------- # print_info_msg "$VERBOSE" " -Creating a diagnostics table file (\"${DIAG_TABLE_FN}\") within each cycle -directory..." +Creating a diagnostics table file (\"${DIAG_TABLE_FN}\") in the specified run +directory (run_dir): + run_dir = \"${run_dir}\"" - for (( i=0; i<${NUM_CYCLES}; i++ )); do - - cdate="${ALL_CDATES[$i]}" - cycle_dir="${CYCLE_BASEDIR}/$cdate" - - diag_table_fp="${cycle_dir}/${DIAG_TABLE_FN}" - print_info_msg "$VERBOSE" " +# Copy template diag_table file from the templates directory to the +# run directory. + diag_table_fp="${run_dir}/${DIAG_TABLE_FN}" + print_info_msg "$VERBOSE" " Using the template diagnostics table file: - diag_table_tmpl_fp = ${DIAG_TABLE_TMPL_FP} + diag_table_tmpl_fp = ${DIAG_TABLE_TMPL_FP} to create: - diag_table_fp = \"${diag_table_fp}\"" + diag_table_fp = \"${diag_table_fp}\"" - settings=" - starttime: !datetime ${ALL_CDATES[$i]} + settings=" + starttime: !datetime ${CDATE} cres: ${CRES} " - $USHDIR/fill_jinja_template.py -q -u "${settings}" -t "${DIAG_TABLE_TMPL_FP}" -o "${diag_table_fp}" || \ - print_err_msg_exit " + $USHDIR/fill_jinja_template.py -q -u "${settings}" -t "${DIAG_TABLE_TMPL_FP}" -o "${diag_table_fp}" || \ + print_err_msg_exit " !!!!!!!!!!!!!!!!! fill_jinja_template.py failed! !!!!!!!!!!!!!!!!! " - - done # #----------------------------------------------------------------------- # diff --git a/ush/create_model_configure_file.sh b/ush/create_model_configure_file.sh index f64e96c07..7273427e5 100644 --- a/ush/create_model_configure_file.sh +++ b/ush/create_model_configure_file.sh @@ -47,8 +47,11 @@ function create_model_configure_file() { # local valid_args=( cdate \ +cycle_type \ +cycle_subtype \ run_dir \ nthreads \ +restart_hrs \ ) process_args valid_args "$@" # @@ -100,6 +103,37 @@ run directory (run_dir): dot_quilting_dot="."${QUILTING,,}"." dot_print_esmf_dot="."${PRINT_ESMF,,}"." # +# decide the forecast length for this cycle +# + + num_fhrs=( "${#FCST_LEN_HRS_CYCLES[@]}" ) + ihh=`expr ${hh} + 0` + if [ ${num_fhrs} -gt ${ihh} ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_CYCLES[${ihh}]} + else + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS} + fi + print_info_msg "$VERBOSE" " The forecast length for cycle (\"${hh}\") is + ( \"${FCST_LEN_HRS_thiscycle}\") " + + if [ ${cycle_type} == "spinup" ]; then + FCST_LEN_HRS_thiscycle=${FCST_LEN_HRS_SPINUP} + if [ "${cycle_subtype}" == "ensinit" ]; then + for cyc_start in "${CYCL_HRS_SPINSTART[@]}"; do + if [ ${hh} -eq ${cyc_start} ]; then + FCST_LEN_HRS_thiscycle=$( expr ${DT_ATMOS}/3600 | bc -l ) + FCST_LEN_HRS_thiscycle=$( printf "%.5f\n" ${FCST_LEN_HRS_thiscycle} ) + NSOUT=1 + RESTART_INTERVAL=0 + print_info_msg "DT_ATMOS ${DT_ATMOS} FCST_LEN_HRS_thiscycle ${FCST_LEN_HRS_thiscycle} \ + NSOUT $NSOUT \ + RESTART_INTERVAL ${RESTART_INTERVAL} " + fi + done + fi + fi + +# #----------------------------------------------------------------------- # # Create a multiline variable that consists of a yaml-compliant string @@ -114,13 +148,19 @@ run directory (run_dir): 'start_month': $mm 'start_day': $dd 'start_hour': $hh - 'nhours_fcst': ${FCST_LEN_HRS} + 'nhours_fcst': ${FCST_LEN_HRS_thiscycle} 'dt_atmos': ${DT_ATMOS} 'atmos_nthreads': ${nthreads:-1} 'ncores_per_node': ${NCORES_PER_NODE} + 'restart_interval': ${restart_hrs} 'quilting': ${dot_quilting_dot} 'print_esmf': ${dot_print_esmf_dot} - 'output_grid': ${WRTCMP_output_grid}" + 'output_grid': ${WRTCMP_output_grid} + 'nsout': ${NSOUT} + 'nfhout': ${NFHOUT} + 'nfhmax_hf': ${NFHMAX_HF} + 'nfhout_hf': ${NFHOUT_HF} + 'output_fh': ${OUTPUT_FH}" # 'output_grid': \'${WRTCMP_output_grid}\'" # # If the write-component is to be used, then specify a set of computational diff --git a/ush/enspost_config.py b/ush/enspost_config.py new file mode 100644 index 000000000..f9388dc8a --- /dev/null +++ b/ush/enspost_config.py @@ -0,0 +1,212 @@ +# HRRR-E PYTHON GRIB GENERATION +# CONFIGURATION FILE + +## CREATE DICTIONARIES ## +grib_discipline = {} +grib_category = {} +grib_number = {} +grib_surface = {} +grib_level = {} + +################################## +# GENERAL ENSEMBLE SETTINGS # +################################## + +# number of members (9=RRFSE only, 10=include RRFS-B control member) +nm = 10 +# model resolution (km) +dx = 3 + + +################################# +# ENS MEAN/PMM/SPREAD SETTINGS # +################################# + +# parms to process +mean_parms = ['1hqpf','3hqpf','6hqpf','12hqpf','24hqpf'] +std_parms = [] +max_parms = [] +min_parms = [] +pmm_parms = ['1hqpf','3hqpf','6hqpf','12hqpf','24hqpf'] +lpmm_parms = ['1hqpf','3hqpf','6hqpf','12hqpf','24hqpf'] + +# probability-matched mean settings +pmm_smooth = 6 # km width of Gaussian smoother +lpmm_smooth = 6 # km width of Gaussian smoother +lpmm_patch = 6 # patch size in grid points +lpmm_neighborhood = 30 # overlap region in grid points + +# create an output grid every X hours +ens_proc_intervals = {} +ens_proc_intervals[1] = 1 +ens_proc_intervals[3] = 1 +ens_proc_intervals[6] = 1 +ens_proc_intervals[12] = 6 +ens_proc_intervals[24] = 6 + +################### +# GRIB TABLES # +################### + +grib_discipline['qpf'] = 0 +grib_category['qpf'] = 1 +grib_number['qpf'] = 8 +grib_surface['qpf'] = 'sfc' +grib_level['qpf'] = 0 + +grib_discipline['ref1'] = 0 +grib_category['ref1'] = 16 +grib_number['ref1'] = 195 +grib_surface['ref1'] = 'sfc' +grib_level['ref1'] = 1000 + + +################# +# PQPF SETTINGS # +################# + +# QPF accumulation intervals (hours) +pqpf_acc_intervals = [1,3,6,12,24] +# create an output grid every X hours +pqpf_proc_intervals = {} +pqpf_proc_intervals[1] = 1 +pqpf_proc_intervals[3] = 1 +pqpf_proc_intervals[6] = 1 +pqpf_proc_intervals[12] = 6 +pqpf_proc_intervals[24] = 6 +# PQPF thresholds (inches) for each accumulation interval +pqpf_thresh = {} +pqpf_thresh[1] = [0.5,1.0,2.0] +pqpf_thresh[3] = [0.5,1.0,2.0,3.0] +pqpf_thresh[6] = [1.0,2.0,3.0,5.0] +pqpf_thresh[12] = [1.0,2.0,3.0,5.0] +pqpf_thresh[24] = [1.0,2.0,3.0,5.0] +# product types +#pqpf_types = ['point'] +pqpf_types = ['neighbor'] +# neighborhood size (km) +pqpf_neighborhood = 40 +# gaussian smoother widths (km) +pqpf_smooth = 25 +pqpf_neighbor_smooth = 25 + +# Flash flood guidance accumulation intervals +ffg_acc_intervals = [1,3,6] +# create an output grid every X hours +ffg_proc_intervals = {} +ffg_proc_intervals[1] = 1 +ffg_proc_intervals[3] = 3 +ffg_proc_intervals[6] = 3 +# Probability of exceeding flash flood guidance by X inches +ffg_thresh = [0] +# product types +ffg_types = ['neighbor'] +#ffg_types = ['point','neighbor'] +# gaussian smoother widths (km) +ffg_smooth = 25 +ffg_neighbor_smooth = 25 +# neighborhood size (km) +ffg_neighborhood = 40 + +# Atlas-14 accumulation intervals +ari_acc_intervals = [6,24] +# create an output grid every X hours +ari_proc_intervals = {} +ari_proc_intervals[6] = 3 +ari_proc_intervals[24] = 3 +# Probability of exceeding Atlas-14 recurrence intervals +ari_years = {} +ari_years[6] = [2,5,10,100] +ari_years[24] = [2,5,10,100] +# product types +ari_types = ['neighbor'] +#ari_types = ['point','neighbor'] +# gaussian smoother widths (km) +ari_smooth = 25 +ari_neighbor_smooth = 25 +# neighborhood size (km) +ari_neighborhood = 40 + + +###################### +# WINTER WX SETTINGS # +###################### + +# PROBABILISTIC SNOW +# snow accumulation intervals +psnow_acc_intervals = [24] +# create an output grid every X hours +psnow_proc_intervals = {} +psnow_proc_intervals[1] = 1 +psnow_proc_intervals[6] = 6 +psnow_proc_intervals[24] = 24 +# snow thresholds (inches) +psnow_thresh = {} +psnow_thresh[1] = [0.5,1.0] +psnow_thresh[6] = [1.0,3.0,6.0] +psnow_thresh[24] = [1.0,6.0,12.0] +# probability types +#psnow_types = ['neighbor'] +psnow_types = ['point'] +# neighborhood size (km) +psnow_neighborhood = 40 +# gaussian smoother width (km) +psnow_neighbor_smooth = 25 +psnow_smooth = 0 + +# PROBABILISTIC PTYPE +# create an output grid every X hours +ptype_proc_interval = 1 +# gaussian smoother width (km) +ptype_smooth = 25 +# precipitation rate threshold (in/h) +#prate_thresh = 0.01 +prate_thresh = -0.0001 + +# PROBABILISTIC REFLECTIVITY +# create an output grid every X hours +ref_proc_interval = 1 +# reflectivity probabilities +ref_thresh = [20] +# gaussian smoother width (km) +ref_smooth = 25 + +##################### +# AVIATION SETTINGS # +##################### + +# create an output grid every X hours +aviation_proc_interval = 1 +# aviation thresholds +echotop_thresh = [32,40] #kft +vis_thresh = [1,3,5] # mi +ceil_thresh = [500,1000,3000] # ft +flr_cat = ['lifr','ifr','mvfr','vfr'] +flr_num = {} +flr_num['lifr'] = 1 +flr_num['ifr'] = 2 +flr_num['mvfr'] = 3 +flr_num['vfr'] = 4 +flr_vis_thresh = {} +flr_vis_thresh['lifr'] = 1.0 +flr_vis_thresh['ifr'] = 3.0 +flr_vis_thresh['mvfr'] = 5.0 +flr_ceil_thresh = {} +flr_ceil_thresh['lifr'] = 500 +flr_ceil_thresh['ifr'] = 1000 +flr_ceil_thresh['mvfr'] = 3000 +icing_vlev_min = 10 +icing_vlev_max = 25 +icing_clw_thresh = 0.1 # g/kg +avn_eas_radii = [6,12,20,40,80,120] +avn_alpha = 0.1 +avn_dcrit_exp = 3 +avn_rad_smooth = 12 +avn_p_smooth = 25 +# gaussian smoother width (km) +aviation_smooth = 25 + + + + + diff --git a/ush/fix_rrfs_locations.sh b/ush/fix_rrfs_locations.sh new file mode 100755 index 000000000..31009a025 --- /dev/null +++ b/ush/fix_rrfs_locations.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# +# FIX_RRFS locaitons at different HPC platforms +# +if [[ -d /lfs/h2 ]] ; then + PLATFORM=wcoss2 + FIX_RRFS_LOCATION="/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS" +elif [[ -d /scratch1 ]] ; then + PLATFORM=hera + FIX_RRFS_LOCATION="/scratch2/BMC/rtrr/FIX_RRFS" +elif [[ -d /carddata ]] ; then + PLATFORM=s4 + FIX_RRFS_LOCATION="/to/do" +elif [[ -d /jetmon ]] ; then + PLATFORM=jet + FIX_RRFS_LOCATION="/lfs4/BMC/nrtrr/FIX_RRFS" +elif [[ -d /glade ]] ; then + PLATFORM=cheyenne + FIX_RRFS_LOCATION="/glade/p/ral/jntp/FIX_RRFS" +elif [[ -d /sw/gaea ]] ; then + PLATFORM=gaea + FIX_RRFS_LOCATION="/to/do" +elif [[ -d /work ]]; then + PLATFORM=orion + FIX_RRFS_LOCATION="/work/noaa/rtrr/FIX_RRFS" +else + PLATFORM=unknow + FIX_RRFS_LOCATION="/this/is/an/unknow/platform" +fi diff --git a/ush/generate_FV3LAM_wflow.sh b/ush/generate_FV3LAM_wflow.sh index 1d1cba527..a983946ba 100755 --- a/ush/generate_FV3LAM_wflow.sh +++ b/ush/generate_FV3LAM_wflow.sh @@ -47,8 +47,6 @@ ushdir="${scrfunc_dir}" # . $ushdir/source_util_funcs.sh . $ushdir/set_FV3nml_sfc_climo_filenames.sh -. $ushdir/set_FV3nml_stoch_params.sh -. $ushdir/create_diag_table_files.sh # #----------------------------------------------------------------------- # @@ -116,6 +114,17 @@ fi #----------------------------------------------------------------------- # { save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# check whether the .agent link is initialized +# if not, run Init.sh (otherwise, the workflow generation will fail) +#----------------------------------------------------------------------- +# +if [[ ! -L ${ushdir}/../fix/.agent || ! -e ${ushdir}/../fix/.agent ]] \ + && [ -e ${ushdir}/../Init.sh ]; then + ${ushdir}/../Init.sh +fi + # #----------------------------------------------------------------------- # @@ -164,6 +173,10 @@ settings="\ # Parameters needed by the job scheduler. # 'account': $ACCOUNT + 'service_account': ${SERVICE_ACCOUNT:-$ACCOUNT} + 'hpss_account': ${HPSS_ACCOUNT:-$SERVICE_ACCOUNT} + 'reservation': $RESERVATION + 'reservation_post': $RESERVATION_POST 'sched': $SCHED 'partition_default': ${PARTITION_DEFAULT} 'queue_default': ${QUEUE_DEFAULT} @@ -171,7 +184,19 @@ settings="\ 'queue_hpss': ${QUEUE_HPSS} 'partition_fcst': ${PARTITION_FCST} 'queue_fcst': ${QUEUE_FCST} + 'partition_graphics': ${PARTITION_GRAPHICS} + 'queue_graphics': ${QUEUE_GRAPHICS} 'machine': ${MACHINE} + 'partition_analysis': ${PARTITION_ANALYSIS} + 'queue_analysis': ${QUEUE_ANALYSIS} + 'partition_prdgen': ${PARTITION_PRDGEN} + 'queue_prdgen': ${QUEUE_PRDGEN} + 'partition_mint': ${PARTITION_MINT} + 'queue_mint': ${QUEUE_MINT} + 'partition_maxt': ${PARTITION_MAXT} + 'queue_maxt': ${QUEUE_MAXT} + 'partition_post': ${PARTITION_POST} + 'queue_post': ${QUEUE_POST} # # Workflow task names. # @@ -180,10 +205,39 @@ settings="\ 'make_sfc_climo_tn': ${MAKE_SFC_CLIMO_TN} 'get_extrn_ics_tn': ${GET_EXTRN_ICS_TN} 'get_extrn_lbcs_tn': ${GET_EXTRN_LBCS_TN} + 'get_extrn_lbcs_long_tn': ${GET_EXTRN_LBCS_LONG_TN} + 'get_gefs_lbcs_tn': ${GET_GEFS_LBCS_TN} 'make_ics_tn': ${MAKE_ICS_TN} 'make_lbcs_tn': ${MAKE_LBCS_TN} 'run_fcst_tn': ${RUN_FCST_TN} 'run_post_tn': ${RUN_POST_TN} + 'run_prdgen_tn': ${RUN_PRDGEN_TN} + 'run_mint_tn': ${RUN_MINT_TN} + 'run_maxt_tn': ${RUN_MAXT_TN} + 'anal_gsi': ${ANAL_GSI_TN} + 'anal_gsidiag': ${ANAL_GSIDIAG_TN} + 'anal_sd_gsi': ${ANAL_SD_GSI_TN} + 'post_anal': ${POSTANAL_TN} + 'observer_gsi_ensmean': ${OBSERVER_GSI_ENSMEAN_TN} + 'observer_gsi': ${OBSERVER_GSI_TN} + 'prep_start': ${PREP_START_TN} + 'prep_cyc_spinup': ${PREP_CYC_SPINUP_TN} + 'prep_cyc_prod': ${PREP_CYC_PROD_TN} + 'prep_cyc_ensmean': ${PREP_CYC_ENSMEAN_TN} + 'prep_cyc': ${PREP_CYC_TN} + 'calc_ensmean': ${CALC_ENSMEAN_TN} + 'process_radarref': ${PROCESS_RADAR_REF_TN} + 'process_lightning': ${PROCESS_LIGHTNING_TN} + 'process_bufr': ${PROCESS_BUFR_TN} + 'process_smoke': ${PROCESS_SMOKE_TN} + 'radar_refl2tten': ${RADAR_REFL2TTEN_TN} + 'cldanl_nonvar': ${CLDANL_NONVAR_TN} + 'run_bufrsnd_tn': ${RUN_BUFRSND_TN} + 'save_restart': ${SAVE_RESTART_TN} + 'save_da_output': ${SAVE_DA_OUTPUT_TN} + 'tag': ${TAG} + 'net': ${NET} + 'jedi_envar_ioda': ${JEDI_ENVAR_IODA_TN} # # Number of nodes to use for each task. # @@ -194,13 +248,38 @@ settings="\ 'nnodes_get_extrn_lbcs': ${NNODES_GET_EXTRN_LBCS} 'nnodes_make_ics': ${NNODES_MAKE_ICS} 'nnodes_make_lbcs': ${NNODES_MAKE_LBCS} + 'nnodes_run_prepstart': ${NNODES_RUN_PREPSTART} 'nnodes_run_fcst': ${NNODES_RUN_FCST} + 'nnodes_run_anal': ${NNODES_RUN_ANAL} + 'nnodes_run_gsidiag': ${NNODES_RUN_GSIDIAG} + 'nnodes_run_postanal': ${NNODES_RUN_POSTANAL} + 'nnodes_run_enkf': ${NNODES_RUN_ENKF} + 'nnodes_run_recenter': ${NNODES_RUN_RECENTER} 'nnodes_run_post': ${NNODES_RUN_POST} + 'nnodes_run_prdgen': ${NNODES_RUN_PRDGEN} + 'nnodes_run_mint': ${NNODES_RUN_MINT} + 'nnodes_run_maxt': ${NNODES_RUN_MAXT} + 'nnodes_proc_radar': ${NNODES_PROC_RADAR} + 'nnodes_proc_lightning': ${NNODES_PROC_LIGHTNING} + 'nnodes_proc_bufr': ${NNODES_PROC_BUFR} + 'nnodes_proc_smoke': ${NNODES_PROC_SMOKE} + 'nnodes_run_ref2tten': ${NNODES_RUN_REF2TTEN} + 'nnodes_run_nonvarcldanl': ${NNODES_RUN_NONVARCLDANL} + 'nnodes_run_graphics': ${NNODES_RUN_GRAPHICS} + 'nnodes_run_enspost': ${NNODES_RUN_ENSPOST} + 'nnodes_run_bufrsnd': ${NNODES_RUN_BUFRSND} + 'nnodes_save_restart': ${NNODES_SAVE_RESTART} + 'nnodes_run_jedienvar_ioda': ${NNODES_RUN_JEDIENVAR_IODA} # # Number of cores used for a task # 'ncores_run_fcst': ${PE_MEMBER01} - 'native_run_fcst': --cpus-per-task 4 --exclusive + 'native_run_fcst': ${NATIVE_RUN_FCST} + 'ncores_run_anal': ${NCORES_RUN_ANAL} + 'ncores_run_observer': ${NCORES_RUN_OBSERVER} + 'native_run_anal': ${NATIVE_RUN_ANAL} + 'ncores_run_enkf': ${NCORES_RUN_ENKF} + 'native_run_enkf': ${NATIVE_RUN_ENKF} # # Number of logical processes per node for each task. If running without # threading, this is equal to the number of MPI processes per node. @@ -212,8 +291,35 @@ settings="\ 'ppn_get_extrn_lbcs': ${PPN_GET_EXTRN_LBCS} 'ppn_make_ics': ${PPN_MAKE_ICS} 'ppn_make_lbcs': ${PPN_MAKE_LBCS} + 'ppn_run_prepstart': ${PPN_RUN_PREPSTART} 'ppn_run_fcst': ${PPN_RUN_FCST} + 'ppn_run_anal': ${PPN_RUN_ANAL} + 'ppn_run_gsidiag': ${PPN_RUN_GSIDIAG} + 'ppn_run_postanal': ${PPN_RUN_POSTANAL} + 'ppn_run_enkf': ${PPN_RUN_ENKF} + 'ppn_run_recenter': ${PPN_RUN_RECENTER} 'ppn_run_post': ${PPN_RUN_POST} + 'ppn_run_prdgen': ${PPN_RUN_PRDGEN} + 'ppn_run_mint': ${PPN_RUN_MINT} + 'ppn_run_maxt': ${PPN_RUN_MAXT} + 'ppn_proc_radar': ${PPN_PROC_RADAR} + 'ppn_proc_lightning': ${PPN_PROC_LIGHTNING} + 'ppn_proc_bufr': ${PPN_PROC_BUFR} + 'ppn_proc_smoke': ${PPN_PROC_SMOKE} + 'ppn_run_ref2tten': ${PPN_RUN_REF2TTEN} + 'ppn_run_nonvarcldanl': ${PPN_RUN_NONVARCLDANL} + 'ppn_run_graphics': ${PPN_RUN_GRAPHICS} + 'ppn_run_enspost': ${PPN_RUN_ENSPOST} + 'ppn_run_bufrsnd': ${PPN_RUN_BUFRSND} + 'ppn_save_restart': ${PPN_SAVE_RESTART} + 'ppn_run_jedienvar_ioda': ${PPN_RUN_JEDIENVAR_IODA} +# + 'tpp_make_ics': ${TPP_MAKE_ICS} + 'tpp_make_lbcs': ${TPP_MAKE_LBCS} + 'tpp_run_anal': ${TPP_RUN_ANAL} + 'tpp_run_enkf': ${TPP_RUN_ENKF} + 'tpp_run_fcst': ${TPP_RUN_FCST} + 'tpp_run_post': ${TPP_RUN_POST} # # Maximum wallclock time for each task. # @@ -224,8 +330,57 @@ settings="\ 'wtime_get_extrn_lbcs': ${WTIME_GET_EXTRN_LBCS} 'wtime_make_ics': ${WTIME_MAKE_ICS} 'wtime_make_lbcs': ${WTIME_MAKE_LBCS} + 'wtime_run_prepstart': ${WTIME_RUN_PREPSTART} + 'wtime_run_prepstart_ensmean': ${WTIME_RUN_PREPSTART_ENSMEAN} 'wtime_run_fcst': ${WTIME_RUN_FCST} + 'wtime_run_fcst_long': ${WTIME_RUN_FCST_LONG} + 'wtime_run_fcst_spinup': ${WTIME_RUN_FCST_SPINUP} + 'wtime_run_anal': ${WTIME_RUN_ANAL} + 'wtime_run_gsidiag': ${WTIME_RUN_GSIDIAG} + 'wtime_run_postanal': ${WTIME_RUN_POSTANAL} + 'wtime_run_enkf': ${WTIME_RUN_ENKF} + 'wtime_run_recenter': ${WTIME_RUN_RECENTER} 'wtime_run_post': ${WTIME_RUN_POST} + 'wtime_run_enspost': ${WTIME_RUN_ENSPOST} + 'wtime_run_prdgen': ${WTIME_RUN_PRDGEN} + 'wtime_run_mint': ${WTIME_RUN_MINT} + 'wtime_run_maxt': ${WTIME_RUN_MAXT} + 'wtime_proc_radar': ${WTIME_PROC_RADAR} + 'wtime_proc_lightning': ${WTIME_PROC_LIGHTNING} + 'wtime_proc_bufr': ${WTIME_PROC_BUFR} + 'wtime_proc_smoke': ${WTIME_PROC_SMOKE} + 'wtime_run_ref2tten': ${WTIME_RUN_REF2TTEN} + 'wtime_run_nonvarcldanl': ${WTIME_RUN_NONVARCLDANL} + 'wtime_run_bufrsnd': ${WTIME_RUN_BUFRSND} + 'wtime_save_restart': ${WTIME_SAVE_RESTART} + 'wtime_run_jedienvar_ioda': ${WTIME_RUN_JEDIENVAR_IODA} +# +# start time for each task. +# + 'start_time_spinup': ${START_TIME_SPINUP} + 'start_time_prod': ${START_TIME_PROD} + 'start_time_conventional_spinup': ${START_TIME_CONVENTIONAL_SPINUP} + 'start_time_late_analysis': ${START_TIME_LATE_ANALYSIS} + 'start_time_conventional': ${START_TIME_CONVENTIONAL} + 'start_time_nsslmosiac': ${START_TIME_NSSLMOSIAC} + 'start_time_lightningnc': ${START_TIME_LIGHTNINGNC} + 'start_time_procsmoke': ${START_TIME_PROCSMOKE} +# +# Maximum memory for each task. +# + 'memo_run_processbufr': ${MEMO_RUN_PROCESSBUFR} + 'memo_run_ref2tten': ${MEMO_RUN_REF2TTEN} + 'memo_run_nonvarcldanl': ${MEMO_RUN_NONVARCLDANL} + 'memo_run_prepstart': ${MEMO_RUN_PREPSTART} + 'memo_run_prdgen': ${MEMO_RUN_PRDGEN} + 'memo_run_mint': ${MEMO_RUN_MINT} + 'memo_run_maxt': ${MEMO_RUN_MAXT} + 'memo_run_jedienvar_ioda': ${MEMO_RUN_JEDIENVAR_IODA} + 'memo_prep_cyc': ${MEMO_PREP_CYC} + 'memo_save_restart': ${MEMO_SAVE_RESTART} + 'memo_save_input': ${MEMO_SAVE_INPUT} + 'memo_proc_smoke': ${MEMO_PROC_SMOKE} + 'memo_save_da_output': ${MEMO_SAVE_DA_OUTPUT} # # Maximum number of tries for each task. # @@ -236,14 +391,34 @@ settings="\ 'maxtries_get_extrn_lbcs': ${MAXTRIES_GET_EXTRN_LBCS} 'maxtries_make_ics': ${MAXTRIES_MAKE_ICS} 'maxtries_make_lbcs': ${MAXTRIES_MAKE_LBCS} + 'maxtries_run_prepstart': ${MAXTRIES_RUN_PREPSTART} 'maxtries_run_fcst': ${MAXTRIES_RUN_FCST} + 'maxtries_anal_gsi': ${MAXTRIES_ANAL_GSI} + 'maxtries_postanal': ${MAXTRIES_POSTANAL} + 'maxtries_anal_enkf': ${MAXTRIES_ANAL_ENKF} + 'maxtries_recenter': ${MAXTRIES_RECENTER} 'maxtries_run_post': ${MAXTRIES_RUN_POST} + 'maxtries_run_prdgen': ${MAXTRIES_RUN_PRDGEN} + 'maxtries_run_mint': ${MAXTRIES_RUN_MINT} + 'maxtries_run_maxt': ${MAXTRIES_RUN_MAXT} + 'maxtries_process_radarref': ${MAXTRIES_PROCESS_RADARREF} + 'maxtries_process_lightning': ${MAXTRIES_PROCESS_LIGHTNING} + 'maxtries_process_bufr': ${MAXTRIES_PROCESS_BUFR} + 'maxtries_process_smoke': ${MAXTRIES_PROCESS_SMOKE} + 'maxtries_radar_ref2tten': ${MAXTRIES_RADAR_REF2TTEN} + 'maxtries_cldanl_nonvar': ${MAXTRIES_CLDANL_NONVAR} + 'maxtries_save_restart': ${MAXTRIES_SAVE_RESTART} + 'maxtries_save_da_output': ${MAXTRIES_SAVE_DA_OUTPUT} + 'maxtries_jedi_envar_ioda': ${MAXTRIES_JEDI_ENVAR_IODA} # # Flags that specify whether to run the preprocessing tasks. # 'run_task_make_grid': ${RUN_TASK_MAKE_GRID} 'run_task_make_orog': ${RUN_TASK_MAKE_OROG} 'run_task_make_sfc_climo': ${RUN_TASK_MAKE_SFC_CLIMO} +# + 'is_rtma': ${IS_RTMA} + 'fg_rootdir': ${FG_ROOTDIR} # # Number of physical cores per node for the current machine. # @@ -254,6 +429,14 @@ settings="\ 'jobsdir': $JOBSDIR 'logdir': $LOGDIR 'cycle_basedir': ${CYCLE_BASEDIR} + 'ensctrl_cycle_basedir': ${ENSCTRL_CYCLE_BASEDIR:-} + 'nwges_basedir': ${NWGES_BASEDIR} + 'ensctrl_nwges_basedir': ${ENSCTRL_NWGES_BASEDIR} + 'ensctrl_comout_basedir': ${ENSCTRL_COMOUT_BASEDIR} + 'ensctrl_comout_dir': ${ENSCTRL_COMOUT_DIR} + 'rrfse_nwges_basedir': ${RRFSE_NWGES_BASEDIR} + 'obspath': ${OBSPATH} + 'obspath_pm': ${OBSPATH_PM} 'global_var_defns_fp': ${GLOBAL_VAR_DEFNS_FP} 'load_modules_run_task_fp': ${LOAD_MODULES_RUN_TASK_FP} # @@ -261,27 +444,130 @@ settings="\ # 'extrn_mdl_name_ics': ${EXTRN_MDL_NAME_ICS} 'extrn_mdl_name_lbcs': ${EXTRN_MDL_NAME_LBCS} + 'extrn_mdl_sysbasedir_ics': ${EXTRN_MDL_SYSBASEDIR_ICS} + 'extrn_mdl_sysbasedir_lbcs': ${EXTRN_MDL_SYSBASEDIR_LBCS} + 'extrn_mdl_ics_offset_hrs': ${EXTRN_MDL_ICS_OFFSET_HRS} + 'extrn_mdl_lbcs_offset_hrs': ${EXTRN_MDL_LBCS_OFFSET_HRS} + 'extrn_mdl_lbcs_search_offset_hrs': ${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS} + 'lbcs_search_hrs': ${LBCS_SEARCH_HRS} + 'bc_update_interval': ${LBC_SPEC_INTVL_HRS} + 'fv3gfs_file_fmt_ics': ${FV3GFS_FILE_FMT_ICS} + 'fv3gfs_file_fmt_lbcs': ${FV3GFS_FILE_FMT_LBCS} # # Parameters that determine the set of cycles to run. # 'date_first_cycl': ${DATE_FIRST_CYCL} 'date_last_cycl': ${DATE_LAST_CYCL} 'cdate_first_cycl': !datetime ${DATE_FIRST_CYCL}${CYCL_HRS[0]} + 'cdate_last_cycl': !datetime ${DATE_LAST_CYCL}${CYCL_HRS[0]} + 'cdate_first_arch': !datetime ${DATE_FIRST_CYCL}07 + 'cdate_last_arch': !datetime ${DATE_LAST_CYCL}07 'cycl_hrs': [ $( printf "\'%s\', " "${CYCL_HRS[@]}" ) ] - 'cycl_freq': !!str 24:00:00 -# -# Forecast length (same for all cycles). + 'cycl_hrs_spinstart': [ $( printf "\'%s\', " "${CYCL_HRS_SPINSTART[@]}" ) ] + 'cycl_hrs_prodstart': [ $( printf "\'%s\', " "${CYCL_HRS_PRODSTART[@]}" ) ] + 'cycl_hrs_prodstart_ens': [ $( printf "\'%s\', " "${CYCL_HRS_PRODSTART_ENS[@]}" ) ] + 'cycl_hrs_recenter': [ $( printf "\'%s\', " "${CYCL_HRS_RECENTER[@]}" ) ] + 'cycl_hrs_stoch': [ $( printf "\'%s\', " "${CYCL_HRS_STOCH[@]}" ) ] + 'cycl_hrs_hyb_fv3lam_ens': [ $( printf "\'%s\', " "${CYCL_HRS_HYB_FV3LAM_ENS[@]}" ) ] + 'restart_hrs_prod': ${RESTART_INTERVAL} + 'restart_hrs_prod_long': ${RESTART_INTERVAL_LONG} + 'cycl_freq': !!str 12:00:00 + 'at_start_cycledef': ${AT_START_CYCLEDEF} + 'initial_cycledef': ${INITIAL_CYCLEDEF} + 'boundary_cycledef': ${BOUNDARY_CYCLEDEF} + 'boundary_long_cycledef': ${BOUNDARY_LONG_CYCLEDEF} + 'spinup_cycledef': ${SPINUP_CYCLEDEF} + 'prod_cycledef': ${PROD_CYCLEDEF} + 'prodlong_cycledef': ${PRODLONG_CYCLEDEF} + 'saveda_cycledef': ${SAVEDA_CYCLEDEF} + 'recenter_cycledef': ${RECENTER_CYCLEDEF} + 'archive_cycledef': ${ARCHIVE_CYCLEDEF} + 'dt_atmos': ${DT_ATMOS} +# +# boundary, forecast, and post process length. # 'fcst_len_hrs': ${FCST_LEN_HRS} + 'fcst_len_hrs_spinup': ${FCST_LEN_HRS_SPINUP} + 'boundary_len_hrs': ${BOUNDARY_LEN_HRS} + 'boundary_long_len_hrs': ${BOUNDARY_LONG_LEN_HRS} + 'postproc_len_hrs': ${POSTPROC_LEN_HRS} + 'postproc_long_len_hrs': ${POSTPROC_LONG_LEN_HRS} + 'postproc_nsout_min': ${NSOUT_MIN} + 'postproc_nfhmax_hrs': ${NFHMAX_HF} + 'postproc_nfhout_hrs': ${NFHOUT} + 'postproc_nfhout_hf_hrs': ${NFHOUT_HF} + 'boundary_proc_group_num': ${BOUNDARY_PROC_GROUP_NUM} # # Ensemble-related parameters. # 'do_ensemble': ${DO_ENSEMBLE} + 'do_ensfcst': ${DO_ENSFCST} 'num_ens_members': ${NUM_ENS_MEMBERS} + 'num_ens_members_fcst': ${NUM_ENS_MEMBERS_FCST} 'ndigits_ensmem_names': !!str ${NDIGITS_ENSMEM_NAMES} 'ensmem_indx_name': ${ensmem_indx_name} 'uscore_ensmem_name': ${uscore_ensmem_name} 'slash_ensmem_subdir': ${slash_ensmem_subdir} + 'do_enscontrol': ${DO_ENSCONTROL} + 'do_gsiobserver': ${DO_GSIOBSERVER} + 'do_enkfupdate': ${DO_ENKFUPDATE} + 'do_enkf_radar_ref': ${DO_ENKF_RADAR_REF} + 'do_envar_radar_ref': ${DO_ENVAR_RADAR_REF} + 'do_envar_radar_ref_once': ${DO_ENVAR_RADAR_REF_ONCE} + 'do_recenter': ${DO_RECENTER} + 'do_bufrsnd': ${DO_BUFRSND} + 'do_ens_graphics': ${DO_ENS_GRAPHICS} + 'do_enspost': ${DO_ENSPOST} + 'do_ensinit': ${DO_ENSINIT} + 'do_save_da_output': ${DO_SAVE_DA_OUTPUT} + 'do_gsidiag_offline': ${DO_GSIDIAG_OFFLINE} + 'do_save_input': ${DO_SAVE_INPUT} + 'do_minmaxt': ${DO_MINMAXT} +# +# data assimilation related parameters. +# + 'do_dacycle': ${DO_DACYCLE} + 'do_sddacycle': ${DO_SDDACYCLE} + 'do_surface_cycle': ${DO_SURFACE_CYCLE} + 'da_cycle_interval_hrs': ${DA_CYCLE_INTERV} + 'do_nonvar_cldanal': ${DO_NONVAR_CLDANAL} + 'do_refl2tten': ${DO_REFL2TTEN} + 'do_spinup': ${DO_SPINUP} + 'do_post_spinup': ${DO_POST_SPINUP} + 'do_post_prod': ${DO_POST_PROD} + 'do_nldn_lght': ${DO_NLDN_LGHT} + 'regional_ensemble_option': ${regional_ensemble_option} + 'radar_ref_thinning': ${RADAR_REF_THINNING} + 'ensctrl_stmp': ${ENSCTRL_STMP} + 'use_rrfse_ens': ${USE_RRFSE_ENS} +# +# cycle start and end date +# + 'startyear': ${STARTYEAR} + 'startmonth': ${STARTMONTH} + 'startday': ${STARTDAY} + 'starthour': ${STARTHOUR} + 'endyear': ${ENDYEAR} + 'endmonth': ${ENDMONTH} + 'endday': ${ENDDAY} + 'endhour': ${ENDHOUR} +# +# JEDI related parameters (liaofan) +# + 'do_jedi_envar_ioda': ${DO_JEDI_ENVAR_IODA} +# +# smoke and dust related parameters. +# + 'do_smoke_dust': ${DO_SMOKE_DUST} +# +# graphics related parameters +# + 'tilelabels': \"${TILE_LABELS}\" + 'tilesets': \"${TILE_SETS}\" +# +# retrospective experiments +# + 'do_retro': ${DO_RETRO} " # End of "settings" variable. print_info_msg $VERBOSE " @@ -312,21 +598,7 @@ are: Namelist settings specified on command line: settings = $settings" -# -#----------------------------------------------------------------------- -# -# Create the cycle directories. -# -#----------------------------------------------------------------------- -# -print_info_msg "$VERBOSE" " -Creating the cycle directories..." -for (( i=0; i<${NUM_CYCLES}; i++ )); do - cdate="${ALL_CDATES[$i]}" - cycle_dir="${CYCLE_BASEDIR}/$cdate" - mkdir_vrfy -p "${cycle_dir}" -done # #----------------------------------------------------------------------- # @@ -418,6 +690,110 @@ fi # if [ "${RUN_ENVIR}" = "nco" ]; then + if [ "${DO_DACYCLE}" = "TRUE" ]; then +# Resolve the target directory that the FIXgsi symlink points to + ln_vrfy -fsn "$FIX_GSI" "$FIXgsi" + + path_resolved=$( readlink -m "$FIXgsi" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXgsi + RUN_ENVIR = \"${RUN_ENVIR}\" + FIXgsi = \"$FIXgsi\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi +# + +# Resolve the target directory that the FIXcrtm symlink points to + ln_vrfy -fsn "$FIX_CRTM" "$FIXcrtm" + + path_resolved=$( readlink -m "$FIXcrtm" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXcrtm + RUN_ENVIR = \"${RUN_ENVIR}\" + FIXcrtm = \"$FIXcrtm\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi + +# Resolve the target directory that the FIXuppcrtm symlink points to + ln_vrfy -fsn "$FIX_UPP_CRTM" "$FIXuppcrtm" + + path_resolved=$( readlink -m "$FIXuppcrtm" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXuppcrtm + RUN_ENVIR = \"${RUN_ENVIR}\" + FIXuppcrtm = \"$FIXuppcrtm\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi + + fi # check if DA + +# +# Resolve the target directory that the FIXsmokedust symlink points to +# + ln_vrfy -fsn "$FIX_SMOKE_DUST" "$FIXsmokedust" + + path_resolved=$( readlink -m "$FIXsmokedust" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXsmokedust + RUN_ENVIR = \"${RUN_ENVIR}\" + FIXsmokedust = \"$FIXsmokedust\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi + +if [ "${DO_BUFRSND}" = "TRUE" ]; then +# +# +# Resolve the target directory that the FIXbufrsnd symlink points to +# + ln_vrfy -fsn "$FIX_BUFRSND" "$FIXbufrsnd" + + path_resolved=$( readlink -m "$FIXbufrsnd" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXsmokedust + RUN_ENVIR = \"${RUN_ENVIR}\" + FIXsmokedust = \"$FIXbufrsnd\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi +fi + + +if [ "${DO_MINMAXT}" = "TRUE" ]; then +# +# +# Resolve the target directory that the FIXbufrsnd symlink points to +# + ln_vrfy -fsn "$MINMAX_BINS" "$FIX_MINMAXT" + + path_resolved=$( readlink -m "$FIX_MINMAXT" ) + if [ ! -d "${path_resolved}" ]; then + print_err_msg_exit "\ + Missing link to FIXsmokedust + RUN_ENVIR = \"${RUN_ENVIR}\" + FIX_MINMAXT = \"$FIX_MINMAXT\" + path_resolved = \"${path_resolved}\" + Please ensure that path_resolved is an existing directory and then rerun + the experiment generation script." + fi +fi + + +# + ln_vrfy -fsn "$FIXgsm" "$FIXam" # # Resolve the target directory that the FIXam symlink points to and check @@ -429,7 +805,7 @@ if [ "${RUN_ENVIR}" = "nco" ]; then In order to be able to generate a forecast experiment in NCO mode (i.e. when RUN_ENVIR set to \"nco\"), the path specified by FIXam after resolving all symlinks (path_resolved) must be an existing directory (but in this -case isn't): +case is not): RUN_ENVIR = \"${RUN_ENVIR}\" FIXam = \"$FIXam\" path_resolved = \"${path_resolved}\" @@ -489,6 +865,15 @@ print_info_msg "$VERBOSE" " Copying the CCPP physics suite definition XML file from its location in the forecast model directory sturcture to the experiment directory..." cp_vrfy "${CCPP_PHYS_SUITE_IN_CCPP_FP}" "${CCPP_PHYS_SUITE_FP}" + +# +# copy nems.yaml from its location in the +# clone of the FV3 code repository to the experiment directory +# +print_info_msg "$VERBOSE" " +Copying the nems.yaml from its location in +the forecast model directory sturcture to the experiment directory..." +cp_vrfy "${NEMS_YAML_IN_PARM_FP}" "${NEMS_YAML_FP}" # #----------------------------------------------------------------------- # @@ -535,10 +920,25 @@ fi # lsoil="4" if [ "${EXTRN_MDL_NAME_ICS}" = "HRRR" -o \ - "${EXTRN_MDL_NAME_ICS}" = "RAP" ] && \ + "${EXTRN_MDL_NAME_ICS}" = "RAP" -o \ + "${EXTRN_MDL_NAME_ICS}" = "HRRRDAS" ] && \ [ "${SDF_USES_RUC_LSM}" = "TRUE" ]; then lsoil="9" fi +# +# fhzero = 0.25 +# get time-max fields like UH to reset at 15-minute intervals +# +# avg_max_length=900, sec, +# for needing restart files also output at higher frequency +# or other time-max fields output at high frequency +# +avg_max_length="3600.0" +fhzero="1.0" +if [ "${NSOUT_MIN}" = "15" ]; then + avg_max_length="3600.0" + fhzero="1.0" +fi # # Create a multiline variable that consists of a yaml-compliant string # specifying the values that the namelist variables that are physics- @@ -559,6 +959,7 @@ fi # settings="\ 'atmos_model_nml': { + 'avg_max_length': ${avg_max_length}, 'blocksize': $BLOCKSIZE, 'ccpp_suite': ${CCPP_PHYS_SUITE}, } @@ -566,6 +967,8 @@ settings="\ 'target_lon': ${LON_CTR}, 'target_lat': ${LAT_CTR}, 'nrows_blend': ${HALO_BLEND}, + 'regional_bcs_from_gsi': FALSE, + 'write_restart_with_bcs': FALSE, # # Question: # For a ESGgrid type grid, what should stretch_fac be set to? This depends @@ -577,32 +980,30 @@ settings="\ 'stretch_fac': ${STRETCH_FAC}, 'npx': $npx, 'npy': $npy, + 'io_layout': [${IO_LAYOUT_X}, ${IO_LAYOUT_Y}], 'layout': [${LAYOUT_X}, ${LAYOUT_Y}], 'bc_update_interval': ${LBC_SPEC_INTVL_HRS}, } 'gfs_physics_nml': { + 'fhzero':${fhzero}, 'kice': ${kice:-null}, 'lsoil': ${lsoil:-null}, - 'do_shum': ${DO_SHUM}, - 'do_sppt': ${DO_SPPT}, - 'do_skeb': ${DO_SKEB}, - } -'nam_stochy': { - 'shum': ${SHUM_MAG}, - 'shum_lscale': ${SHUM_LSCALE}, - 'shum_tau': ${SHUM_TSCALE}, - 'shumint': ${SHUM_INT}, - 'sppt': ${SPPT_MAG}, - 'sppt_lscale': ${SPPT_LSCALE}, - 'sppt_tau': ${SPPT_TSCALE}, - 'spptint': ${SPPT_INT}, - 'skeb': ${SKEB_MAG}, - 'skeb_lscale': ${SKEB_LSCALE}, - 'skeb_tau': ${SKEB_TSCALE}, - 'skebint': ${SKEB_INT}, - 'skeb_vdof': ${SKEB_VDOF}, - 'use_zmtnblck': ${USE_ZMTNBLCK}, + 'print_diff_pgr': ${PRINT_DIFF_PGR}, + 'rrfs_sd': ${DO_SMOKE_DUST}, }" +if [ "${USE_CLM}" = "TRUE" ]; then + settings="$settings +'gfs_physics_nml': { + 'lkm': 1, + 'iopt_lake': 2, + 'clm_lake_debug': FALSE, + 'clm_debug_print': FALSE, + 'frac_ice': TRUE, + 'kice': 9, + 'min_seaice': 0.15, + 'min_lakeice': 0.15, + }" +fi # # Add to "settings" the values of those namelist variables that specify # the paths to fixed files in the FIXam directory. As above, these namelist @@ -657,13 +1058,7 @@ done # settings="$settings }" - -print_info_msg $VERBOSE " -The variable \"settings\" specifying values of the namelist variables -has been set as follows: - -settings = -$settings" +# # #----------------------------------------------------------------------- # @@ -714,15 +1109,193 @@ if [ "${RUN_TASK_MAKE_GRID}" = "FALSE" ]; then Call to function to set surface climatology file names in the FV3 namelist file failed." - if [ "${DO_ENSEMBLE}" = TRUE ]; then - set_FV3nml_stoch_params || print_err_msg_exit "\ -Call to function to set stochastic parameters in the FV3 namelist files -for the various ensemble members failed." +fi + +if [[ "${DO_DACYCLE}" = "TRUE" || "${DO_ENKFUPDATE}" = "TRUE" ]]; then + if [ "${SDF_USES_RUC_LSM}" = "TRUE" ]; then + lsoil="9" fi + lupdatebc="false" + if [ "${DO_UPDATE_BC}" = "TRUE" ]; then + lupdatebc="false" # not ready for setting this to true yet + fi + +# need to generate a namelist for da cycle + settings="\ + 'fv_core_nml': { + 'external_ic': false, + 'make_nh' : false, + 'na_init' : 0, + 'nggps_ic' : false, + 'mountain' : true, + 'regional_bcs_from_gsi': ${lupdatebc}, + 'warm_start' : true, + } + 'gfs_physics_nml': { + 'lsoil': ${lsoil:-null}, + }" +# commnet out for using current develop branch that has no radar tten code yet. +# 'gfs_physics_nml': { +# 'fh_dfi_radar': [${FH_DFI_RADAR[@]}], +# }" + + $USHDIR/set_namelist.py -q \ + -n ${FV3_NML_FP} \ + -u "$settings" \ + -o ${FV3_NML_RESTART_FP} || \ + print_err_msg_exit "\ + Call to python script set_namelist.py to generate an restart FV3 namelist file + failed. Parameters passed to this script are: + Full path to base namelist file: + FV3_NML_FP = \"${FV3_NML_FP}\" + Full path to output namelist file for DA: + FV3_NML_RESTART_FP = \"${FV3_NML_RESTART_FP}\" + Namelist settings specified on command line: + settings = + $settings" +fi +# +# Add the relevant tendency-based stochastic physics namelist variables to +# "settings" when running with SPPT, SHUM, or SKEB turned on. If running +# with SPP or LSM SPP, set the "new_lscale" variable. Otherwise only +# include an empty "nam_stochy" stanza. +# +settings="\ +'gfs_physics_nml': { + 'do_shum': ${DO_SHUM}, + 'do_sppt': ${DO_SPPT}, + 'do_skeb': ${DO_SKEB}, + 'do_spp': ${DO_SPP}, + 'n_var_spp': ${N_VAR_SPP}, + 'n_var_lndp': ${N_VAR_LNDP}, + 'lndp_type': ${LNDP_TYPE}, + 'lndp_each_step': ${LSM_SPP_EACH_STEP}, + 'fhcyc': ${FHCYC_LSM_SPP_OR_NOT}, + }" +settings="$settings +'nam_stochy': {" +if [ "${DO_SPPT}" = "TRUE" ]; then + settings="$settings + 'iseed_sppt': ${ISEED_SPPT}, + 'sppt': ${SPPT_MAG}, + 'sppt_logit': ${SPPT_LOGIT}, + 'sppt_lscale': ${SPPT_LSCALE}, + 'sppt_sfclimit': ${SPPT_SFCLIMIT}, + 'sppt_tau': ${SPPT_TSCALE}, + 'spptint': ${SPPT_INT}, + 'use_zmtnblck': ${USE_ZMTNBLCK}," +fi - create_diag_table_files || print_err_msg_exit "\ -Call to function to create a diagnostics table file under each cycle -directory failed." +if [ "${DO_SHUM}" = "TRUE" ]; then + settings="$settings + 'iseed_shum': ${ISEED_SHUM}, + 'shum': ${SHUM_MAG}, + 'shum_lscale': ${SHUM_LSCALE}, + 'shum_tau': ${SHUM_TSCALE}, + 'shumint': ${SHUM_INT}," +fi + +if [ "${DO_SKEB}" = "TRUE" ]; then + settings="$settings + 'iseed_skeb': ${ISEED_SKEB}, + 'skeb': ${SKEB_MAG}, + 'skeb_lscale': ${SKEB_LSCALE}, + 'skebnorm': ${SKEBNORM}, + 'skeb_tau': ${SKEB_TSCALE}, + 'skebint': ${SKEB_INT}, + 'skeb_vdof': ${SKEB_VDOF}," +fi + +if [ "${DO_SPP}" = "TRUE" ] || [ "${DO_LSM_SPP}" = "TRUE" ] || [ "${DO_SPPT}" = "TRUE" ] || [ "${DO_SHUM}" = "TRUE" ] || [ "${DO_SKEB}" = "TRUE" ]; then + settings="$settings + 'new_lscale': ${NEW_LSCALE}," +fi +settings="$settings + }" +# +# Add the relevant SPP namelist variables to "settings" when running with +# SPP turned on. Otherwise only include an empty "nam_sppperts" stanza. +# +settings="$settings +'nam_sppperts': {" +if [ "${DO_SPP}" = "TRUE" ]; then + settings="$settings + 'iseed_spp': [ $( printf "%s, " "${ISEED_SPP[@]}" ) ], + 'spp_lscale': [ $( printf "%s, " "${SPP_LSCALE[@]}" ) ], + 'spp_prt_list': [ $( printf "%s, " "${SPP_MAG_LIST[@]}" ) ], + 'spp_sigtop1': [ $( printf "%s, " "${SPP_SIGTOP1[@]}" ) ], + 'spp_sigtop2': [ $( printf "%s, " "${SPP_SIGTOP2[@]}" ) ], + 'spp_stddev_cutoff': [ $( printf "%s, " "${SPP_STDDEV_CUTOFF[@]}" ) ], + 'spp_tau': [ $( printf "%s, " "${SPP_TSCALE[@]}" ) ], + 'spp_var_list': [ $( printf "%s, " "${SPP_VAR_LIST[@]}" ) ]," +fi +settings="$settings + }" +# +# Add the relevant LSM SPP namelist variables to "settings" when running with +# LSM SPP turned on. +# +settings="$settings +'nam_sfcperts': {" +if [ "${DO_LSM_SPP}" = "TRUE" ]; then + settings="$settings + 'lndp_type': ${LNDP_TYPE}, + 'lndp_model_type': ${LNDP_TYPE}, + 'lndp_tau': [ $( printf "%s, " "${LSM_SPP_TSCALE[@]}" ) ], + 'lndp_lscale': [ $( printf "%s, " "${LSM_SPP_LSCALE[@]}" ) ], + 'iseed_lndp': [ $( printf "%s, " "${ISEED_LSM_SPP[@]}" ) ], + 'lndp_var_list': [ $( printf "%s, " "${LSM_SPP_VAR_LIST[@]}" ) ], + 'lndp_prt_list': [ $( printf "%s, " "${LSM_SPP_MAG_LIST[@]}" ) ]," +fi +settings="$settings + }" +print_info_msg $VERBOSE " +The variable \"settings\" specifying values of the namelist variables +has been set as follows: + +settings = +$settings" +# +#----------------------------------------------------------------------- +# +# Generate namelist files with stochastic physics if needed +# +if [ "${DO_ENSEMBLE}" = TRUE ] && ([ "${DO_SPP}" = TRUE ] || [ "${DO_SPPT}" = TRUE ] || [ "${DO_SHUM}" = TRUE ] \ + || [ "${DO_SKEB}" = TRUE ] || [ "${DO_LSM_SPP}" = TRUE ]); then + +$USHDIR/set_namelist.py -q \ + -n ${FV3_NML_FP} \ + -u "$settings" \ + -o ${FV3_NML_STOCH_FP} || \ + print_err_msg_exit "\ + Call to python script set_namelist.py to generate an FV3 namelist file with stochastics + failed. Parameters passed to this script are: + Full path to base namelist file: + FV3_NML_FP = \"${FV3_NML_FP}\" + Full path to output namelist file for stochastics: + FV3_NML_STOCH_FP = \"${FV3_NML_STOCH_FP}\" + Namelist settings specified on command line: + settings = + $settings" +# +#----------------------------------------------------------------------- +# +if [[ "${DO_DACYCLE}" = "TRUE" || "${DO_ENKFUPDATE}" = "TRUE" ]]; then +$USHDIR/set_namelist.py -q \ + -n ${FV3_NML_RESTART_FP} \ + -u "$settings" \ + -o ${FV3_NML_RESTART_STOCH_FP} || \ + print_err_msg_exit "\ + Call to python script set_namelist.py to generate an restart FV3 namelist file with stochastics + failed. Parameters passed to this script are: + Full path to base namelist file: + FV3_NML_RESTART_FP = \"${FV3_NML_RESTART_FP}\" + Full path to output namelist file for DA with stochastics: + FV3_NML_RESTART_STOCH_FP = \"${FV3_NML_RESTART_STOCH_FP}\" + Namelist settings specified on command line: + settings = + $settings" +fi fi # @@ -821,9 +1394,17 @@ edit the cron table): */3 * * * * cd $EXPTDIR && ./launch_FV3LAM_wflow.sh +NOTE: '-l' was removed from the first line of launch_FV3LAM_wflow.sh +It is suggested to add the following line to the top of crontab + +SHELL=/bin/bash -l + + Done. " # +echo -e "../fix/.agent points to " $(readlink -f ${HOMErrfs}/fix/.agent) "\n" +# # If necessary, run the NOMADS script to source external model data. # if [ "${NOMADS}" = "TRUE" ]; then @@ -857,6 +1438,7 @@ fi # set -u #set -x +[[ ! -f config.sh ]] && echo "config.sh not found!" && exit 1 # #----------------------------------------------------------------------- # diff --git a/ush/get_extrn_mdl_file_dir_info.sh b/ush/get_extrn_mdl_file_dir_info.sh index b241dad80..674f70388 100755 --- a/ush/get_extrn_mdl_file_dir_info.sh +++ b/ush/get_extrn_mdl_file_dir_info.sh @@ -27,7 +27,7 @@ function get_extrn_mdl_file_dir_info() { # #----------------------------------------------------------------------- # - { save_shell_opts; set -u +x; } > /dev/null 2>&1 + { save_shell_opts; set -u -x; } > /dev/null 2>&1 # #----------------------------------------------------------------------- # @@ -60,13 +60,19 @@ function get_extrn_mdl_file_dir_info() { local valid_args=( \ "extrn_mdl_name" \ "anl_or_fcst" \ + "retro_or_realtime" \ "cdate_FV3LAM" \ + "lbs_spec_intvl_hrs" \ + "boundary_len_hrs" \ "time_offset_hrs" \ + "varname_extrn_mdl_memhead" \ "varname_extrn_mdl_cdate" \ "varname_extrn_mdl_lbc_spec_fhrs" \ "varname_extrn_mdl_fns_on_disk" \ + "varname_extrn_mdl_fns_on_disk2" \ "varname_extrn_mdl_fns_in_arcv" \ "varname_extrn_mdl_sysdir" \ + "varname_extrn_mdl_sysdir2" \ "varname_extrn_mdl_arcv_fmt" \ "varname_extrn_mdl_arcv_fns" \ "varname_extrn_mdl_arcv_fps" \ @@ -92,7 +98,7 @@ function get_extrn_mdl_file_dir_info() { # if [ 0 = 1 ]; then - if [ "$#" -ne "13" ]; then + if [ "$#" -ne "14" ]; then print_err_msg_exit " Incorrect number of arguments specified: @@ -105,7 +111,10 @@ Usage: ${func_name} \ extrn_mdl_name \ anl_or_fcst \ + retro_or_realtime \ cdate_FV3LAM \ + lbs_spec_intvl_hrs \ + boundary_len_hrs \ time_offset_hrs \ varname_extrn_mdl_cdate \ varname_extrn_mdl_lbc_spec_fhrs \ @@ -203,8 +212,8 @@ fi local yyyy mm dd hh mn yyyymmdd \ lbc_spec_fhrs i num_fhrs \ yy ddd fcst_hhh fcst_hh fcst_mn \ - prefix suffix fns fns_on_disk fns_in_arcv \ - sysbasedir sysdir \ + prefix suffix fns fns_on_disk fns_on_disk2 fns_in_arcv \ + sysbasedir sysdir sysdir2 \ arcv_dir arcv_fmt arcv_fns arcv_fps arcvrel_dir # #----------------------------------------------------------------------- @@ -266,9 +275,18 @@ fi # lbc_spec_fhrs=( "" ) - if [ "${anl_or_fcst}" = "FCST" ]; then + if [ "${anl_or_fcst}" = "ANL" ]; then + ic_spec_fhrs=$(( 0 + time_offset_hrs )) + elif [ "${anl_or_fcst}" = "FCST" ]; then + +# offset is to go back to a previous cycle (for example 3-h) and +# use the forecast (3-h) from that cycle valid at this cycle. +# Here calculates the forecast and it is adding. + + lbc_spec_fcst_hrs=($( seq 0 ${lbs_spec_intvl_hrs} \ + ${boundary_len_hrs} )) - lbc_spec_fhrs=( "${LBC_SPEC_FCST_HRS[@]}" ) + lbc_spec_fhrs=( "${lbc_spec_fcst_hrs[@]}" ) # # Add the temporal offset specified in time_offset_hrs (assumed to be in # units of hours) to the the array of LBC update forecast hours to make @@ -282,6 +300,7 @@ fi done fi + # #----------------------------------------------------------------------- # @@ -290,10 +309,6 @@ fi # #----------------------------------------------------------------------- # - if [ "${extrn_mdl_name}" = "RAP" ] || \ - [ "${extrn_mdl_name}" = "HRRR" ] || \ - [ "${extrn_mdl_name}" = "NAM" ] || \ - [ "${extrn_mdl_name}" = "FV3GFS" -a "${MACHINE}" = "JET" ]; then # # Get the Julian day-of-year of the starting date and time of the exter- # nal model forecast. @@ -305,7 +320,6 @@ fi # yy=${yyyy:2:4} - fi # #----------------------------------------------------------------------- # @@ -316,10 +330,15 @@ fi # if [ "${anl_or_fcst}" = "ANL" ]; then fv3gfs_file_fmt="${FV3GFS_FILE_FMT_ICS}" + gefs_file_fmt="grib2" elif [ "${anl_or_fcst}" = "FCST" ]; then fv3gfs_file_fmt="${FV3GFS_FILE_FMT_LBCS}" + gefs_file_fmt="grib2" fi + fns_on_disk2=( "" ) + fns_in_arcv=( "" ) + case "${anl_or_fcst}" in # #----------------------------------------------------------------------- @@ -330,7 +349,7 @@ fi # "ANL") - fcst_hh="00" + fcst_hh=$( printf "%02d" "${ic_spec_fhrs}" ) fcst_mn="00" case "${extrn_mdl_name}" in @@ -354,7 +373,7 @@ fi fns=( "${fns[@]/%/$suffix}" ) # Set names of external files if searching on disk. - if [ "${MACHINE}" = "JET" ]; then + if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "HERA" ]; then prefix="${yy}${ddd}${hh}00.gfs.t${hh}z." else prefix="gfs.t${hh}z." @@ -373,38 +392,72 @@ fi # are not in the .anl file, so switch to the former. # fns=( "gfs.t${hh}z.pgrb2.0p25.anl" ) # Get only 0.25 degree files for now. # fns=( "gfs.t${hh}z.pgrb2.0p25.f000" ) # Get only 0.25 degree files for now. - fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f000" ) # Get only 0.25 degree files for now. - fns_in_arcv=( "gfs.t${hh}z.pgrb2.0p25.f000" ) # Get only 0.25 degree files for now. + if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "ORION" ]; then + fns_on_disk=( "${yy}${ddd}${hh}0${fcst_mn}0${fcst_hh}" ) + elif [ "${MACHINE}" = "HERA" ] ; then + #fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" ) + fns_on_disk=( "${yy}${ddd}${hh}0${fcst_mn}0${fcst_hh}" ) + else + fns_on_disk=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" "gfs.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + fi + if [ "${MACHINE}" = "WCOSS2" ] && [ "${retro_or_realtime}" = "RETRO" ]; then + fns_on_disk=( "${yy}${ddd}${hh}0${fcst_mn}0${fcst_hh}" ) + fi + fns_in_arcv=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" ) # Get only 0.25 degree files for now. + + elif [ "${fv3gfs_file_fmt}" = "netcdf" ]; then + fns_on_disk=( "gfs.t${hh}z.atmf0${fcst_hh}.nc" "gfs.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + fns_in_arcv=( "gfs.t${hh}z.pgrb2.0p25.f0${fcst_hh}" ) # Get only 0.25 degree files for now. fi ;; - "RAP") -# -# Note that this is GSL RAPX data, not operational NCEP RAP data. An option for the latter -# may be added in the future. -# - if [ "${MACHINE}" = "JET" ]; then - fns_on_disk=( "wrfnat_130_${fcst_hh}.grib2" ) - else - fns_on_disk=( "${yy}${ddd}${hh}${mn}${fcst_hh}${fcst_mn}" ) + "GDASENKF") + if [ "${MACHINE}" = "HERA" ] ; then + fns_on_disk=( "gdas.t${hh}z.atmf0${fcst_hh}.nc" "gdas.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf0${fcst_hh}.nc" "gdas.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + elif [ "${MACHINE}" = "JET" ] ; then + fns_on_disk=( "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.atmf0${fcst_hh}.${GDAS_MEM_NAME}.nc" "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.sfcf0${fcst_hh}.${GDAS_MEM_NAME}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf0${fcst_hh}.nc" "gdas.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + elif [ "${MACHINE}" = "ORION" ] ; then + fns_on_disk=( "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.atmf0${fcst_hh}.${GDAS_MEM_NAME}.nc" "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.sfcf0${fcst_hh}.${GDAS_MEM_NAME}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf0${fcst_hh}.nc" "gdas.t${hh}z.sfcf0${fcst_hh}.nc") # use netcdf + fi + ;; + + "GEFS") + fcst_hh=( $( printf "%02d " "${time_offset_hrs}" ) ) + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + prefix2="" + if [ "${MACHINE}" = "WCOSS2" ] ; then + prefix="${varname_extrn_mdl_memhead}"".t${hh}z.pgrb2b.0p50.f0" + prefix2="${varname_extrn_mdl_memhead}"".t${hh}z.pgrb2a.0p50.f0" + if [ "${EXTRN_MDL_SAVETYPE}" = "GSL" ] ; then + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + prefix2="" + fi fi + echo ${varname_extrn_mdl_memhead} + fns_on_disk=( "${fcst_hh/#/$prefix}" ) + fns_on_disk2=( "${fcst_hh/#/$prefix2}" ) + fns_in_arcv=( "${fcst_hh/#/$prefix}" ) + ;; + + "RAP") + fns_on_disk=( "${yy}${ddd}${hh}${mn}${fcst_mn}${fcst_hh}" ) fns_in_arcv=( "${yy}${ddd}${hh}${mn}${fcst_hh}${fcst_mn}" ) ;; "HRRR") -# -# Note that this is GSL HRRRX data, not operational NCEP HRRR data. An option for the latter -# may be added in the future. -# - if [ "${MACHINE}" = "JET" ]; then - fns_on_disk=( "wrfnat_hrconus_${fcst_hh}.grib2" ) - else - fns_on_disk=( "${yy}${ddd}${hh}${mn}${fcst_hh}${fcst_mn}" ) - fi + fns_on_disk=( "${yy}${ddd}${hh}${mn}${fcst_mn}${fcst_hh}" ) fns_in_arcv=( "${yy}${ddd}${hh}${mn}${fcst_hh}${fcst_mn}" ) ;; + "HRRRDAS") + fns_on_disk=( "wrfnat${WRF_MEM_NAME}_00.grib2" ) + fns_in_arcv=( "wrfnat${WRF_MEM_NAME}_00.grib2" ) + ;; + "NAM") fns=( "" ) prefix="nam.t${hh}z.bgrdsfi${hh}" @@ -454,7 +507,7 @@ and analysis or forecast (anl_or_fcst): suffix=".nemsio" fns=( "${fcst_hhh[@]/%/$suffix}" ) - if [ "${MACHINE}" = "JET" ]; then + if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "HERA" ]; then prefix="${yy}${ddd}${hh}00.gfs.t${hh}z.atmf" else prefix="gfs.t${hh}z.atmf" @@ -467,11 +520,58 @@ and analysis or forecast (anl_or_fcst): elif [ "${fv3gfs_file_fmt}" = "grib2" ]; then fcst_hhh=( $( printf "%03d " "${lbc_spec_fhrs[@]}" ) ) - prefix="gfs.t${hh}z.pgrb2.0p25.f" - fns_on_disk=( "${fcst_hhh[@]/#/$prefix}" ) - fns_in_arcv=( "${fcst_hhh[@]/#/$prefix}" ) + if [ "${MACHINE}" = "JET" ] || [ "${MACHINE}" = "ORION" ] || [ "${MACHINE}" = "HERA" ]; then + prefix=( "${yy}${ddd}${hh}${fcst_mn}0" ) + fns_on_disk=( "${fcst_hhh[@]/#/$prefix}" ) + else + prefix="gfs.t${hh}z.pgrb2.0p25.f" + fns_on_disk=( "${fcst_hhh[@]/#/$prefix}" ) + fns_in_arcv=( "${fcst_hhh[@]/#/$prefix}" ) + fi + if [ "${MACHINE}" = "WCOSS2" ] && [ "${retro_or_realtime}" = "RETRO" ]; then + prefix=( "${yy}${ddd}${hh}${fcst_mn}0" ) + fns_on_disk=( "${fcst_hhh[@]/#/$prefix}" ) + fi + elif [ "${fv3gfs_file_fmt}" = "netcdf" ]; then + fcst_hhh=( $( printf "%03d " "${lbc_spec_fhrs[@]}" ) ) + postfix=".nc" + prefix="gfs.t${hh}z.atmf" + fns_on_disk_tmp=( "${fcst_hhh[@]/#/${prefix}}" ) + fns_on_disk=( "${fns_on_disk_tmp[@]/%/${postfix}}" ) + fns_in_arcv=( "${fcst_hhh[@]/#/${prefix}}" ) + fi + ;; + + "GDASENKF") + fcst_hhh=( $( printf "%03d " "${lbc_spec_fhrs[@]}" ) ) + if [ "${MACHINE}" = "HERA" ]; then + fns_on_disk=( "gdas.t${hh}z.atmf${fcst_hhh[@]}.nc" "gdas.t${hh}z.sfcf${fcst_hhh[@]}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf${fcst_hhh}.nc" "gdas.t${hh}z.sfcf${fcst_hhh}.nc" ) # for now. + elif [ "${MACHINE}" = "JET" ]; then + fns_on_disk=( "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.atmf0${fcst_hh}.${GDAS_MEM_NAME}.nc" "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.sfcf0${fcst_hh}.${GDAS_MEM_NAME}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf${fcst_hhh}.nc" "gdas.t${hh}z.sfcf${fcst_hhh}.nc" ) # for now. + elif [ "${MACHINE}" = "ORION" ]; then + fns_on_disk=( "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.atmf0${fcst_hh}.${GDAS_MEM_NAME}.nc" "${yy}${ddd}${hh}${mn}.gdas.t${hh}z.sfcf0${fcst_hh}.${GDAS_MEM_NAME}.nc") # use netcdf + fns_in_arcv=( "gdas.t${hh}z.atmf${fcst_hhh}.nc" "gdas.t${hh}z.sfcf${fcst_hhh}.nc" ) # for now. + fi + ;; + + "GEFS") + fcst_hh=( $( printf "%02d " "${lbc_spec_fhrs[@]}" ) ) + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + prefix2="" + if [ "${MACHINE}" = "WCOSS2" ] ; then + prefix="${varname_extrn_mdl_memhead}"".t${hh}z.pgrb2b.0p50.f0" + prefix2="${varname_extrn_mdl_memhead}"".t${hh}z.pgrb2a.0p50.f0" + if [ "${EXTRN_MDL_SAVETYPE}" = "GSL" ] ; then + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + prefix2="" + fi fi + fns_on_disk=( "${fcst_hh[@]/#/$prefix}" ) + fns_on_disk2=( "${fcst_hh[@]/#/$prefix2}" ) + fns_in_arcv=( "${fcst_hh[@]/#/$prefix}" ) ;; "RAP") @@ -481,15 +581,9 @@ and analysis or forecast (anl_or_fcst): # fcst_hh=( $( printf "%02d " "${lbc_spec_fhrs[@]}" ) ) - if [ "${MACHINE}" = "JET" ]; then - prefix="wrfnat_130_" - suffix=".grib2" - else - prefix="${yy}${ddd}${hh}${mn}" - suffix="${fcst_mn}" - fi + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + suffix="${fcst_mn}" fns_on_disk=( "${fcst_hh[@]/#/$prefix}" ) - fns_on_disk=( "${fns_on_disk[@]/%/$suffix}" ) prefix="${yy}${ddd}${hh}${mn}" fns_in_arcv=( "${fcst_hh[@]/#/$prefix}" ) @@ -504,15 +598,10 @@ and analysis or forecast (anl_or_fcst): # fcst_hh=( $( printf "%02d " "${lbc_spec_fhrs[@]}" ) ) - if [ "${MACHINE}" = "JET" ]; then - prefix="wrfnat_hrconus_" - suffix=".grib2" - else - prefix="${yy}${ddd}${hh}${mn}" - suffix="${fcst_mn}" - fi + prefix="${yy}${ddd}${hh}${mn}" + prefix="${yy}${ddd}${hh}${mn}${fcst_mn}" + suffix="${fcst_mn}" fns_on_disk=( "${fcst_hh[@]/#/$prefix}" ) - fns_on_disk=( "${fns_on_disk[@]/%/$suffix}" ) prefix="${yy}${ddd}${hh}${mn}" fns_in_arcv=( "${fcst_hh[@]/#/$prefix}" ) @@ -559,6 +648,8 @@ bination of external model (extrn_mdl_name) and analysis or forecast sysbasedir="${EXTRN_MDL_SYSBASEDIR_LBCS}" fi + sysdir2="" + case "${extrn_mdl_name}" in # @@ -567,10 +658,7 @@ bination of external model (extrn_mdl_name) and analysis or forecast # "GSMGFS") case "$MACHINE" in - "WCOSS_CRAY") - sysdir="" - ;; - "WCOSS_DELL_P3") + "WCOSS2") sysdir="" ;; "HERA") @@ -604,17 +692,20 @@ has not been specified for this external model and machine combination: "FV3GFS") case "$MACHINE" in - "WCOSS_CRAY") - sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}" - ;; - "WCOSS_DELL_P3") - sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}" + "WCOSS2") + if [ "${retro_or_realtime}" = "RETRO" ]; then + sysdir="$sysbasedir" + else + sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}/atmos" + fi ;; "HERA") - sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}" + sysdir="$sysbasedir" + #sysdir="$sysbasedir/gfs.${yyyymmdd}/${hh}/atmos" ;; "ORION") sysdir="$sysbasedir" + #sysdir="$sysbasedir/gdas.${yyyymmdd}/${hh}/atmos" ;; "JET") sysdir="$sysbasedir" @@ -638,13 +729,74 @@ has not been specified for this external model and machine combination: esac ;; + "GDASENKF") + case "$MACHINE" in + "HERA") + sysdir="$sysbasedir/enkfgdas.${yyyymmdd}/${hh}/atmos/${GDASENKF_INPUT_SUBDIR}" + ;; + "JET") + sysdir="$sysbasedir" + ;; + "ORION") + sysdir="$sysbasedir" + ;; + *) + print_err_msg_exit "\ +The system directory in which to look for external model output files +has not been specified for this external model and machine combination: + extrn_mdl_name = \"${extrn_mdl_name}\" + MACHINE = \"$MACHINE\"" + ;; + esac + ;; - "RAP") + "GEFS") case "$MACHINE" in - "WCOSS_CRAY") - sysdir="$sysbasedir" + "HERA") + sysdir="$sysbasedir/${GEFS_INPUT_SUBDIR}" + ;; + "JET") + sysdir="$sysbasedir/${GEFS_INPUT_SUBDIR}" + ;; + "WCOSS2") + sysdir="$sysbasedir/gefs.${yyyymmdd}/${hh}/atmos/pgrb2bp5" + sysdir2="$sysbasedir/gefs.${yyyymmdd}/${hh}/atmos/pgrb2ap5" + if [ "${EXTRN_MDL_SAVETYPE}" = "GSL" ] ; then + sysdir="$sysbasedir/${GEFS_INPUT_SUBDIR}" + sysdir2="$sysdir" + fi ;; - "WCOSS_DELL_P3") + *) + print_err_msg_exit "\ +The system directory in which to look for external model output files +has not been specified for this external model and machine combination: + extrn_mdl_name = \"${extrn_mdl_name}\" + MACHINE = \"$MACHINE\"" + ;; + esac + ;; + + "HRRRDAS") + case "$MACHINE" in + "HERA") + sysdir="$sysbasedir" + ;; + "JET") + sysdir="$sysbasedir/${yyyymmdd}${hh}/postprd${WRF_MEM_NAME}" + ;; + *) + print_err_msg_exit "\ +The system directory in which to look for external model output files +has not been specified for this external model and machine combination: + extrn_mdl_name = \"${extrn_mdl_name}\" + MACHINE = \"$MACHINE\"" + ;; + esac + ;; + + "RAP") + case "$MACHINE" in + "WCOSS2") sysdir="$sysbasedir" ;; "HERA") @@ -654,7 +806,7 @@ has not been specified for this external model and machine combination: sysdir="$sysbasedir" ;; "JET") - sysdir="$sysbasedir/${yyyymmdd}${hh}/postprd" + sysdir="$sysbasedir" ;; "ODIN") sysdir="$sysbasedir" @@ -675,10 +827,7 @@ has not been specified for this external model and machine combination: "HRRR") case "$MACHINE" in - "WCOSS_CRAY") - sysdir="$sysbasedir" - ;; - "WCOSS_DELL_P3") + "WCOSS2") sysdir="$sysbasedir" ;; "HERA") @@ -688,7 +837,7 @@ has not been specified for this external model and machine combination: sysdir="$sysbasedir" ;; "JET") - sysdir="$sysbasedir/${yyyymmdd}${hh}/postprd" + sysdir="$sysbasedir" ;; "ODIN") sysdir="$sysbasedir" @@ -708,10 +857,7 @@ has not been specified for this external model and machine combination: "NAM") case "$MACHINE" in - "WCOSS_CRAY") - sysdir="$sysbasedir" - ;; - "WCOSS_DELL_P3") + "WCOSS2") sysdir="$sysbasedir" ;; "HERA") @@ -796,7 +942,6 @@ has not been specified for this external model: fi if [ "${fv3gfs_file_fmt}" = "nemsio" ]; then - if [ "${anl_or_fcst}" = "ANL" ]; then arcv_fns="${arcv_fns}gfs_nemsioa" elif [ "${anl_or_fcst}" = "FCST" ]; then @@ -816,6 +961,9 @@ has not been specified for this external model: arcv_fns="${arcv_fns}gfs_pgrb2" + elif [ "${fv3gfs_file_fmt}" = "netcdf" ]; then +# we don't know if there are archive for netcdf file. This is to fill in arcv_fns to avoid crash. + arcv_fns="" fi arcv_fmt="tar" @@ -884,6 +1032,14 @@ has not been specified for this external model: arcvrel_dir="" ;; + "HRRRDAS") + arcv_dir="" + arcv_fmt="" + arcv_fns="" + arcv_fps="" + arcvrel_dir="" + ;; + "NAM") arcv_dir="/NCEPPROD/hpssprod/runhistory/rh${yyyy}/${yyyy}${mm}/${yyyymmdd}" arcv_fmt="tar" @@ -892,6 +1048,22 @@ has not been specified for this external model: arcvrel_dir="" ;; + "GEFS") + arcv_dir="" + arcv_fmt="tar" + arcv_fns="" + arcv_fps="$arcv_dir/$arcv_fns" + arcvrel_dir="" + ;; + + "GDASENKF") + arcv_dir="" + arcv_fmt="tar" + arcv_fns="" + arcv_fps="$arcv_dir/$arcv_fns" + arcvrel_dir="" + ;; + *) print_err_msg_exit "\ Archive file information has not been specified for this external model: @@ -930,6 +1102,11 @@ Archive file information has not been specified for this external model: eval ${varname_extrn_mdl_fns_on_disk}=${fns_on_disk_str} fi + if [ ! -z "${varname_extrn_mdl_fns_on_disk2}" ]; then + fns_on_disk_str2="( "$( printf "\"%s\" " "${fns_on_disk2[@]}" )")" + eval ${varname_extrn_mdl_fns_on_disk2}=${fns_on_disk_str2} + fi + if [ ! -z "${varname_extrn_mdl_fns_in_arcv}" ]; then fns_in_arcv_str="( "$( printf "\"%s\" " "${fns_in_arcv[@]}" )")" eval ${varname_extrn_mdl_fns_in_arcv}=${fns_in_arcv_str} @@ -939,6 +1116,10 @@ Archive file information has not been specified for this external model: eval ${varname_extrn_mdl_sysdir}="${sysdir}" fi + if [ ! -z "${varname_extrn_mdl_sysdir2}" ]; then + eval ${varname_extrn_mdl_sysdir2}="${sysdir2}" + fi + if [ ! -z "${varname_extrn_mdl_arcv_fmt}" ]; then eval ${varname_extrn_mdl_arcv_fmt}="${arcv_fmt}" fi diff --git a/ush/launch_FV3LAM_wflow.sh b/ush/launch_FV3LAM_wflow.sh index 702dbdf93..946dcf436 100755 --- a/ush/launch_FV3LAM_wflow.sh +++ b/ush/launch_FV3LAM_wflow.sh @@ -1,4 +1,4 @@ -#!/bin/bash -l +#!/bin/bash # #----------------------------------------------------------------------- @@ -96,16 +96,14 @@ if [ "$MACHINE" = "CHEYENNE" ]; then module load rocoto elif [ "$MACHINE" = "ORION" ]; then module load contrib rocoto -elif [ "$MACHINE" = "WCOSS_DELL_P3" ]; then +elif [ "$MACHINE" = "WCOSS2" ]; then module purge - module load lsf/10.1 - module use /gpfs/dell3/usrx/local/dev/emc_rocoto/modulefiles/ - module load ruby/2.5.1 rocoto/1.2.4 -elif [ "$MACHINE" = "WCOSS_CRAY" ]; then - module purge - module load xt-lsfhpc/9.1.3 - module use -a /usrx/local/emc_rocoto/modulefiles - module load rocoto/1.2.4 + module use /apps/ops/test/nco/modulefiles + module load craype-x86-rome + module load libfabric/1.11.0.0. + module load craype-network-ofi + module load envvar/1.0 + module load core/rocoto/1.3.5 else module purge module load rocoto @@ -122,6 +120,12 @@ fi rocoto_xml_bn=$( basename "${WFLOW_XML_FN}" ".xml" ) rocoto_database_fn="${rocoto_xml_bn}.db" launch_log_fn="log.launch_${rocoto_xml_bn}" + +logs=`echo ${LOGDIR} | rev | cut -f 3- -d / | rev` +latest=$(ls -td $logs/*/* | head -n 1) + +wflow_launch_log_fp=${latest}/${WFLOW_LAUNCH_LOG_FN} + # #----------------------------------------------------------------------- # @@ -188,12 +192,13 @@ rm "${tmp_fn}" error_msg="sbatch: error: Batch job submission failed:" # Job violates accounting/QOS policy (job submit limit, user's size and/or time limits)" while read -r line; do - grep_output=$( printf "$line" | grep "${error_msg}" ) + grep_output=$( echo "$line" | grep "${error_msg}" ) if [ $? -eq 0 ]; then wflow_status="FAILURE" break fi done <<< "${rocotorun_output}" + # #----------------------------------------------------------------------- # @@ -215,12 +220,13 @@ rocotostat_cmd="rocotostat -w \"${WFLOW_XML_FN}\" -d \"${rocoto_database_fn}\" - #rocotostat_output=$( pwd; rocotostat -w "${WFLOW_XML_FN}" -d "${rocoto_database_fn}" -v 10 2>&1 ) #rocotostat_output=$( rocotostat -w "${WFLOW_XML_FN}" -d "${rocoto_database_fn}" -v 10 2>&1 ) -rocotostat_output=$( eval ${rocotostat_cmd} 2>&1 ) +#rocotostat_output=$( eval ${rocotostat_cmd} 2>&1 ) #rocotostat_output=$( ${rocotostat_cmd} 2>&1 ) #rocotostat_output=$( { pwd; ls -alF; } 2>&1 ) +rocotostat_output='' error_msg="DEAD" while read -r line; do - grep_output=$( printf "$line" | grep "${error_msg}" ) + grep_output=$( echo "$line" | grep "${error_msg}" ) if [ $? -eq 0 ]; then wflow_status="FAILURE" break @@ -259,7 +265,7 @@ Output of rocotostat_cmd is: ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ${rocotostat_output} -" >> "${WFLOW_LAUNCH_LOG_FN}" 2>&1 +" >> "${wflow_launch_log_fp}" 2>&1 # #----------------------------------------------------------------------- # @@ -351,7 +357,7 @@ Summary of workflow status: End of output from script \"${scrfunc_fn}\". ======================================================================== -" >> ${WFLOW_LAUNCH_LOG_FN} 2>&1 +" >> ${wflow_launch_log_fp} 2>&1 # #----------------------------------------------------------------------- # @@ -407,7 +413,7 @@ launch script for this experiment: # # Print the workflow completion message to the launch log file. # - printf "$msg" >> ${WFLOW_LAUNCH_LOG_FN} 2>&1 + printf "$msg" >> ${wflow_launch_log_fp} 2>&1 # # If the stdout from this script is being sent to the screen (e.g. it is # not being redirected to a file), then also print out the workflow diff --git a/ush/link_fix.sh b/ush/link_fix.sh index 29ce0ecc1..d76aaf505 100755 --- a/ush/link_fix.sh +++ b/ush/link_fix.sh @@ -235,6 +235,7 @@ Creating links in the FIXLAM directory to the grid files..." "C*${DOT_OR_USCORE}grid.tile${TILE_RGNL}.halo${NHW}.nc" \ "C*${DOT_OR_USCORE}grid.tile${TILE_RGNL}.halo${NH3}.nc" \ "C*${DOT_OR_USCORE}grid.tile${TILE_RGNL}.halo${NH4}.nc" \ + "C*${DOT_OR_USCORE}fvcom_mask.nc" \ ) fps=( "${fns[@]/#/${GRID_DIR}/}" ) run_task="${RUN_TASK_MAKE_GRID}" @@ -245,7 +246,8 @@ Creating links in the FIXLAM directory to the grid files..." "C*${DOT_OR_USCORE}oro_data.tile${TILE_RGNL}.halo${NH0}.nc" \ "C*${DOT_OR_USCORE}oro_data.tile${TILE_RGNL}.halo${NH4}.nc" \ ) - if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ]; then + if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ] || [ "${CCPP_PHYS_SUITE}" = "FV3_RAP" ] || [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR_gf" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_GFS_v15_thompson_mynn_lam3km" ]; then fns+=( \ "C*${DOT_OR_USCORE}oro_data_ss.tile${TILE_RGNL}.halo${NH0}.nc" \ "C*${DOT_OR_USCORE}oro_data_ls.tile${TILE_RGNL}.halo${NH0}.nc" \ diff --git a/ush/load_modules_run_task.sh b/ush/load_modules_run_task.sh index c2e7cbc9a..721652960 100755 --- a/ush/load_modules_run_task.sh +++ b/ush/load_modules_run_task.sh @@ -103,12 +103,8 @@ able to use \"module load ...\" to load necessary modules ..." case "$MACHINE" in # - "WCOSS_CRAY") - . /opt/modules/default/init/sh - ;; -# - "WCOSS_DELL_P3") - . /usrx/local/prod/lmod/lmod/init/sh + "WCOSS2") + . /usr/share/lmod/lmod/init/sh ;; # "HERA") @@ -155,11 +151,13 @@ jjob_fp="$2" machine=${MACHINE,,} env_fn="build_${machine}_${COMPILER}.env" env_fp="${SR_WX_APP_TOP_DIR}/env/${env_fn}" +module use "${SR_WX_APP_TOP_DIR}/env" source "${env_fp}" || print_err_msg_exit "\ Sourcing platform- and compiler-specific environment file (env_fp) for the workflow task specified by task_name failed: task_name = \"${task_name}\" env_fp = \"${env_fp}\"" + # #----------------------------------------------------------------------- # @@ -307,7 +305,7 @@ ules_dir) for the specified task (task_name) failed: modulefile_local = \"${modulefile_local}\" modules_dir = \"${modules_dir}\"" fi - +# # else # using default modulefile # # module load "${default_modulefile_name}" || print_err_msg_exit "\ @@ -320,6 +318,12 @@ ules_dir) for the specified task (task_name) failed: module list +if [ -n "${SRW_ENV:-}" ] ; then + set +u + conda activate ${SRW_ENV} + set -u +fi + #fi #End if statement for tasks that load no modules # #----------------------------------------------------------------------- diff --git a/ush/prdgen/rrfs_prdgen_subpiece.sh b/ush/prdgen/rrfs_prdgen_subpiece.sh new file mode 100755 index 000000000..59489c015 --- /dev/null +++ b/ush/prdgen/rrfs_prdgen_subpiece.sh @@ -0,0 +1,59 @@ +#!/bin/bash +################################################################################ +#### UNIX Script Documentation Block +# . . +# Script name: rrfs_prdgen_namerica.sh +# Script description: Run RRFS product generation job for NA grid +# +# Author: Ben Blake Org: NOAA/EMC Date: 2022-11-29 +# +# Abstract: This script runs the RRFS PRDGEN jobs +# +# Script history log: +# 2022-11-29 Ben Blake +# + +set -x + +fhr=$1 +cyc=$2 +subpiece=$3 +domain=$4 +DATA=$5 +comout=$6 +export compress_type=c3 + +cd $DATA/prdgen_${domain}_${subpiece} + +if [ $domain == "conus" ]; then + # 3-km Lambert Conformal CONUS domain + gridspecs="lambert:262.5:38.5:38.5 237.280472:1799:3000 21.138123:1059:3000" + parmfile=${DATA}/conus_ak_${subpiece}.txt +elif [ $domain == "ak" ]; then + # 3-km NPS Alaska domain + gridspecs="nps:210.0:60.0 181.429:1649:2976.0 40.530:1105:2976.0" + parmfile=${DATA}/conus_ak_${subpiece}.txt +elif [ $domain == "hi" ]; then + # 2.5 km Mercator Hawaii domain + gridspecs="mercator:20.00 198.474999:321:2500.0:206.13099 18.072699:225:2500.0:23.087799" + parmfile=${DATA}/hi_pr_${subpiece}.txt +elif [ $domain == "pr" ]; then + # 2.5 km Mercator Puerto Rico domain + gridspecs="mercator:20 284.5:544:2500:297.491 15.0:310:2500:22.005" + parmfile=${DATA}/hi_pr_${subpiece}.txt +fi + +# Use different parm file for each subpiece +wgrib2 $comout/rrfs.t${cyc}z.prslev.f${fhr}.grib2 | grep -F -f ${parmfile} | wgrib2 -i -grib inputs.grib${domain} $comout/rrfs.t${cyc}z.prslev.f${fhr}.grib2 +wgrib2 inputs.grib${domain} -new_grid_vectors "UGRD:VGRD:USTM:VSTM" -submsg_uv inputs.grib${domain}.uv +wgrib2 inputs.grib${domain}.uv -set_bitmap 1 -set_grib_type ${compress_type} \ + -new_grid_winds grid -new_grid_vectors "UGRD:VGRD:USTM:VSTM" \ + -new_grid_interpolation neighbor \ + -if ":(WEASD|APCP|NCPCP|ACPCP|SNOD):" -new_grid_interpolation budget -fi \ + -new_grid ${gridspecs} ${domain}_${subpiece}.grib2 + +#export err=$?; err_chk + +# Send data to COMOUT in the ex-script after the grid is re-assembled + +exit diff --git a/ush/set_FV3nml_ens_stoch_seeds.sh b/ush/set_FV3nml_ens_stoch_seeds.sh new file mode 100644 index 000000000..a4dd099ff --- /dev/null +++ b/ush/set_FV3nml_ens_stoch_seeds.sh @@ -0,0 +1,188 @@ +# +#----------------------------------------------------------------------- +# +# This file defines a function that, for an ensemble-enabled experiment +# (i.e. for an experiment for which the workflow configuration variable +# DO_ENSEMBLE has been set to "TRUE"), creates new namelist files with +# unique stochastic "seed" parameters, using a base namelist file in the +# ${EXPTDIR} directory as a template. These new namelist files are stored +# within each member directory housed within each cycle directory. Files +# of any two ensemble members differ only in their stochastic "seed" +# parameter values. These namelist files are generated when this file is +# called as part of the RUN_FCST_TN task. +# +#----------------------------------------------------------------------- +# +function set_FV3nml_ens_stoch_seeds() { +# +#----------------------------------------------------------------------- +# +# Save current shell options (in a global array). Then set new options +# for this script/function. +# +#----------------------------------------------------------------------- +# + { save_shell_opts; set -u +x; } > /dev/null 2>&1 +# +#----------------------------------------------------------------------- +# +# Get the full path to the file in which this script/function is located +# (scrfunc_fp), the name of that file (scrfunc_fn), and the directory in +# which the file is located (scrfunc_dir). +# +#----------------------------------------------------------------------- +# + local scrfunc_fp=$( $READLINK -f "${BASH_SOURCE[0]}" ) + local scrfunc_fn=$( basename "${scrfunc_fp}" ) + local scrfunc_dir=$( dirname "${scrfunc_fp}" ) +# +#----------------------------------------------------------------------- +# +# Get the name of this function. +# +#----------------------------------------------------------------------- +# + local func_name="${FUNCNAME[0]}" +# +#----------------------------------------------------------------------- +# +# Specify the set of valid argument names for this script/function. Then +# process the arguments provided to this script/function (which should +# consist of a set of name-value pairs of the form arg1="value1", etc). +# +#----------------------------------------------------------------------- +# + local valid_args=( \ + "cdate" \ + ) + process_args valid_args "$@" +# +#----------------------------------------------------------------------- +# +# For debugging purposes, print out values of arguments passed to this +# script. Note that these will be printed out only if VERBOSE is set to +# TRUE. +# +#----------------------------------------------------------------------- +# + print_input_args valid_args +# +#----------------------------------------------------------------------- +# +# Declare local variables. +# +#----------------------------------------------------------------------- +# + local i \ + ensmem_num \ + fv3_nml_ens_fp \ + iseed_shum \ + iseed_skeb \ + iseed_sppt \ + iseed_spp \ + iseed_lsm_spp \ + num_iseed_spp \ + num_iseed_lsm_spp \ + settings +# +#----------------------------------------------------------------------- +# +# For a given cycle and member, generate a namelist file with unique +# seed values. +# +#----------------------------------------------------------------------- +# + ensmem_name="mem${ENSMEM_INDX}" + + fv3_nml_ensmem_fp_base="${run_dir}/input.nml_base" + fv3_nml_ensmem_fp="${run_dir}/input.nml" + + ensmem_num=$((10#${ENSMEM_INDX})) + + settings="\ +'nam_stochy': {" + + if [ ${DO_SPPT} = TRUE ]; then + + iseed_sppt=$(( cdate*1000 + ensmem_num*10 + 1 )) + settings="$settings + 'iseed_sppt': ${iseed_sppt}," + + fi + + if [ ${DO_SHUM} = TRUE ]; then + + iseed_shum=$(( cdate*1000 + ensmem_num*10 + 2 )) + settings="$settings + 'iseed_shum': ${iseed_shum}," + + fi + + if [ ${DO_SKEB} = TRUE ]; then + + iseed_skeb=$(( cdate*1000 + ensmem_num*10 + 3 )) + settings="$settings + 'iseed_skeb': ${iseed_skeb}," + + fi + settings="$settings + }" + + settings="$settings +'nam_sppperts': {" + + if [ ${DO_SPP} = TRUE ]; then + + num_iseed_spp=${#ISEED_SPP[@]} + for (( i=0; i<${num_iseed_spp}; i++ )); do + iseed_spp[$i]=$(( cdate*1000 + ensmem_num*10 + ${ISEED_SPP[$i]} )) + done + + settings="$settings + 'iseed_spp': [ $( printf "%s, " "${iseed_spp[@]}" ) ]," + + fi + + settings="$settings + }" + + settings="$settings +'nam_sfcperts': {" + + if [ ${DO_LSM_SPP} = TRUE ]; then + + iseed_lsm_spp=$(( cdate*1000 + ensmem_num*10 + 9)) + + settings="$settings + 'iseed_lndp': [ $( printf "%s, " "${iseed_lsm_spp[@]}" ) ]," + + fi + + settings="$settings + }" + + $USHDIR/set_namelist.py -q \ + -n ${fv3_nml_ensmem_fp_base} \ + -u "$settings" \ + -o ${fv3_nml_ensmem_fp} || \ + print_err_msg_exit "\ +Call to python script set_namelist.py to set the variables in the FV3 +namelist file that specify the paths to the surface climatology files +failed. Parameters passed to this script are: + Full path to base namelist file: + FV3_NML_FP = \"${FV3_NML_FP}\" + Full path to output namelist file: + fv3_nml_ensmem_fp = \"${fv3_nml_ensmem_fp}\" + Namelist settings specified on command line (these have highest precedence): + settings = +$settings" +# +#----------------------------------------------------------------------- +# +# Restore the shell options saved at the beginning of this script/function. +# +#----------------------------------------------------------------------- +# + { restore_shell_opts; } > /dev/null 2>&1 + +} diff --git a/ush/set_FV3nml_stoch_params.sh b/ush/set_FV3nml_stoch_params.sh index 98e1c3469..7973e2941 100644 --- a/ush/set_FV3nml_stoch_params.sh +++ b/ush/set_FV3nml_stoch_params.sh @@ -3,14 +3,13 @@ # # This file defines a function that, for an ensemble-enabled experiment # (i.e. for an experiment for which the workflow configuration variable -# DO_ENSEMBLE has been set to "TRUE"), adds to a base FV3 namelist file -# a set of stochastic "seed" parameters that is unique to each ensemble -# member to generate a new namelist file for each member. The namelist -# files of any two ensemble members differ only in their stochastic "seed" -# parameter values. Each such member-specific namelist file is placed at -# the top level of the experiment directory. (Then, during the RUN_FCST_TN -# step of the workflow, links are created from the run directories to these -# member-specific namelist files.) +# DO_ENSEMBLE has been set to "TRUE"), creates new namelist files with +# unique stochastic "seed" parameters, using a base namelist file in the +# ${EXPTDIR} directory. These new namelist files are stored within each +# member directory housed within each cycle directory in ${EXPTDIR}. +# Files of any two ensemble members differ only in their stochastic "seed" +# parameter values. These namelist files are generated when this file is +# called as part of the RUN_FCST_TN task. # #----------------------------------------------------------------------- # @@ -53,7 +52,9 @@ function set_FV3nml_stoch_params() { # #----------------------------------------------------------------------- # - local valid_args=() + local valid_args=( \ + "cdate" \ + ) process_args valid_args "$@" # #----------------------------------------------------------------------- @@ -72,64 +73,63 @@ function set_FV3nml_stoch_params() { # #----------------------------------------------------------------------- # - local cdate \ - i \ - ip1 \ + local i \ + ensmem_num \ fv3_nml_ens_fp \ iseed_shum \ iseed_skeb \ iseed_sppt \ + iseed_spp \ settings # #----------------------------------------------------------------------- # -# At this point, there should exist a namelist file with full path as -# specified in the workflow variable FV3_NML_FP. This is the namelist -# file for a non-ensmble-enabled experiment. This file will be used below -# as the base namelist file to which we will add the stochastic "seed" -# parameters to obtain the final namelist file for each ensemble member. -# To clarify that this namelist file is not the final namelist file that -# FV3 will read in, we now rename it to the name specified in FV3_NML_BASE_ENS_FP. +# For a given cycle and member, generate a namelist file with unique +# seed values. # #----------------------------------------------------------------------- # -mv_vrfy "${FV3_NML_FP}" "${FV3_NML_BASE_ENS_FP}" -# -#----------------------------------------------------------------------- -# -# Select a cdate (date and hour, in the 10-digit format YYYYMMDDHH) to -# use in the formula for generating the stochastic seed values below. -# Here, we form cdate the starting date and time of the first forecast. -# -#----------------------------------------------------------------------- -# -cdate="${DATE_FIRST_CYCL}${CYCL_HRS[0]}" -# -#----------------------------------------------------------------------- -# -# Now loop through the ensemble members and generate a namelist file for -# each one. -# -#----------------------------------------------------------------------- -# -for (( i=0; i<${NUM_ENS_MEMBERS}; i++ )); do + fv3_nml_ensmem_fp_base="${CYCLE_DIR}${slash_ensmem_subdir}/fcst_fv3lam/input.nml_base" + fv3_nml_ensmem_fp="${CYCLE_DIR}${slash_ensmem_subdir}/fcst_fv3lam/input.nml" + ensmem_num=${ENSMEM_INDX} + + iseed_shum=$(( cdate*1000 + ensmem_num*10 + 2 )) + iseed_skeb=$(( cdate*1000 + ensmem_num*10 + 3 )) + iseed_sppt=$(( cdate*1000 + ensmem_num*10 + 1 )) + iseed_spp=$(( cdate*1000 + ensmem_num*10 + 4 )) - fv3_nml_ensmem_fp="${FV3_NML_ENSMEM_FPS[$i]}" +if [[ "${ENSMEM_INDX}" = "1" && ${DO_ENSCONTROL} == "TRUE" ]]; then + + settings="\ +'nam_stochy': { + 'iseed_shum': ${iseed_shum}, + 'iseed_skeb': ${iseed_skeb}, + 'iseed_sppt': ${iseed_sppt}, + 'sppt': -999.0 + } +'gfs_physics_nml': { + 'do_sppt': false + } +'nam_spperts': { + 'iseed_spp': ${iseed_spp}, + }" - ip1=$(( i+1 )) - iseed_shum=$(( cdate*1000 + ip1*10 + 2 )) - iseed_skeb=$(( cdate*1000 + ip1*10 + 3 )) - iseed_sppt=$(( cdate*1000 + ip1*10 + 1 )) +else settings="\ 'nam_stochy': { 'iseed_shum': ${iseed_shum}, 'iseed_skeb': ${iseed_skeb}, 'iseed_sppt': ${iseed_sppt}, - }" + } +'nam_spperts': { + 'iseed_spp': ${iseed_spp}, + }" + +fi $USHDIR/set_namelist.py -q \ - -n ${FV3_NML_BASE_ENS_FP} \ + -n ${fv3_nml_ensmem_fp_base} \ -u "$settings" \ -o ${fv3_nml_ensmem_fp} || \ print_err_msg_exit "\ @@ -137,14 +137,13 @@ Call to python script set_namelist.py to set the variables in the FV3 namelist file that specify the paths to the surface climatology files failed. Parameters passed to this script are: Full path to base namelist file: - FV3_NML_BASE_ENS_FP = \"${FV3_NML_BASE_ENS_FP}\" + FV3_NML_BASE_ENS_FP = \"${fv3_nml_ensmem_fp_base}\" Full path to output namelist file: fv3_nml_ensmem_fp = \"${fv3_nml_ensmem_fp}\" Namelist settings specified on command line (these have highest precedence): settings = $settings" -done # #----------------------------------------------------------------------- # diff --git a/ush/set_extrn_mdl_params.sh b/ush/set_extrn_mdl_params.sh index cd63a1ff4..5e94b42ff 100644 --- a/ush/set_extrn_mdl_params.sh +++ b/ush/set_extrn_mdl_params.sh @@ -43,9 +43,9 @@ local func_name="${FUNCNAME[0]}" # #----------------------------------------------------------------------- # -if [ "${RUN_ENVIR}" = "nco" ]; then +if [[ "${RUN_ENVIR}" == "nco" && ! -z ${COMINgfs} ]]; then - EXTRN_MDL_SYSBASEDIR_ICS="$COMINgfs" + EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SYSBASEDIR_ICS:-$COMINgfs}" else @@ -53,10 +53,7 @@ else "GSMGFS") case $MACHINE in - "WCOSS_CRAY") - EXTRN_MDL_SYSBASEDIR_ICS="" - ;; - "WCOSS_DELL_P3") + "WCOSS2") EXTRN_MDL_SYSBASEDIR_ICS="" ;; "HERA") @@ -82,11 +79,8 @@ else "FV3GFS") case $MACHINE in - "WCOSS_CRAY") - EXTRN_MDL_SYSBASEDIR_ICS="/gpfs/dell1/nco/ops/com/gfs/prod" - ;; - "WCOSS_DELL_P3") - EXTRN_MDL_SYSBASEDIR_ICS="/gpfs/dell1/nco/ops/com/gfs/prod" + "WCOSS2") + EXTRN_MDL_SYSBASEDIR_ICS="/lfs/h1/ops/prod/com/gfs/v16.3" ;; "HERA") EXTRN_MDL_SYSBASEDIR_ICS="/scratch1/NCEPDEV/rstprod/com/gfs/prod" @@ -95,7 +89,7 @@ else EXTRN_MDL_SYSBASEDIR_ICS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_ICS="/public/data/grids/gfs/nemsio" + EXTRN_MDL_SYSBASEDIR_ICS="/public/data/grids/gfs/0p25deg/grib2" ;; "ODIN") EXTRN_MDL_SYSBASEDIR_ICS="/scratch/ywang/test_runs/FV3_regional/gfs" @@ -109,6 +103,34 @@ else esac ;; + "GDASENKF") + case "$MACHINE" in + "HERA") + EXTRN_MDL_SYSBASEDIR_ICS="/scratch1/NCEPDEV/rstprod/com/gfs/prod" + ;; + "JET") + EXTRN_MDL_SYSBASEDIR_ICS="/mnt/lfs4/BMC/public/data/grids/enkf/atm" + ;; + esac + ;; + + "GEFS") + case "$MACHINE" in + "WCOSS2") + EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SOURCE_BASEDIR_ICS:-"/lfs/h1/ops/prod/com/gefs/v12.3"}" + ;; + "HERA") + EXTRN_MDL_SYSBASEDIR_ICS="" + ;; + "JET") + EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SOURCE_BASEDIR_ICS:-"/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b"}" + ;; + "HERA") + EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SOURCE_BASEDIR_ICS:-/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b}" + ;; + esac + ;; + "RAP") case $MACHINE in "HERA") @@ -118,7 +140,7 @@ else EXTRN_MDL_SYSBASEDIR_ICS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_ICS="/misc/whome/rtrr/rap" + EXTRN_MDL_SYSBASEDIR_ICS="/public/data/grids/rap/full/wrfnat/grib2" ;; "CHEYENNE") EXTRN_MDL_SYSBASEDIR_ICS="dummy_value" @@ -135,7 +157,7 @@ else EXTRN_MDL_SYSBASEDIR_ICS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_ICS="/misc/whome/rtrr/hrrr" + EXTRN_MDL_SYSBASEDIR_ICS="/public/data/grids/hrrr/conus/wrfnat/grib2" ;; "CHEYENNE") EXTRN_MDL_SYSBASEDIR_ICS="dummy_value" @@ -143,9 +165,27 @@ else esac ;; + "HRRRDAS") + case "$MACHINE" in + "HERA") + EXTRN_MDL_SYSBASEDIR_ICS="" + ;; + "JET") + EXTRN_MDL_SYSBASEDIR_ICS="/mnt/lfs1/BMC/wrfruc/HRRRE/cycle" + ;; + esac + ;; + esac fi +# +# for retro, the external boundary could come from other location. +# +if [[ "${DO_RETRO}" == "TRUE" && ! -z "${EXTRN_MDL_SOURCE_BASEDIR_ICS}" ]]; then + EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SOURCE_BASEDIR_ICS}" +fi + # # If EXTRN_MDL_SYSBASEDIR_ICS has not been set (not even to a null string), # print out an error message and exit. @@ -168,20 +208,28 @@ fi # #----------------------------------------------------------------------- # -case ${EXTRN_MDL_NAME_LBCS} in - "GSMGFS") - EXTRN_MDL_LBCS_OFFSET_HRS="0" - ;; - "FV3GFS") - EXTRN_MDL_LBCS_OFFSET_HRS="0" - ;; - "RAP") - EXTRN_MDL_LBCS_OFFSET_HRS="3" - ;; - "HRRR") - EXTRN_MDL_LBCS_OFFSET_HRS="0" - ;; -esac +if [[ -z ${EXTRN_MDL_LBCS_OFFSET_HRS} ]]; then + case ${EXTRN_MDL_NAME_LBCS} in + "GSMGFS") + EXTRN_MDL_LBCS_OFFSET_HRS="0" + ;; + "FV3GFS") + EXTRN_MDL_LBCS_OFFSET_HRS="0" + ;; + "GDASENKF") + EXTRN_MDL_LBCS_OFFSET_HRS="6" + ;; + "GEFS") + EXTRN_MDL_LBCS_OFFSET_HRS="6" + ;; + "RAP") + EXTRN_MDL_LBCS_OFFSET_HRS="3" + ;; + "HRRR") + EXTRN_MDL_LBCS_OFFSET_HRS="0" + ;; + esac +fi # #----------------------------------------------------------------------- # @@ -197,7 +245,7 @@ esac # #----------------------------------------------------------------------- # -if [ "${RUN_ENVIR}" = "nco" ]; then +if [[ "${RUN_ENVIR}" == "nco" && ! -z ${COMINgfs} ]]; then EXTRN_MDL_SYSBASEDIR_LBCS="$COMINgfs" @@ -207,10 +255,7 @@ else "GSMGFS") case $MACHINE in - "WCOSS_CRAY") - EXTRN_MDL_SYSBASEDIR_LBCS="" - ;; - "WCOSS_DELL_P3") + "WCOSS2") EXTRN_MDL_SYSBASEDIR_LBCS="" ;; "HERA") @@ -236,11 +281,8 @@ else "FV3GFS") case $MACHINE in - "WCOSS_CRAY") - EXTRN_MDL_SYSBASEDIR_LBCS="/gpfs/dell1/nco/ops/com/gfs/prod" - ;; - "WCOSS_DELL_P3") - EXTRN_MDL_SYSBASEDIR_LBCS="/gpfs/dell1/nco/ops/com/gfs/prod" + "WCOSS2") + EXTRN_MDL_SYSBASEDIR_LBCS="/lfs/h1/ops/prod/com/gfs/v16.3" ;; "HERA") EXTRN_MDL_SYSBASEDIR_LBCS="/scratch1/NCEPDEV/rstprod/com/gfs/prod" @@ -249,7 +291,7 @@ else EXTRN_MDL_SYSBASEDIR_LBCS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_LBCS="/public/data/grids/gfs/nemsio" + EXTRN_MDL_SYSBASEDIR_LBCS="/public/data/grids/gfs/0p25deg/grib2" ;; "ODIN") EXTRN_MDL_SYSBASEDIR_LBCS="/scratch/ywang/test_runs/FV3_regional/gfs" @@ -263,6 +305,31 @@ else esac ;; + "GDASENKF") + case "$MACHINE" in + "HERA") + EXTRN_MDL_SYSBASEDIR_LBCS="/scratch1/NCEPDEV/rstprod/com/gfs/prod" + ;; + "JET") + EXTRN_MDL_SYSBASEDIR_LBCS="/mnt/lfs4/BMC/public/data/grids/enkf/atm" + ;; + esac + ;; + + "GEFS") + case "$MACHINE" in + "WCOSS2") + EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SOURCE_BASEDIR_LBCS:-"/lfs/h1/ops/prod/com/gefs/v12.3"}" + ;; + "JET") + EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SOURCE_BASEDIR_LBCS:-"/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b"}" + ;; + "HERA") + EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SOURCE_BASEDIR_LBCS:-/mnt/lfs4/BMC/public/data/grids/gens/pgrb2b}" + ;; + esac + ;; + "RAP") case $MACHINE in "HERA") @@ -272,7 +339,7 @@ else EXTRN_MDL_SYSBASEDIR_LBCS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_LBCS="/misc/whome/rtrr/rap" + EXTRN_MDL_SYSBASEDIR_LBCS="/public/data/grids/rap/full/wrfnat/grib2" ;; "CHEYENNE") EXTRN_MDL_SYSBASEDIR_LBCS="dummy_value" @@ -289,7 +356,7 @@ else EXTRN_MDL_SYSBASEDIR_LBCS="" ;; "JET") - EXTRN_MDL_SYSBASEDIR_LBCS="/misc/whome/rtrr/hrrr" + EXTRN_MDL_SYSBASEDIR_LBCS="/public/data/grids/hrrr/conus/wrfnat/grib2" ;; esac ;; @@ -297,6 +364,12 @@ else esac fi + + +if [[ "${DO_RETRO}" == "TRUE" && ! -z "${EXTRN_MDL_SOURCE_BASEDIR_LBCS}" ]]; then + EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SOURCE_BASEDIR_LBCS}" +fi + # # If EXTRN_MDL_SYSBASEDIR_LBCS has not been set (not even to a null string), # print out an error message and exit. diff --git a/ush/set_predef_grid_params.sh b/ush/set_predef_grid_params.sh index e87e9ecdb..1475f2f14 100644 --- a/ush/set_predef_grid_params.sh +++ b/ush/set_predef_grid_params.sh @@ -166,7 +166,7 @@ case ${PREDEF_GRID_NAME} in # #----------------------------------------------------------------------- # -# The RRFS CONUS domain with ~3km cells. +# The RRFS CONUS domain with ~3km cells (C3359) # #----------------------------------------------------------------------- # @@ -180,6 +180,50 @@ case ${PREDEF_GRID_NAME} in ESGgrid_DELX="3000.0" ESGgrid_DELY="3000.0" + ESGgrid_NX="1820" + ESGgrid_NY="1092" + + ESGgrid_WIDE_HALO_WIDTH="6" + + DT_ATMOS="${DT_ATMOS:-40}" + + LAYOUT_X="${LAYOUT_X:-30}" + LAYOUT_Y="${LAYOUT_Y:-16}" + BLOCKSIZE="${BLOCKSIZE:-32}" + + if [ "$QUILTING" = "TRUE" ]; then + WRTCMP_write_groups="1" + WRTCMP_write_tasks_per_group=$(( 1*LAYOUT_Y )) + WRTCMP_output_grid="lambert_conformal" + WRTCMP_cen_lon="${ESGgrid_LON_CTR}" + WRTCMP_cen_lat="${ESGgrid_LAT_CTR}" + WRTCMP_stdlat1="${ESGgrid_LAT_CTR}" + WRTCMP_stdlat2="${ESGgrid_LAT_CTR}" + WRTCMP_nx="1799" + WRTCMP_ny="1059" + WRTCMP_lon_lwr_left="-122.719528" + WRTCMP_lat_lwr_left="21.138123" + WRTCMP_dx="${ESGgrid_DELX}" + WRTCMP_dy="${ESGgrid_DELY}" + fi + ;; +# +#----------------------------------------------------------------------- +# +# The RRFS CONUS domain with ~3km cells (C3357, HRRRIC) +# +#----------------------------------------------------------------------- +# +"RRFS_CONUS_3km_HRRRIC") + + GRID_GEN_METHOD="ESGgrid" + + ESGgrid_LON_CTR="-97.5" + ESGgrid_LAT_CTR="38.5" + + ESGgrid_DELX="3000.0" + ESGgrid_DELY="3000.0" + ESGgrid_NX="1748" ESGgrid_NY="1038" @@ -1139,12 +1183,71 @@ case ${PREDEF_GRID_NAME} in WRTCMP_output_grid="rotated_latlon" WRTCMP_cen_lon="${ESGgrid_LON_CTR}" WRTCMP_cen_lat="${ESGgrid_LAT_CTR}" - WRTCMP_lon_lwr_left="-57.9926" - WRTCMP_lat_lwr_left="-50.74344" - WRTCMP_lon_upr_rght="57.99249" - WRTCMP_lat_upr_rght="50.74344" - WRTCMP_dlon="0.1218331" - WRTCMP_dlat="0.121833" + WRTCMP_lon_lwr_left="-55.82538869" + WRTCMP_lat_lwr_left="-48.57685654" + WRTCMP_lon_upr_rght="55.82538869" + WRTCMP_lat_upr_rght="48.57685654" + WRTCMP_dlon="0.11691181" + WRTCMP_dlat="0.11691181" + fi + ;; +# +#----------------------------------------------------------------------- +# +# The RRFS North America domain with ~3km cells. +# +#----------------------------------------------------------------------- +# +"RRFS_NA_3km") + + GRID_GEN_METHOD="ESGgrid" + + ESGgrid_LON_CTR="-112.5" + ESGgrid_LAT_CTR="55.0" + + ESGgrid_DELX="3000.0" + ESGgrid_DELY="3000.0" + + ESGgrid_NX=3950 + ESGgrid_NY=2700 + + ESGgrid_PAZI="0.0" + + ESGgrid_WIDE_HALO_WIDTH="6" + + DT_ATMOS="${DT_ATMOS:-60}" + + LAYOUT_X="${LAYOUT_X:-40}" + LAYOUT_Y="${LAYOUT_Y:-45}" + BLOCKSIZE="${BLOCKSIZE:-28}" + + if [ "$QUILTING" = "TRUE" ]; then + WRTCMP_write_groups="${WRTCMP_write_groups:-1}" + WRTCMP_write_tasks_per_group="${WRTCMP_write_tasks_per_group:-50}" + WRTCMP_output_grid="rotated_latlon" + WRTCMP_cen_lon="-113.0" + WRTCMP_cen_lat="55.0" + WRTCMP_lon_lwr_left="-61.0" + WRTCMP_lat_lwr_left="-37.0" + WRTCMP_lon_upr_rght="61.0" + WRTCMP_lat_upr_rght="37.0" + if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + if [[ ${DO_ENSFCST} != "TRUE" ]] ; then + WRTCMP_lon_lwr_left="-0.1" + WRTCMP_lat_lwr_left="-0.1" + WRTCMP_lon_upr_rght="0.1" + WRTCMP_lat_upr_rght="0.1" + fi + fi + WRTCMP_dlon="0.025" + WRTCMP_dlat="0.025" + fi + ;; + +*) + if [ "$QUILTING" = "TRUE" ]; then + WRTCMP_write_groups="${WRTCMP_write_groups:-1}" + WRTCMP_write_tasks_per_group="${WRTCMP_write_tasks_per_group:-20}" fi ;; diff --git a/ush/set_rrfs_config.sh b/ush/set_rrfs_config.sh new file mode 100644 index 000000000..4eeb57183 --- /dev/null +++ b/ush/set_rrfs_config.sh @@ -0,0 +1,183 @@ + +# setup for real-time runs on JET +OBSPATH_NSSLMOSIAC=/public/data/radar/nssl/mrms/conus +FFG_DIR=/public/data/grids/ncep/ffg/grib2 +AIRCRAFT_REJECT="/home/amb-verif/acars_RR/amdar_reject_lists" +SFCOBS_USELIST="/lfs4/BMC/amb-verif/rap_ops_mesonet_uselists" +SST_ROOT="/lfs4/BMC/public/data/grids/ncep/sst/0p083deg/grib2" +GVF_ROOT="/public/data/sat/ncep/viirs/gvf/grib2" +FVCOM_DIR="/mnt/lfs4/BMC/public/data/grids/glerl/owaq" +FVCOM_FILE="tsfc_fv3grid" + +BERROR_FN="rrfs_glb_berror.l127y770.f77" + +if [[ $MACHINE == "hera" ]] ; then + +# for using RAP as boundary and initial +# EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/public/data/grids/rap/full/wrfnat/grib2 +# EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/public/data/grids/rap/full/wrfnat/grib2 +# for using GFS as boundary and initial + EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/public/data/grids/gfs/0p25deg/grib2 + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/public/data/grids/gfs/0p25deg/grib2 +# observations + OBSPATH=/scratch2/BMC/public/data/grids/rap/obs + OBSPATH_NSSLMOSIAC=/scratch2/BMC/public/data/radar/nssl/mrms/conus + OBSPATH_PM=/mnt/lfs1/BMC/wrfruc/hwang/rrfs_sd/pm + LIGHTNING_ROOT=/scratch2/BMC/public/data/lightning + ENKF_FCST=/scratch1/NCEPDEV/rstprod/com/gfs/prod +fi + +# for real-time wcoss2 runs +if [[ $MACHINE == "wcoss2" ]] ; then + EXTRN_MDL_SOURCE_BASEDIR_ICS=/lfs/h1/ops/prod/com/gfs/v16.3 + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/lfs/h1/ops/prod/com/gfs/v16.3 + OBSPATH=/lfs/h1/ops/prod/com/obsproc/v1.1 + OBSPATH_NSSLMOSIAC=/lfs/h1/ops/prod/dcom/ldmdata/obs/upperair/mrms/conus/MergedReflectivityQC + ENKF_FCST=/lfs/h1/ops/prod/com/gfs/v16.3 + SST_ROOT=/lfs/h1/ops/prod/com/nsst/v1.2 + GVF_ROOT=/lfs/h1/ops/prod/dcom/viirs + IMSSNOW_ROOT=/lfs/h1/ops/prod/com/obsproc/v1.1 + FIRE_RAVE_DIR=/lfs/h2/emc/lam/noscrub/emc.lam/RAVE_rawdata/RAVE_NA + FVCOM_DIR="/lfs/h1/ops/prod/com/nosofs/v3.5" + FVCOM_FILE="fvcom" +fi + +# set up for retrospective test: +if [[ $DO_RETRO == "TRUE" ]] ; then + + if [[ $MACHINE == "jet" ]] ; then +# EXTRN_MDL_SOURCE_BASEDIR_ICS=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/hrrr/conus/wrfnat/grib2 +# EXTRN_MDL_SOURCE_BASEDIR_LBCS=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/rap/full/wrfnat/grib2 + + if [ ${EXTRN_MDL_NAME_ICS} == "FV3GFS" ] ; then + EXTRN_MDL_SOURCE_BASEDIR_ICS=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/gfs/0p25deg/grib2 + elif [ ${EXTRN_MDL_NAME_ICS} == "GEFS" ] ; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/GEFS/dsg" + fi + if [ ${EXTRN_MDL_NAME_LBCS} == "FV3GFS" ] ; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/gfs/0p25deg/grib2 + elif [ ${EXTRN_MDL_NAME_LBCS} == "GEFS" ] ; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/GEFS/dsg" + fi + + OBSPATH=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/obs_rap + OBSPATH_PM=/mnt/lfs1/BMC/wrfruc/hwang/rrfs_sd/pm + OBSPATH_NSSLMOSIAC=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/reflectivity + LIGHTNING_ROOT=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/lightning + ENKF_FCST=/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/enkf/atm + AIRCRAFT_REJECT="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/amdar_reject_lists" + SFCOBS_USELIST="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/mesonet_uselists" + SST_ROOT="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/highres_sst" + GVF_ROOT="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/gvf/grib2" + IMSSNOW_ROOT="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/snow/ims96/grib2" + RAPHRR_SOIL_ROOT="/mnt/lfs4/BMC/wrfruc/Ruifang.Li/data/rap_hrrr_soil" + fi + if [[ $MACHINE == "hera" ]] ; then + + if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + if [[ ${EXTRN_MDL_NAME_ICS} == "GEFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/scratch2/BMC/zrtrr/rli/data/GEFS/dsg" + elif [[ ${EXTRN_MDL_NAME_ICS} == "HRRRDAS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/scratch1/BMC/wrfruc/chunhua/data/HRRRDAS" + elif [[ ${EXTRN_MDL_NAME_ICS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/scratch1/BMC/wrfruc/chunhua/data/GDASENKF" + fi + if [[ ${EXTRN_MDL_NAME_LBCS} == "GEFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/scratch2/BMC/zrtrr/rli/data/GEFS/dsg" + elif [[ ${EXTRN_MDL_NAME_LBCS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/scratch1/BMC/wrfruc/chunhua/data/GDASENKF" + elif [[ ${EXTRN_MDL_NAME_LBCS} == "FV3GFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/scratch1/BMC/wrfruc/chunhua/data/FV3GFS" + fi + else +# EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/zrtrr/rli/data/hrrr/conus/wrfnat/grib2 +# EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/zrtrr/rli/data/rap/full/wrfnat/grib2 + EXTRN_MDL_SOURCE_BASEDIR_ICS=/scratch2/BMC/zrtrr/rli/data/gfs/0p25deg/grib2 + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/scratch2/BMC/zrtrr/rli/data/gfs/0p25deg/grib2 + fi + + OBSPATH=/scratch2/BMC/zrtrr/rli/data/obs_rap + OBSPATH_NSSLMOSIAC=/scratch2/BMC/zrtrr/rli/data/reflectivity + LIGHTNING_ROOT=/scratch2/BMC/zrtrr/rli/data/lightning + ENKF_FCST=/scratch2/BMC/zrtrr/rli/data/enkf/atm + AIRCRAFT_REJECT="/scratch2/BMC/zrtrr/rli/data/amdar_reject_lists" + SFCOBS_USELIST="/scratch2/BMC/zrtrr/rli/data/mesonet_uselists" + SST_ROOT="/scratch2/BMC/zrtrr/rli/data/highres_sst" + GVF_ROOT="/scratch2/BMC/zrtrr/rli/data/gvf/grib2" + IMSSNOW_ROOT="/scratch2/BMC/zrtrr/rli/data/snow/ims96/grib2" + RAPHRR_SOIL_ROOT="/scratch2/BMC/zrtrr/rli/data/rap_hrrr_soil" + fi + if [[ $MACHINE == "orion" ]] ; then + if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + if [[ ${EXTRN_MDL_NAME_ICS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/work/noaa/wrfruc/mhu/rrfs/data/enkf/atm" + elif [[ ${EXTRN_MDL_NAME_ICS} == "FV3GFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="/work/noaa/wrfruc/mhu/rrfs/data/gfs/0p25deg/grib2" + fi + if [[ ${EXTRN_MDL_NAME_LBCS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/work/noaa/wrfruc/mhu/rrfs/data/enkf/atm" + elif [[ ${EXTRN_MDL_NAME_LBCS} == "FV3GFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="/work/noaa/wrfruc/mhu/rrfs/data/gfs/0p25deg/grib2" + fi + else + EXTRN_MDL_SOURCE_BASEDIR_ICS=/work/noaa/wrfruc/mhu/rrfs/data/gfs/0p25deg/grib2 + EXTRN_MDL_SOURCE_BASEDIR_LBCS=/work/noaa/wrfruc/mhu/rrfs/data/gfs/0p25deg/grib2 + fi + OBSPATH=/work/noaa/wrfruc/mhu/rrfs/data/obs_rap + OBSPATH_NSSLMOSIAC=/work/noaa/wrfruc/mhu/rrfs/data/reflectivity + LIGHTNING_ROOT=/work/noaa/wrfruc/mhu/rrfs/data/lightning + ENKF_FCST=/work/noaa/wrfruc/mhu/rrfs/data/enkf/atm + AIRCRAFT_REJECT="/work/noaa/wrfruc/mhu/rrfs/data/amdar_reject_lists" + SFCOBS_USELIST="/work/noaa/wrfruc/mhu/rrfs/data/mesonet_uselists" + SST_ROOT="/work/noaa/wrfruc/mhu/rrfs/data/highres_sst" + GVF_ROOT="/work/noaa/wrfruc/mhu/rrfs/data/gvf/grib2" + IMSSNOW_ROOT="/work/noaa/wrfruc/mhu/rrfs/data/snow/ims96/grib2" + fi + if [[ $MACHINE == "wcoss2" ]] ; then + RETRODATAPATH="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs_retro_data" + if [[ ${DO_ENSEMBLE} == "TRUE" ]]; then + if [[ ${EXTRN_MDL_NAME_ICS} == "GEFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="${RETRODATAPATH}/GEFS/dsg" + elif [[ ${EXTRN_MDL_NAME_ICS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="${RETRODATAPATH}/enkf/atm" + elif [[ ${EXTRN_MDL_NAME_ICS} == "FV3GFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_ICS="${RETRODATAPATH}/gfs/0p25deg/grib2" + fi + if [[ ${EXTRN_MDL_NAME_LBCS} == "GEFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="${RETRODATAPATH}/GEFS/dsg" + elif [[ ${EXTRN_MDL_NAME_LBCS} == "GDASENKF" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="${RETRODATAPATH}/enkf/atm" + elif [[ ${EXTRN_MDL_NAME_LBCS} == "FV3GFS" ]]; then + EXTRN_MDL_SOURCE_BASEDIR_LBCS="${RETRODATAPATH}/gfs/0p25deg/grib2" + fi + else + EXTRN_MDL_SOURCE_BASEDIR_ICS=${RETRODATAPATH}/gfs + EXTRN_MDL_SOURCE_BASEDIR_LBCS=${RETRODATAPATH}/gfs + fi + OBSPATH=${RETRODATAPATH}/obs_rap + OBSPATH_NSSLMOSIAC=${RETRODATAPATH}/reflectivity/upperair/mrms/conus/MergedReflectivityQC/ + LIGHTNING_ROOT=${RETRODATAPATH}/lightning + ENKF_FCST=${RETRODATAPATH}/enkf/atm + AIRCRAFT_REJECT="${RETRODATAPATH}/amdar_reject_lists" + SFCOBS_USELIST="${RETRODATAPATH}/mesonet_uselists" + SST_ROOT="${RETRODATAPATH}/highres_sst" + GVF_ROOT="${RETRODATAPATH}/gvf/grib2" + IMSSNOW_ROOT="${RETRODATAPATH}/snow/ims96/grib2" + RAPHRR_SOIL_ROOT="/lfs/h2/emc/lam/noscrub/emc.lam/rrfs_retro_data/rap_hrrr_soil" + fi +fi + +# clean system +if [[ $DO_RETRO == "TRUE" ]] ; then + CLEAN_OLDPROD_HRS="720" + CLEAN_OLDLOG_HRS="720" + CLEAN_OLDRUN_HRS="720" + CLEAN_OLDFCST_HRS="720" + CLEAN_OLDSTMPPOST_HRS="720" + CLEAN_NWGES_HRS="720" + if [[ $LBCS_ICS_ONLY == "TRUE" ]]; then + CLEAN_OLDRUN_HRS="7777" + CLEAN_OLDFCST_HRS="7777" + fi +fi + diff --git a/ush/set_rrfs_config_SDL_VDL_MixEn.sh b/ush/set_rrfs_config_SDL_VDL_MixEn.sh new file mode 100644 index 000000000..6b6947abb --- /dev/null +++ b/ush/set_rrfs_config_SDL_VDL_MixEn.sh @@ -0,0 +1,40 @@ + +l_both_fv3sar_gfs_ens=.false. #if true, ensemble size is increased with GDAS ensemble (MixEn) +nsclgrp=1 #number of scales for scale-dependent localization (SDL) +ngvarloc=1 #number of scales for variable-dependent localization (VDL) +assign_vdl_nml=.false. #if true, vdl_scale and vloc_varlist are used to set VDL + +if [ ${l_both_fv3sar_gfs_ens} = ".true." ]; then + weight_ens_gfs=0.5 + weight_ens_fv3sar=0.5 +fi + +if [[ ${ngvarloc} == "1" ]] && [[ ${nsclgrp} == "2" ]]; then + readin_localization=.false. + ens_h="328.632,82.1580,82.1580" + ens_v="-0.30125,-0.30125,0.0" + ens_h_radardbz="4.10790" + ens_v_radardbz="-0.30125" +elif [[ ${ngvarloc} == "2" ]] && [[ ${nsclgrp} == "1" ]]; then + DO_ENVAR_RADAR_REF_ONCE="TRUE" + readin_localization=.false. + ens_h="82.1580,4.10790" + ens_v="-0.30125,-0.30125" + if [ ${assign_vdl_nml} = ".true." ]; then + vdl_scale="2,2" + else + r_ensloccov4var=0.05 + fi +elif [[ ${ngvarloc} == "2" ]] && [[ ${nsclgrp} == "2" ]]; then + DO_ENVAR_RADAR_REF_ONCE="TRUE" + readin_localization=.false. + if [ ${assign_vdl_nml} = ".true." ]; then + ens_h="82.1580,16.4316,8.21580,4.10790,2.73860" + ens_v="-0.30125,-0.30125,-0.30125,-0.30125,0.0" + vdl_scale="2,2,2,2" + else + ens_h="328.632,82.1580,4.10790,4.10790,82.1580" + ens_v="-0.30125,-0.30125,-0.30125,-0.30125,0.0" + r_ensloccov4var=0.05 + fi +fi diff --git a/ush/set_rrfs_config_general.sh b/ush/set_rrfs_config_general.sh new file mode 100644 index 000000000..b490f86f5 --- /dev/null +++ b/ush/set_rrfs_config_general.sh @@ -0,0 +1,547 @@ + +if [[ $MACHINE == "jet" ]] ; then + if [[ -n $RESERVATION ]] ; then + ACCOUNT=rtrr + SERVICE_ACCOUNT=rtrr + HPSS_ACCOUNT=nrtrr + PARTITION_DEFAULT=kjet + PARTITION_FCST=kjet + PARTITION_GRAPHICS=kjet + PARTITION_ANALYSIS=kjet + PARTITION_PRDGEN=kjet + PARTITION_MINT=kjet + PARTITION_MAXT=kjet + PARTITION_POST=kjet + PARTITION_HPSS=service + QUEUE_DEFAULT="rth" + QUEUE_FCST="rth" + QUEUE_ANALYSIS="rth" + QUEUE_PRDGEN="rt" + QUEUE_MINT="rt" + QUEUE_MAXT="rt" + QUEUE_GRAPHICS="rt" + QUEUE_HPSS="batch" + QUEUE_POST="rt" + RESERVATION_POST="rrfsdet" + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="1" + PPN_RUN_POST="40" + fi +fi + +if [[ $MACHINE == "hera" ]] ; then + ACCOUNT="wrfruc" + PARTITION_DEFAULT="" + PARTITION_FCST="" + QUEUE_ANALYSIS="batch" + QUEUE_PRDGEN="batch" + QUEUE_MINT="batch" + QUEUE_MAXT="batch" + QUEUE_GRAPHICS="batch" +fi + +if [[ $MACHINE == "orion" ]] ; then + ACCOUNT=wrfruc + PARTITION_ANALYSIS=orion + QUEUE_ANALYSIS="batch" + QUEUE_PRDGEN="batch" + QUEUE_MINT="batch" + QUEUE_MAXT="batch" + QUEUE_GRAPHICS="batch" + QUEUE_POST="batch" + NCORES_PER_NODE=24 +fi + +if [[ $MACHINE == "wcoss2" ]] ; then + ACCOUNT=RRFS-DEV + HPSS_ACCOUNT="RRFS-DEV" + QUEUE_DEFAULT="pridev" + QUEUE_ANALYSIS="pridev" + QUEUE_FCST="pridev" + QUEUE_HPSS="dev_transfer" + QUEUE_POST="pridev" + QUEUE_PRDGEN="pridev" + QUEUE_MINT="pridev" + QUEUE_MAXT="pridev" + QUEUE_GRAPHICS="pridev" + if [[ $MACHINETYPE == "backup" ]] ; then + QUEUE_DEFAULT="devhigh" + QUEUE_FCST="devmax" + QUEUE_ANALYSIS="devmax" + QUEUE_POST="devhigh" + QUEUE_PRDGEN="devhigh" + QUEUE_MINT="devhigh" + QUEUE_MAXT="devhigh" + QUEUE_GRAPHICS="devhigh" + fi +fi + +VERBOSE="TRUE" +RUN_ENVIR="nco" +QUILTING="TRUE" +netcdf_diag=.true. +binary_diag=.false. +HYBENSMEM_NMIN=66 +HALO_BLEND=20 +PRINT_DIFF_PGR="TRUE" +envir="para" +USE_CUSTOM_POST_CONFIG_FILE="TRUE" +TESTBED_FIELDS_FN="testbed_fields_bgdawp.txt" +TESTBED_FIELDS_FN2="testbed_fields_bgrd3d.txt" +CUSTOM_POST_CONFIG_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/postxconfig-NT-fv3lam_rrfs.txt" +CUSTOM_POST_PARAMS_FP="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." &>/dev/null&&pwd)/fix/upp/params_grib2_tbl_new" +NCARG_ROOT="/apps/ncl/6.5.0-CentOS6.10_64bit_nodap_gnu447" +NCL_HOME="/home/rtrr/RRFS/graphics" +COMINgfs="" + +FV3GFS_FILE_FMT_ICS="grib2" +FV3GFS_FILE_FMT_LBCS="grib2" + +NCORES_RUN_ANAL=360 +NCORES_RUN_OBSERVER=80 +HYBENSMEM_NMIN=66 +IO_LAYOUT_Y=1 +PPN_RUN_REF2TTEN=1 +PPN_RUN_NONVARCLDANL="6" +NNODES_RUN_NONVARCLDANL="20" +MAXTRIES_GET_EXTRN_ICS="2" +MAXTRIES_GET_EXTRN_LBCS="2" +MAXTRIES_MAKE_ICS="2" +MAXTRIES_MAKE_LBCS="2" +MAXTRIES_RUN_PREPSTART="2" +MAXTRIES_RUN_FCST="2" +MAXTRIES_ANAL_GSI="2" +MAXTRIES_POSTANAL="2" +MAXTRIES_ANAL_ENKF="2" +MAXTRIES_RUN_ANAL="2" +MAXTRIES_CLDANL_NONVAR="2" +MAXTRIES_SAVE_DA_OUTPUT="2" +MAXTRIES_SAVE_RESTART="2" +MAXTRIES_RUN_POST="2" +MAXTRIES_RUN_PRDGEN="2" +MAXTRIES_RUN_MINT="2" +MAXTRIES_RUN_MAXT="2" + +WTIME_RUN_FCST="00:45:00" +WTIME_RUN_FCST_LONG="03:45:00" +WTIME_MAKE_LBCS="02:00:00" +WTIME_RUN_ANAL="00:50:00" +WTIME_RUN_PREPSTART="00:20:00" + +START_TIME_SPINUP="01:30:00" +START_TIME_PROD="01:40:00" +START_TIME_LATE_ANALYSIS="01:40:00" +START_TIME_CONVENTIONAL_SPINUP="00:40:00" +START_TIME_CONVENTIONAL="00:50:00" +START_TIME_NSSLMOSIAC="00:55:00" +START_TIME_LIGHTNINGNC="00:55:00" +START_TIME_PROCSMOKE="00:50:00" + +if [[ ${PREDEF_GRID_NAME} == "RRFS_CONUS_3km" ]] ; then + DT_ATMOS=36 + ADDNL_OUTPUT_GRIDS=() + TILE_LABELS="CONUS REGIONS" + TILE_SETS="full NE,NC,NW,SE,SC,SW" + CCPP_PHYS_SUITE="FV3_HRRR_gf" + PPN_RUN_POSTANAL="5" + + if [[ $MACHINE == "jet" ]] ; then + if [[ -n $RESERVATION ]] ; then + NNODES_MAKE_ICS="3" + PPN_MAKE_ICS="20" + NNODES_MAKE_LBCS="3" + PPN_MAKE_LBCS="20" + NNODES_RUN_POST="2" + PPN_RUN_POST="40" + PPN_PROC_RADAR="20" + LAYOUT_X=15 + LAYOUT_Y=40 + NCORES_RUN_ANAL=200 + PPN_RUN_NONVARCLDANL="10" + NNODES_RUN_NONVARCLDANL="12" + fi + fi + + if [[ $MACHINE == "hera" ]] ; then + LAYOUT_X="15" + LAYOUT_Y="20" + PPN_RUN_FCST="20" + NNODES_RUN_FCST="16" + PPN_MAKE_ICS="20" + PPN_MAKE_LBCS="20" + NNODES_MAKE_ICS="3" + NNODES_MAKE_LBCS="3" + PPN_RUN_POST="40" + NNODES_RUN_POST="2" + PPN_RUN_NONVARCLDANL="10" + NNODES_RUN_NONVARCLDANL="10" + PPN_RUN_GSIDIAG=40 + + WTIME_MAKE_LBCS="00:30:00" + WTIME_RUN_PREPSTART="00:10:00" + WTIME_RUN_FCST="00:45:00" + WTIME_RUN_FCST_LONG="02:30:00" + WTIME_RUN_ANAL="00:30:00" + + START_TIME_SPINUP="01:10:00" + START_TIME_PROD="02:10:00" + START_TIME_LATE_ANALYSIS="01:40:00" + fi + + if [[ $MACHINE == "wcoss2" ]] ; then + LAYOUT_X="31" + LAYOUT_Y="32" + PPN_MAKE_ICS="32" + TPP_MAKE_ICS="4" + PPN_MAKE_LBCS="64" + TPP_MAKE_LBCS="2" + NNODES_MAKE_ICS="2" + NNODES_MAKE_LBCS="1" + PPN_RUN_ANAL="32" + TPP_RUN_ANAL="4" + NNODES_RUN_ANAL="10" + PPN_RUN_FCST="64" + TPP_RUN_FCST="2" + NNODES_RUN_FCST="16" + PPN_RUN_POST="128" + NNODES_RUN_POST="1" + TPP_RUN_POST="1" + PPN_PROC_RADAR="128" + NNODES_PROC_RADAR="1" + PPN_RUN_ENKF="32" + TPP_RUN_ENKF="4" + NNODES_RUN_ENKF="24" + MEMO_RUN_PRDGEN="80G" + MEMO_RUN_MINT="80G" + MEMO_RUN_MAXT="80G" + MEMO_RUN_PROCESSBUFR="80G" + PPN_RUN_NONVARCLDANL="64" + NNODES_RUN_NONVARCLDANL="10" + PPN_RUN_GSIDIAG=128 + + MAXTRIES_GET_EXTRN_ICS="1" + MAXTRIES_GET_EXTRN_LBCS="1" + MAXTRIES_MAKE_ICS="1" + MAXTRIES_MAKE_LBCS="1" + MAXTRIES_RUN_PREPSTART="1" + MAXTRIES_CLDANL_NONVAR="1" + MAXTRIES_RECENTER="1" + MAXTRIES_SAVE_RESTART="1" + MAXTRIES_PROCESS_BUFR="1" + MAXTRIES_PROCESS_RADARREF="1" + MAXTRIES_RUN_FCST="1" + MAXTRIES_ANAL_GSI="1" + MAXTRIES_ANAL_ENKF="1" + MAXTRIES_RUN_POST="1" + MAXTRIES_RUN_PRDGEN="1" + MAXTRIES_RUN_MINT="1" + MAXTRIES_RUN_MAXT="1" + MAXTRIES_ANAL_GSI="1" + + WTIME_RUN_FCST="00:55:00" + WTIME_RUN_FCST_LONG="03:15:00" + WTIME_RUN_FCST_SPINUP="00:25:00" + WTIME_MAKE_ICS="00:20:00" + WTIME_MAKE_LBCS="02:00:00" + WTIME_RUN_ANAL="00:50:00" + WTIME_RUN_PREPSTART="00:20:00" + + START_TIME_SPINUP="01:10:00" + START_TIME_PROD="02:20:00" + START_TIME_LATE_ANALYSIS="01:40:00" + + FV3GFS_FILE_FMT_ICS="netcdf" + FV3GFS_FILE_FMT_LBCS="netcdf" + + CLEAN_OLDPROD_HRS="120" + CLEAN_OLDLOG_HRS="120" + CLEAN_OLDRUN_HRS="18" + CLEAN_OLDFCST_HRS="18" + CLEAN_OLDSTMPPOST_HRS="6" + CLEAN_NWGES_HRS="28" + + fi + + if [[ $MACHINE == "orion" ]] ; then + LAYOUT_X="30" + LAYOUT_Y="40" + PPN_RUN_FCST="40" + WTIME_RUN_PRDGEN="00:20:00" + WTIME_RUN_MINT="00:20:00" + WTIME_RUN_MAXT="00:20:00" + fi +fi + +if [[ ${PREDEF_GRID_NAME} == "RRFS_CONUS_13km" ]] ; then + DT_ATMOS=120 + ADDNL_OUTPUT_GRIDS=() + TILE_LABELS="CONUS REGIONS" + TILE_SETS="full NE,NC,NW,SE,SC,SW" + CCPP_PHYS_SUITE="FV3_HRRR_gf" + PPN_RUN_POSTANAL="5" + + if [[ $MACHINE == "wcoss2" ]] ; then + LAYOUT_X="7" + LAYOUT_Y="8" + PPN_MAKE_ICS="64" + TPP_MAKE_ICS="2" + PPN_MAKE_LBCS="64" + TPP_MAKE_LBCS="2" + NNODES_MAKE_ICS="1" + NNODES_MAKE_LBCS="1" + PPN_RUN_ANAL="64" + TPP_RUN_ANAL="2" + NNODES_RUN_ANAL="1" + PPN_RUN_FCST="64" + TPP_RUN_FCST="2" + NNODES_RUN_FCST="1" + PPN_RUN_POST="64" + NNODES_RUN_POST="1" + PPN_PROC_RADAR="64" + NNODES_PROC_RADAR="1" + PPN_RUN_ENKF="32" + TPP_RUN_ENKF="4" + NNODES_RUN_ENKF="2" + PPN_RUN_NONVARCLDANL="128" + NNODES_RUN_NONVARCLDANL="1" + PPN_RUN_GSIDIAG=128 + + WTIME_GET_EXTRN_ICS="00:05:00" + WTIME_GET_EXTRN_LBCS="00:05:00" + WTIME_MAKE_ICS="00:10:00" + WTIME_MAKE_LBCS="00:30:00" + WTIME_RUN_PREPSTART="00:05:00" + WTIME_RUN_FCST="00:35:00" + WTIME_RUN_FCST_LONG="01:15:00" + WTIME_RUN_FCST_SPINUP="00:15:00" + WTIME_RUN_POST="00:05:00" + WTIME_RUN_PRDGEN="00:10:00" + WTIME_RUN_MINT="00:10:00" + WTIME_RUN_MAXT="00:10:00" + WTIME_RUN_ANAL="00:20:00" + WTIME_RUN_POSTANAL="00:10:00" + WTIME_RUN_ENKF="00:10:00" + WTIME_RUN_RECENTER="00:10:00" + WTIME_PROC_RADAR="00:05:00" + WTIME_PROC_LIGHTNING="00:05:00" + WTIME_PROC_BUFR="00:05:00" + WTIME_RUN_NONVARCLDANL="00:10:00" + WTIME_SAVE_RESTART="00:05:00" + + MAXTRIES_MAKE_ICS="2" + MAXTRIES_MAKE_LBCS="2" + MAXTRIES_RUN_PREPSTART="2" + MAXTRIES_RUN_FCST="2" + MAXTRIES_ANAL_GSI="2" + MAXTRIES_ANAL_ENKF="2" + MAXTRIES_RUN_POST="2" + MAXTRIES_RUN_PRDGEN="2" + MAXTRIES_RUN_MINT="2" + MAXTRIES_RUN_MAXT="2" + MAXTRIES_ANAL_GSI="2" + + FV3GFS_FILE_FMT_ICS="netcdf" + FV3GFS_FILE_FMT_LBCS="netcdf" + fi + + if [[ $MACHINE == "orion" ]] ; then + LAYOUT_X="30" + LAYOUT_Y="40" + PPN_RUN_FCST="40" + WTIME_RUN_PRDGEN="00:20:00" + WTIME_RUN_MINT="00:20:00" + WTIME_RUN_MAXT="00:20:00" + fi + + if [[ $MACHINE == "hera" ]] ; then + NNODES_MAKE_ICS="1" + NNODES_MAKE_LBCS="1" + NNODES_RUN_POST="1" + NCORES_RUN_ANAL=60 + NATIVE_RUN_ANAL="--cpus-per-task 4 --exclusive" + + LAYOUT_X=12 + LAYOUT_Y=6 + + PPN_MAKE_ICS="20" + PPN_MAKE_LBCS="20" + NNODES_MAKE_ICS="1" + NNODES_MAKE_LBCS="1" + PPN_RUN_ANAL="20" + NNODES_RUN_ANAL="3" + PPN_RUN_FCST="20" + NNODES_RUN_FCST="3" + PPN_RUN_POST="20" + NNODES_RUN_POST="1" + PPN_PROC_RADAR="40" + NNODES_PROC_RADAR="1" + NCORES_RUN_OBSERVER="40" + PPN_RUN_NONVARCLDANL="20" + NNODES_RUN_NONVARCLDANL="5" + PPN_RUN_GSIDIAG=40 + fi + +fi + +if [[ ${PREDEF_GRID_NAME} == "RRFS_NA_3km" ]] ; then + DT_ATMOS=36 + CCPP_PHYS_SUITE="FV3_HRRR_gf" + ADDNL_OUTPUT_GRIDS=( "hrrr" "hrrrak" ) + TILE_LABELS="NA hrrr_regions1 hrrr_regions2 hrrr_tiles1 hrrr_tiles2 hrrr_tiles3 \ + hrrr_tiles4 hrrrak_tiles" + TILE_SETS="full SE,SC,SW NE,NC,NW ATL,CA-NV,CentralCA CHI-DET,DCArea,EastCO \ + GreatLakes,NYC-BOS,SEA-POR SouthCA,SouthFL,VortexSE AKRange,Anchorage,Juneau" + PPN_RUN_POSTANAL="5" + + if [[ -n $RESERVATION ]] ; then + NNODES_MAKE_ICS="10" + NNODES_MAKE_LBCS="5" + PPN_MAKE_ICS="8" + PPN_MAKE_LBCS="10" + WTIME_MAKE_LBCS="02:45:00" + WTIME_RUN_PREPSTART="00:20:00" + PPN_RUN_PREPSTART="5" + WRTCMP_write_tasks_per_group="50" + NCORES_PER_NODE="40" + + MEMO_RUN_REF2TTEN="60G" + + WTIME_RUN_FCST="04:00:00" + LAYOUT_X=50 + LAYOUT_Y=20 + IO_LAYOUT_Y=10 + PPN_RUN_NONVARCLDANL="10" + NNODES_RUN_NONVARCLDANL="20" + NATIVE_RUN_FCST="--cpus-per-task 4 --exclusive" + NATIVE_RUN_ANAL="--cpus-per-task 4 --exclusive" + + PARTITION_POST="kjet" + PPN_RUN_POST="20" + NNODES_RUN_POST="10" + WTIME_RUN_POST="00:35:00" + fi + + if [[ $MACHINE == "wcoss2" ]] ; then + WRTCMP_write_groups="1" + WRTCMP_write_tasks_per_group="64" + LAYOUT_X="50" + LAYOUT_Y="64" + PPN_MAKE_ICS="32" + TPP_MAKE_ICS="4" + PPN_MAKE_LBCS="64" + TPP_MAKE_LBCS="2" + NNODES_MAKE_ICS="2" + NNODES_MAKE_LBCS="1" + PPN_RUN_ANAL="8" + NNODES_RUN_ANAL="60" + TPP_RUN_ANAL="16" + PPN_RUN_FCST="64" + NNODES_RUN_FCST="51" + TPP_RUN_FCST="2" + PPN_RUN_POST="32" + NNODES_RUN_POST="4" + TPP_RUN_POST="4" + PPN_PROC_RADAR="64" + NNODES_PROC_RADAR="1" + PPN_RUN_ENKF="8" + NNODES_RUN_ENKF="10" + TPP_RUN_ENKF="16" + PPN_RUN_NONVARCLDANL="128" + NNODES_RUN_NONVARCLDANL="1" + PPN_RUN_PRDGEN="128" + PPN_RUN_MINT="128" + PPN_RUN_MAXT="128" + PPN_RUN_POSTANAL="8" + PPN_RUN_GSIDIAG=128 + NNODES_RUN_BUFRSND="2" + PPN_RUN_BUFRSND="14" + + MAXTRIES_MAKE_ICS="1" + MAXTRIES_MAKE_LBCS="1" + MAXTRIES_RUN_PREPSTART="1" + MAXTRIES_RUN_FCST="1" + MAXTRIES_ANAL_GSI="1" + MAXTRIES_ANAL_ENKF="1" + MAXTRIES_RUN_POST="1" + MAXTRIES_RUN_PRDGEN="1" + MAXTRIES_RUN_MINT="1" + MAXTRIES_RUN_MAXT="1" + MAXTRIES_ANAL_GSI="1" + + MEMO_RUN_NONVARCLDANL="256G" + MEMO_PROC_SMOKE="256G" + MEMO_RUN_PREPSTART="120G" + MEMO_PREP_CYC="40G" + MEMO_SAVE_RESTART="120G" + MEMO_SAVE_INPUT="120G" + MEMO_RUN_PRDGEN="256G" + MEMO_RUN_MINT="256G" + MEMO_RUN_MAXT="256G" + + START_TIME_SPINUP="01:05:00" + START_TIME_PROD="02:20:00" + START_TIME_LATE_ANALYSIS="01:20:00" + START_TIME_CONVENTIONAL="00:45:00" + START_TIME_NSSLMOSIAC="00:45:00" + + FV3GFS_FILE_FMT_ICS="netcdf" + FV3GFS_FILE_FMT_LBCS="netcdf" + + WTIME_RUN_FCST="02:30:00" + WTIME_RUN_FCST_LONG="05:30:00" + WTIME_MAKE_LBCS="02:30:00" + WTIME_RUN_BUFRSND="04:45:00" + + CLEAN_OLDPROD_HRS="120" + CLEAN_OLDLOG_HRS="120" + CLEAN_OLDRUN_HRS="18" + CLEAN_OLDFCST_HRS="18" + CLEAN_OLDSTMPPOST_HRS="12" + CLEAN_NWGES_HRS="18" + + fi + + if [[ $MACHINE == "hera" ]] ; then + CCPP_PHYS_SUITE="FV3_HRRR" + WRTCMP_write_groups="1" + WRTCMP_write_tasks_per_group="50" + LAYOUT_X="50" + LAYOUT_Y="20" + PPN_RUN_FCST="10" + NNODES_RUN_FCST="105" + PPN_RUN_NONVARCLDANL="10" + NNODES_RUN_NONVARCLDANL="20" + NATIVE_RUN_ANAL="--cpus-per-task 4 --exclusive" + PPN_RUN_GSIDIAG=40 + fi +fi + +if [[ ${PREDEF_GRID_NAME} == "GSD_RAP13km" ]] ; then + DT_ATMOS=120 + CCPP_PHYS_SUITE="FV3_RAP" + ADDNL_OUTPUT_GRIDS=( "130" "242" ) + TILE_LABELS="NA" + TILE_SETS="full" + NNODES_RUN_POST="1" + grid_ratio_fv3=1.0 + PPN_RUN_POSTANAL="5" + LAYOUT_X="16" + LAYOUT_Y="16" + PPN_RUN_FCST="20" + NNODES_RUN_FCST="11" +fi + +# +# In NCO mode, the following don't need to be explicitly set to "FALSE" +# in this configuration file because the experiment generation script +# will do this (along with printing out an informational message). +# +#RUN_TASK_MAKE_GRID="FALSE" +#RUN_TASK_MAKE_OROG="FALSE" +#RUN_TASK_MAKE_SFC_CLIMO="FALSE" +# + + diff --git a/ush/set_thompson_mp_fix_files.sh b/ush/set_thompson_mp_fix_files.sh index c5f1d67e5..63179a08f 100644 --- a/ush/set_thompson_mp_fix_files.sh +++ b/ush/set_thompson_mp_fix_files.sh @@ -129,7 +129,9 @@ string." "CCN_ACTIVATE.BIN" \ "freezeH2O.dat" \ "qr_acr_qg.dat" \ + "qr_acr_qgV2.dat" \ "qr_acr_qs.dat" \ + "qr_acr_qsV2.dat" \ ) if [ "${EXTRN_MDL_NAME_ICS}" != "HRRR" -a "${EXTRN_MDL_NAME_ICS}" != "RAP" ] || \ diff --git a/ush/setup.sh b/ush/setup.sh old mode 100755 new mode 100644 index 64a74b314..2deb25cbd --- a/ush/setup.sh +++ b/ush/setup.sh @@ -272,6 +272,46 @@ fi # #----------------------------------------------------------------------- # +# Make sure that DO_SPP is set to a valid value. +# +#----------------------------------------------------------------------- +# +check_var_valid_value "DO_SPP" "valid_vals_DO_SPP" +# +# Set DO_SPP to either "TRUE" or "FALSE" so we don't +# have to consider other valid values later on. +# +DO_SPP=${DO_SPP^^} +if [ "${DO_SPP}" = "TRUE" ] || \ + [ "${DO_SPP}" = "YES" ]; then + DO_SPP="TRUE" +elif [ "${DO_SPP}" = "FALSE" ] || \ + [ "${DO_SPP}" = "NO" ]; then + DO_SPP="FALSE" +fi +# +#----------------------------------------------------------------------- +# +# Make sure that DO_LSM_SPP is set to a valid value. +# +#----------------------------------------------------------------------- +# +check_var_valid_value "DO_LSM_SPP" "valid_vals_DO_LSM_SPP" +# +# Set DO_LSM_SPP to either "TRUE" or "FALSE" so we don't +# have to consider other valid values later on. +# +DO_LSM_SPP=${DO_LSM_SPP^^} +if [ "${DO_LSM_SPP}" = "TRUE" ] || \ + [ "${DO_LSM_SPP}" = "YES" ]; then + DO_LSM_SPP="TRUE" +elif [ "${DO_LSM_SPP}" = "FALSE" ] || \ + [ "${DO_LSM_SPP}" = "NO" ]; then + DO_LSM_SPP="FALSE" +fi +# +#----------------------------------------------------------------------- +# # Make sure that DO_SKEB is set to a valid value. # #----------------------------------------------------------------------- @@ -309,6 +349,85 @@ fi if [ "${DO_SPPT}" = "FALSE" ]; then SPPT_MAG=-999.0 fi +# +#----------------------------------------------------------------------- +# +# If running with SPP in MYNN PBL, MYNN SFC, GSL GWD, Thompson MP, or +# RRTMG, count the number of entries in SPP_VAR_LIST to correctly set +# N_VAR_SPP, otherwise set it to zero. +# +#----------------------------------------------------------------------- +# +N_VAR_SPP=0 +if [ "${DO_SPP}" = "TRUE" ]; then + N_VAR_SPP=${#SPP_VAR_LIST[@]} +fi +# +#----------------------------------------------------------------------- +# +# If running with Noah or RUC-LSM SPP, count the number of entries in +# LSM_SPP_VAR_LIST to correctly set N_VAR_LNDP, otherwise set it to zero. +# Also set LNDP_TYPE to 2 for LSM SPP, otherwise set it to zero. Finally, +# initialize an "FHCYC_LSM_SPP" variable to 0 and set it to 999 if LSM SPP +# is turned on. This requirement is necessary since LSM SPP cannot run with +# FHCYC=0 at the moment, but FHCYC cannot be set to anything less than the +# length of the forecast either. A bug fix will be submitted to +# ufs-weather-model soon, at which point, this requirement can be removed +# from regional_workflow. +# +#----------------------------------------------------------------------- +# +N_VAR_LNDP=0 +LNDP_TYPE=0 +FHCYC_LSM_SPP_OR_NOT=0 +if [ "${DO_LSM_SPP}" = "TRUE" ]; then + N_VAR_LNDP=${#LSM_SPP_VAR_LIST[@]} + LNDP_TYPE=2 + FHCYC_LSM_SPP_OR_NOT=0 +fi +# +#----------------------------------------------------------------------- +# +# If running with SPP, confirm that each SPP-related namelist value +# contains the same number of entries as N_VAR_SPP (set above to be equal +# to the number of entries in SPP_VAR_LIST). +# +#----------------------------------------------------------------------- +# +if [ "${DO_SPP}" = "TRUE" ]; then + if [ "${#SPP_MAG_LIST[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#SPP_LSCALE[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#SPP_TSCALE[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#SPP_SIGTOP1[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#SPP_SIGTOP2[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#SPP_STDDEV_CUTOFF[@]}" != "${N_VAR_SPP}" ] || \ + [ "${#ISEED_SPP[@]}" != "${N_VAR_SPP}" ]; then + print_err_msg_exit "\ +All MYNN PBL, MYNN SFC, GSL GWD, Thompson MP, or RRTMG SPP-related namelist +variables set in ${CONFIG_FN} must be equal in number of entries to what is +found in SPP_VAR_LIST: + Number of entries in SPP_VAR_LIST = \"${#SPP_VAR_LIST[@]}\"" + fi +fi +# +#----------------------------------------------------------------------- +# +# If running with LSM SPP, confirm that each LSM SPP-related namelist +# value contains the same number of entries as N_VAR_LNDP (set above to +# be equal to the number of entries in LSM_SPP_VAR_LIST). +# +#----------------------------------------------------------------------- +# +if [ "${DO_LSM_SPP}" = "TRUE" ]; then + if [ "${#LSM_SPP_MAG_LIST[@]}" != "${N_VAR_LNDP}" ]; then + print_err_msg_exit "\ +All Noah or RUC-LSM SPP-related namelist variables (except ISEED_LSM_SPP) +set in ${CONFIG_FN} must be equal in number of entries to what is found in +SPP_VAR_LIST: + Number of entries in SPP_VAR_LIST = \"${#LSM_SPP_VAR_LIST[@]}\"" + fi +fi + # #----------------------------------------------------------------------- # @@ -338,6 +457,61 @@ fi #----------------------------------------------------------------------- # check_var_valid_value "DOT_OR_USCORE" "valid_vals_DOT_OR_USCORE" + +# +#----------------------------------------------------------------------- +# +# Make sure the following options are set to a valid value. +# Convert YES/yes/true to TRUE and NO/no/false to FALSE +# +#----------------------------------------------------------------------- +# +optionList[0]=DO_DACYCLE +optionList[1]=DO_SURFACE_CYCLE +optionList[2]=DO_RETRO +optionList[3]=LBCS_ICS_ONLY +optionList[4]=DO_NONVAR_CLDANAL +optionList[5]=DO_REFL2TTEN +optionList[6]=SAVE_CYCLE_LOG +optionList[7]=DO_SOIL_ADJUST +optionList[8]=DO_UPDATE_BC +optionList[9]=DO_RADDA +optionList[10]=DO_RECENTER +optionList[11]=DO_BUFRSND +optionList[12]=USE_RRFSE_ENS +optionList[13]=DO_JEDI_ENVAR_IODA +optionList[14]=DO_SMOKE_DUST +optionList[15]=DO_POST_PROD +optionList[16]=DO_POST_SPINUP +optionList[17]=DO_PARALLEL_PRDGEN +optionList[18]=DO_ENSEMBLE +optionList[19]=DO_ENSINIT +optionList[20]=DO_ENSFCST +optionList[21]=DO_SAVE_INPUT +optionList[22]=DO_SDDACYCLE +optionList[23]=DO_SAVE_DA_OUTPUT +optionList[24]=DO_ENS_RADDA +optionList[25]=DO_GSIDIAG_OFFLINE +optionList[26]=USE_CLM +optionList[27]=DO_MINMAXT + +obs_number=${#optionList[@]} +for (( i=0; i<${obs_number}; i++ )); +do + value2check=${optionList[$i]} + check_var_valid_value "$value2check" "valid_vals_$value2check" + eval value2change=\$$value2check + value2change=${value2change^^} + if [ "${value2change}" = "TRUE" ] || + [ "${value2change}" = "YES" ]; then + value2change="TRUE" + elif [ "${value2change}" = "FALSE" ] || + [ "${value2change}" = "NO" ]; then + value2change="FALSE" + fi + eval ${value2check}=${value2change} +done + # #----------------------------------------------------------------------- # @@ -359,20 +533,17 @@ check_var_valid_value "MACHINE" "valid_vals_MACHINE" # case $MACHINE in - "WCOSS_CRAY") - NCORES_PER_NODE="24" - SCHED="lsfcray" - QUEUE_DEFAULT=${QUEUE_DEFAULT:-"dev"} - QUEUE_HPSS=${QUEUE_HPSS:-"dev_transfer"} - QUEUE_FCST=${QUEUE_FCST:-"dev"} - ;; - - "WCOSS_DELL_P3") - NCORES_PER_NODE=24 - SCHED="lsf" + "WCOSS2") + NCORES_PER_NODE=128 + SCHED="pbspro" QUEUE_DEFAULT=${QUEUE_DEFAULT:-"dev"} QUEUE_HPSS=${QUEUE_HPSS:-"dev_transfer"} QUEUE_FCST=${QUEUE_FCST:-"dev"} + QUEUE_ANALYSIS=${QUEUE_ANALYSIS:-"dev"} + QUEUE_PRDGEN=${QUEUE_PRDGEN:-"dev"} + QUEUE_MINT=${QUEUE_MINT:-"dev"} + QUEUE_MAXT=${QUEUE_MAXT:-"dev"} + QUEUE_POST=${QUEUE_POST:-"dev"} ;; "HERA") @@ -384,6 +555,10 @@ case $MACHINE in QUEUE_HPSS=${QUEUE_HPSS:-"batch"} PARTITION_FCST=${PARTITION_FCST:-"hera"} QUEUE_FCST=${QUEUE_FCST:-"batch"} + QUEUE_PRDGEN=${QUEUE_PRDGEN:-"batch"} + QUEUE_MINT=${QUEUE_MINT:-"dev"} + QUEUE_MAXT=${QUEUE_MAXT:-"dev"} + QUEUE_POST=${QUEUE_POST:-"batch"} ;; "ORION") @@ -398,7 +573,7 @@ case $MACHINE in ;; "JET") - NCORES_PER_NODE=24 + NCORES_PER_NODE=${NCORES_PER_NODE} SCHED="${SCHED:-slurm}" PARTITION_DEFAULT=${PARTITION_DEFAULT:-"sjet,vjet,kjet,xjet"} QUEUE_DEFAULT=${QUEUE_DEFAULT:-"batch"} @@ -406,6 +581,18 @@ case $MACHINE in QUEUE_HPSS=${QUEUE_HPSS:-"batch"} PARTITION_FCST=${PARTITION_FCST:-"sjet,vjet,kjet,xjet"} QUEUE_FCST=${QUEUE_FCST:-"batch"} + PARTITION_GRAPHICS=${PARTITION_GRAPHICS:-"kjet,xjet"} + QUEUE_GRAPHICS=${QUEUE_GRAPHICS:-"batch"} + PARTITION_ANALYSIS=${PARTITION_ANALYSIS:-"vjet,kjet,xjet"} + QUEUE_ANALYSIS=${QUEUE_ANALYSIS:-"batch"} + PARTITION_PRDGEN=${PARTITION_PRDGEN:-"sjet,vjet,kjet,xjet"} + QUEUE_PRDGEN=${QUEUE_PRDGEN:-"batch"} + PARTITION_MINT=${PARTITION_MINT:-"sjet,vjet,kjet,xjet"} + QUEUE_MINT==${QUEUE_MINT:-"batch"} + PARTITION_MAXT=${PARTITION_MAXT:-"sjet,vjet,kjet,xjet"} + QUEUE_MAXT==${QUEUE_MAXT:-"batch"} + PARTITION_POST=${PARTITION_POST:-"sjet,vjet,kjet,xjet"} + QUEUE_POST=${QUEUE_POST:-"batch"} ;; "ODIN") @@ -660,20 +847,26 @@ PARMDIR="$HOMErrfs/parm" MODULES_DIR="$HOMErrfs/modulefiles" EXECDIR="${SR_WX_APP_TOP_DIR}/bin" TEMPLATE_DIR="$USHDIR/templates" +if [ "${RUN_ENVIR}" = "nco" ]; then + FIXgsm=${FIXgsm:-"$HOMErrfs/fix/am"} + FIXLAM_NCO_BASEDIR=${FIXLAM_NCO_BASEDIR:-"$HOMErrfs/fix/lam"} + FIX_GSI=${FIX_GSI:-"${HOMErrfs}/fix/gsi"} + FIX_UPP=${FIX_UPP:-"${HOMErrfs}/fix/upp"} + FIX_CRTM=${FIX_CRTM:-"${CRTM_FIX}"} + FIX_MINMAXT=${FIX_MINMAXT:-"${HOMErrfs}/fix/minmaxt"} + FIX_UPP_CRTM=${FIX_UPP_CRTM:-"${CRTM_FIX}"} + FIX_SMOKE_DUST=${FIX_SMOKE_DUST:-"${HOMErrfs}/fix/smoke_dust"} + FIX_BUFRSND=${FIX_BUFRSND:-"${HOMErrfs}/fix/bufrsnd"} + AIRCRAFT_REJECT=${AIRCRAFT_REJECT:-"${FIX_GSI}"} + SFCOBS_USELIST=${SFCOBS_USELIST:-"${FIX_GSI}"} +fi case $MACHINE in - "WCOSS_CRAY") - FIXgsm=${FIXgsm:-"/gpfs/hps3/emc/global/noscrub/emc.glopara/git/fv3gfs/fix/fix_am"} - TOPO_DIR=${TOPO_DIR:-"/gpfs/hps3/emc/global/noscrub/emc.glopara/git/fv3gfs/fix/fix_orog"} - SFC_CLIMO_INPUT_DIR=${SFC_CLIMO_INPUT_DIR:-"/gpfs/hps3/emc/global/noscrub/emc.glopara/git/fv3gfs/fix/fix_sfc_climo"} - FIXLAM_NCO_BASEDIR=${FIXLAM_NCO_BASEDIR:-"/needs/to/be/specified"} - ;; - - "WCOSS_DELL_P3") - FIXgsm=${FIXgsm:-"/gpfs/dell2/emc/modeling/noscrub/emc.glopara/git/fv3gfs/fix/fix_am"} - TOPO_DIR=${TOPO_DIR:-"/gpfs/dell2/emc/modeling/noscrub/emc.glopara/git/fv3gfs/fix/fix_orog"} - SFC_CLIMO_INPUT_DIR=${SFC_CLIMO_INPUT_DIR:-"/gpfs/dell2/emc/modeling/noscrub/emc.glopara/git/fv3gfs/fix/fix_sfc_climo"} + "WCOSS2") + FIXgsm=${FIXgsm:-"/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS/fix_am"} + TOPO_DIR=${TOPO_DIR:-"/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS/fix_orog"} + SFC_CLIMO_INPUT_DIR=${SFC_CLIMO_INPUT_DIR:-"/lfs/h2/emc/lam/noscrub/emc.lam/FIX_RRFS/fix_sfc_climo"} FIXLAM_NCO_BASEDIR=${FIXLAM_NCO_BASEDIR:-"/needs/to/be/specified"} ;; @@ -804,6 +997,26 @@ Please clone the external repository containing the code in this directory, build the executable, and then rerun the workflow." fi # +# Get the base directory of the Python Graphics code. +# +external_name="python_graphics" +PYTHON_GRAPHICS_DIR=$( \ + get_manage_externals_config_property \ + "${mng_extrns_cfg_fn}" "${external_name}" "${property_name}" ) || \ + print_err_msg_exit "\ + Call to function get_manage_externals_config_property failed." + +PYTHON_GRAPHICS_DIR="${SR_WX_APP_TOP_DIR}/${PYTHON_GRAPHICS_DIR}" +if [ ! -d "${PYTHON_GRAPHICS_DIR}" ]; then + print_err_msg_exit " +The base directory in which the Python Graphics source code should be located +(PYTHON_GRAPHICS_DIR) does not exist: + PYTHON_GRAPHICS_DIR = \"${PYTHON_GRAPHICS_DIR}\" +Please clone the external repository containing the code in this directory, +build the executable, and then rerun the workflow." +fi +# +# #----------------------------------------------------------------------- # # Make sure that USE_CUSTOM_POST_CONFIG_FILE is set to a valid value. @@ -827,6 +1040,19 @@ fi # #----------------------------------------------------------------------- # +# Add graphics for the additional post-processed domains +# +#----------------------------------------------------------------------- +# +if [ ${#ADDNL_OUTPUT_GRIDS[@]} -ne 0 ]; then + for grid in ${ADDNL_OUTPUT_GRIDS[@]} ; do + TILE_SETS="${TILE_SETS} ${grid}" + TILE_LABELS="${TILE_LABELS} ${grid}" + done +fi +# +#----------------------------------------------------------------------- +# # If using a custom post configuration file, make sure that it exists. # #----------------------------------------------------------------------- @@ -882,11 +1108,14 @@ fi # Set the array containing the forecast hours at which the lateral # boundary conditions (LBCs) need to be updated. Note that this array # does not include the 0-th hour (initial time). +# Need to include 0-th hour for data assimilation cycling. # #----------------------------------------------------------------------- # -LBC_SPEC_FCST_HRS=($( seq ${LBC_SPEC_INTVL_HRS} ${LBC_SPEC_INTVL_HRS} \ - ${FCST_LEN_HRS} )) +LBC_SPEC_FCST_HRS=($( seq 0 ${LBC_SPEC_INTVL_HRS} \ + ${BOUNDARY_LEN_HRS} )) +LBC_SPEC_FCST_LONG_HRS=($( seq 0 ${LBC_SPEC_INTVL_HRS} \ + ${BOUNDARY_LONG_LEN_HRS} )) # #----------------------------------------------------------------------- # @@ -977,35 +1206,90 @@ fi # #----------------------------------------------------------------------- # -# If using the FV3_HRRR physics suite, make sure that the directory from -# which certain fixed orography files will be copied to the experiment +# If using the FV3_HRRR or FV3_RAP physics suites, make sure that the directory +# from which certain fixed orography files will be copied to the experiment # directory actually exists. Note that this is temporary code. It should # be removed once there is a script or code available that will create # these orography files for any grid. # #----------------------------------------------------------------------- # -GWD_HRRRsuite_DIR="${GWD_HRRRsuite_BASEDIR}/${PREDEF_GRID_NAME}" -if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ]; then +GWD_HRRRsuite_DIR="" +if [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_HRRR_gf" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_RAP" ] || \ + [ "${CCPP_PHYS_SUITE}" = "FV3_GFS_v15_thompson_mynn_lam3km" ]; then +# +# If in NCO mode, make sure that GWD_HRRRsuite_BASEDIR is set equal to +# FIXLAM_NCO_BASEDIR +# + if [ "${RUN_ENVIR}" = "nco" ]; then + + if [ "${GWD_HRRRsuite_BASEDIR}" != "${FIXLAM_NCO_BASEDIR}" ]; then + + gwd_hrrrsuite_basedir_orig="${GWD_HRRRsuite_BASEDIR}" + GWD_HRRRsuite_BASEDIR="${FIXLAM_NCO_BASEDIR}" + + if [ ! -z "${gwd_hrrrsuite_basedir_orig}" ]; then + print_err_msg_exit " +When RUN_ENVIR is set to \"nco\", the workflow assumes that the base +directory (GWD_HRRRsuite_BASEDIR) under which the grid-specific +subdirectories containing the gravity wave drag-related orography +statistics files for the FV3_HRRR/FV3_RAP suites are located is the same +as the base directory (FIXLAM_NCO_BASEDIR) under which the other fixed +files are located. Currently, this is not the case: + GWD_HRRRsuite_BASEDIR = \"${gwd_hrrrsuite_basedir_orig}\" + FIXLAM_NCO_BASEDIR = \"${FIXLAM_NCO_BASEDIR}\" +Resetting GWD_HRRRsuite_BASEDIR to FIXLAM_NCO_BASEDIR. Reset value is: + GWD_HRRRsuite_BASEDIR = \"${GWD_HRRRsuite_BASEDIR}\"" + fi + + fi + + fi +# +# Check that GWD_HRRRsuite_BASEDIR exists and is a directory. +# + if [ ! -d "${GWD_HRRRsuite_BASEDIR}" ]; then + print_err_msg_exit "\ +The base directory (GWD_HRRRsuite_BASEDIR) under which the grid-specific +subdirectories containing the gravity wave drag-related orography files +for the FV3_HRRR/FV3_RAP suites should be located does not exist (or is +not a directory): + GWD_HRRRsuite_BASEDIR = \"${GWD_HRRRsuite_BASEDIR}\"" + fi + GWD_HRRRsuite_DIR="${GWD_HRRRsuite_BASEDIR}/${PREDEF_GRID_NAME}" +# +# Ensure that PREDEF_GRID_NAME is not set to a null string. Currently, +# only predefined grids can be used with the FV3_HRRR/FV3_RAP suites because +# orography statistics files required by this suite are available only +# for (some of) the predefined grids. +# if [ -z "${PREDEF_GRID_NAME}" ]; then print_err_msg_exit "\ A predefined grid name (PREDEF_GRID_NAME) must be specified when using -the FV3_HRRR physics suite: +the FV3_HRRR/FV3_RAP physics suites: CCPP_PHYS_SUITE = \"${CCPP_PHYS_SUITE}\" PREDEF_GRID_NAME = \"${PREDEF_GRID_NAME}\"" else +# +# Ensure that the directory GWD_HRRRsuite_DIR in which the orography +# statistics files required by the FV3_HRRR/FV3_RAP suites are located +# actually exists. +# if [ ! -d "${GWD_HRRRsuite_DIR}" ]; then print_err_msg_exit "\ The directory (GWD_HRRRsuite_DIR) that should contain the gravity wave -drag-related orography files for the FV3_HRRR suite does not exist: +drag-related orography files for the FV3_HRRR/FV3_RAP suites does not exist: GWD_HRRRsuite_DIR = \"${GWD_HRRRsuite_DIR}\"" elif [ ! "$( ls -A ${GWD_HRRRsuite_DIR} )" ]; then print_err_msg_exit "\ The directory (GWD_HRRRsuite_DIR) that should contain the gravity wave -drag related orography files for the FV3_HRRR suite is empty: +drag related orography files for the FV3_HRRR/FV3_RAP suites is empty: GWD_HRRRsuite_DIR = \"${GWD_HRRRsuite_DIR}\"" fi fi + fi # #----------------------------------------------------------------------- @@ -1071,10 +1355,20 @@ check_for_preexist_dir_file "$EXPTDIR" "${PREEXISTING_DIR_METHOD}" # the fixed files containing the grid, orography, and surface climatology # on the native FV3-LAM grid. # +# FIXgsi: +# This is the directory that will contain the fixed files for GSI run +# +# FIXcrtm: +# This is the directory that will contain the coefficient files for CRTM +# # CYCLE_BASEDIR: # The base directory in which the directories for the various cycles will # be placed. # +# ENSCTRL_CYCLE_BASEDIR: +# The base directory of the control member for EnKF recentering, in which +# the directories for the various cycles will be placed. +# # COMROOT: # In NCO mode, this is the full path to the "com" directory under which # output from the RUN_POST_TN task will be placed. Note that this output @@ -1097,24 +1391,39 @@ check_for_preexist_dir_file "$EXPTDIR" "${PREEXISTING_DIR_METHOD}" # #----------------------------------------------------------------------- # -LOGDIR="${EXPTDIR}/log" +LOGDIR="${EXPTDIR}/log/@Y@m@d/@H" FIXam="${EXPTDIR}/fix_am" FIXLAM="${EXPTDIR}/fix_lam" +FIXgsi="${EXPTDIR}/fix_gsi" +FIXcrtm="${EXPTDIR}/fix_crtm" +FIXuppcrtm="${EXPTDIR}/fix_upp_crtm" +FIXsmokedust="${EXPTDIR}/fix_smoke_dust" +FIXbufrsnd="${EXPTDIR}/fix_bufrsnd" +SST_ROOT="${SST_ROOT}" if [ "${RUN_ENVIR}" = "nco" ]; then - CYCLE_BASEDIR="$STMP/tmpnwprd/$RUN" + CYCLE_BASEDIR="$STMP" check_for_preexist_dir_file "${CYCLE_BASEDIR}" "${PREEXISTING_DIR_METHOD}" - COMROOT="$PTMP/com" - COMOUT_BASEDIR="$COMROOT/$NET/$envir" - check_for_preexist_dir_file "${COMOUT_BASEDIR}" "${PREEXISTING_DIR_METHOD}" + ENSCTRL_CYCLE_BASEDIR="${ENSCTRL_STMP}" + COMROOT="$PTMP" + ENSCTRL_COMROOT="${ENSCTRL_PTMP}" + COMOUT_BASEDIR="$COMROOT/prod" + ENSCTRL_COMOUT_BASEDIR="${ENSCTRL_COMROOT}/prod" + ENSCTRL_COMOUT_DIR="${ENSCTRL_COMOUT_BASEDIR}/${RUN_ensctrl}.@Y@m@d" + NWGES_BASEDIR="$NWGES" + ENSCTRL_NWGES_BASEDIR="${ENSCTRL_NWGES}" + RRFSE_NWGES_BASEDIR="${RRFSE_NWGES}" + + LOGDIR="${COMROOT}/logs/${RUN}.@Y@m@d/@H" else CYCLE_BASEDIR="$EXPTDIR" COMROOT="" COMOUT_BASEDIR="" + NWGES_BASEDIR="$CYCLE_BASEDIR" fi # @@ -1161,7 +1470,11 @@ fi dot_ccpp_phys_suite_or_null=".${CCPP_PHYS_SUITE}" DATA_TABLE_TMPL_FN="${DATA_TABLE_FN}" +if [ "${USE_CLM}" = "TRUE" ]; then +DIAG_TABLE_TMPL_FN="${DIAG_TABLE_FN}${dot_ccpp_phys_suite_or_null}_clm" +else DIAG_TABLE_TMPL_FN="${DIAG_TABLE_FN}${dot_ccpp_phys_suite_or_null}" +fi FIELD_TABLE_TMPL_FN="${FIELD_TABLE_FN}${dot_ccpp_phys_suite_or_null}" MODEL_CONFIG_TMPL_FN="${MODEL_CONFIG_FN}" NEMS_CONFIG_TMPL_FN="${NEMS_CONFIG_FN}" @@ -1202,6 +1515,30 @@ The CCPP suite definition file (CCPP_PHYS_SUITE_IN_CCPP_FP) does not exist in the local clone of the ufs-weather-model: CCPP_PHYS_SUITE_IN_CCPP_FP = \"${CCPP_PHYS_SUITE_IN_CCPP_FP}\"" fi + +# +#----------------------------------------------------------------------- +# +# Set: +# +# 1) the variable NEMS_YAML_FN to the name of the fd_nems.yaml +# 2) the variable NEMS_YAML_IN_PARM_FP to the full path of this +# file in the forecast model's directory structure. +# 3) the variable NEMS_YAML_FP to the full path of this file in +# the experiment directory. +# +#----------------------------------------------------------------------- +# +NEMS_YAML_FN="fd_nems.yaml" +NEMS_YAML_IN_PARM_FP="${UFS_WTHR_MDL_DIR}/tests/parm/${NEMS_YAML_FN}" +NEMS_YAML_FP="${EXPTDIR}/${NEMS_YAML_FN}" +if [ ! -f "${NEMS_YAML_IN_PARM_FP}" ]; then + print_err_msg_exit "\ +The (NEMS_YAML_IN_PARM_FP) does not exist +in the local clone of the ufs-weather-model: + NEMS_YAML_IN_PARM_FP= \"${NEMS_YAML_IN_PARM_FP}\"" +fi + # #----------------------------------------------------------------------- # @@ -1249,6 +1586,10 @@ DATA_TABLE_FP="${EXPTDIR}/${DATA_TABLE_FN}" FIELD_TABLE_FP="${EXPTDIR}/${FIELD_TABLE_FN}" FV3_NML_FN="${FV3_NML_BASE_SUITE_FN%.*}" FV3_NML_FP="${EXPTDIR}/${FV3_NML_FN}" +FV3_NML_CYCSFC_FP="${EXPTDIR}/${FV3_NML_FN}_cycsfc" +FV3_NML_RESTART_FP="${EXPTDIR}/${FV3_NML_FN}_restart" +FV3_NML_STOCH_FP="${EXPTDIR}/${FV3_NML_FN}_stoch" +FV3_NML_RESTART_STOCH_FP="${EXPTDIR}/${FV3_NML_FN}_restart_stoch" NEMS_CONFIG_FP="${EXPTDIR}/${NEMS_CONFIG_FN}" # #----------------------------------------------------------------------- @@ -1294,34 +1635,13 @@ external model files for generating LBCs should be located does not exist: fi fi -# -#----------------------------------------------------------------------- -# -# Make sure that DO_ENSEMBLE is set to a valid value. Then set the names -# of the ensemble members. These will be used to set the ensemble member -# directories. Also, set the full path to the FV3 namelist file corresponding -# to each ensemble member. -# -#----------------------------------------------------------------------- -# -check_var_valid_value "DO_ENSEMBLE" "valid_vals_DO_ENSEMBLE" -# -# Set DO_ENSEMBLE to either "TRUE" or "FALSE" so we don't have to consider -# other valid values later on. -# -DO_ENSEMBLE=${DO_ENSEMBLE^^} -if [ "$DO_ENSEMBLE" = "TRUE" ] || \ - [ "$DO_ENSEMBLE" = "YES" ]; then - DO_ENSEMBLE="TRUE" -elif [ "$DO_ENSEMBLE" = "FALSE" ] || \ - [ "$DO_ENSEMBLE" = "NO" ]; then - DO_ENSEMBLE="FALSE" -fi + NDIGITS_ENSMEM_NAMES="0" ENSMEM_NAMES=("") FV3_NML_ENSMEM_FPS=("") if [ "${DO_ENSEMBLE}" = "TRUE" ]; then - NDIGITS_ENSMEM_NAMES="${#NUM_ENS_MEMBERS}" +# NDIGITS_ENSMEM_NAMES="${#NUM_ENS_MEMBERS}" + NDIGITS_ENSMEM_NAMES="4" # Strip away all leading zeros in NUM_ENS_MEMBERS by converting it to a # decimal (leading zeros will cause bash to interpret the number as an # octal). Note that the variable definitions file will therefore contain @@ -2356,12 +2676,21 @@ FIXLAM="$FIXLAM" FIXgsm="$FIXgsm" COMROOT="$COMROOT" COMOUT_BASEDIR="${COMOUT_BASEDIR}" +COMOUT_BASEDIR_ges="/lfs/h2/emc/ptmp/emc.lam/rrfs/v0.6.7/prod/" +NWGES_BASEDIR="${NWGES_BASEDIR}" TEMPLATE_DIR="${TEMPLATE_DIR}" UFS_WTHR_MDL_DIR="${UFS_WTHR_MDL_DIR}" UFS_UTILS_DIR="${UFS_UTILS_DIR}" SFC_CLIMO_INPUT_DIR="${SFC_CLIMO_INPUT_DIR}" TOPO_DIR="${TOPO_DIR}" EMC_POST_DIR="${EMC_POST_DIR}" +PYTHON_GRAPHICS_DIR="${PYTHON_GRAPHICS_DIR}" + +ARCHIVEDIR="${ARCHIVEDIR}" +NCARG_ROOT="${NCARG_ROOT}" +NCL_HOME="${NCL_HOME}" +NCL_REGION="${NCL_REGION}" +MODEL="${MODEL}" EXPTDIR="$EXPTDIR" LOGDIR="$LOGDIR" @@ -2374,6 +2703,26 @@ GWD_HRRRsuite_DIR="${GWD_HRRRsuite_DIR}" NDIGITS_ENSMEM_NAMES="${NDIGITS_ENSMEM_NAMES}" ENSMEM_NAMES=( $( printf "\"%s\" " "${ENSMEM_NAMES[@]}" )) FV3_NML_ENSMEM_FPS=( $( printf "\"%s\" " "${FV3_NML_ENSMEM_FPS[@]}" )) + +# for data assimilation +OBSPATH="${OBSPATH}" +OBSPATH_PM="${OBSPATH_PM}" +OBSPATH_NSSLMOSIAC="${OBSPATH_NSSLMOSIAC}" +LIGHTNING_ROOT="${LIGHTNING_ROOT}" +ENKF_FCST="${ENKF_FCST}" + +FIX_GSI="${FIX_GSI}" +FIX_CRTM="${FIX_CRTM}" +FIX_UPP_CRTM="${FIX_UPP_CRTM}" +FIX_SMOKE_DUST="${FIX_SMOKE_DUST}" +FIX_BUFRSND="${FIX_BUFRSND}" +FIX_MINMAXT="${FIX_MINMAXT}" +AIRCRAFT_REJECT="${AIRCRAFT_REJECT}" +SFCOBS_USELIST="${SFCOBS_USELIST}" + +RADARREFL_MINS=( $(printf "\"%s\" " "${RADARREFL_MINS[@]}" )) +RADARREFL_TIMELEVEL=( $(printf "\"%s\" " "${RADARREFL_TIMELEVEL[@]}" )) +ADDNL_OUTPUT_GRIDS=( $(printf "\"%s\" " "${ADDNL_OUTPUT_GRIDS[@]}" )) # #----------------------------------------------------------------------- # @@ -2400,7 +2749,8 @@ FV3_NML_YAML_CONFIG_FP="${FV3_NML_YAML_CONFIG_FP}" FV3_NML_BASE_ENS_FP="${FV3_NML_BASE_ENS_FP}" MODEL_CONFIG_TMPL_FP="${MODEL_CONFIG_TMPL_FP}" NEMS_CONFIG_TMPL_FP="${NEMS_CONFIG_TMPL_FP}" - +NDATE=/apps/ops/prod/nco/core/prod_util.v2.0.8/exec/ndate +MDATE=/apps/ops/prod/nco/core/prod_util.v2.0.8/exec/mdate CCPP_PHYS_SUITE_FN="${CCPP_PHYS_SUITE_FN}" CCPP_PHYS_SUITE_IN_CCPP_FP="${CCPP_PHYS_SUITE_IN_CCPP_FP}" CCPP_PHYS_SUITE_FP="${CCPP_PHYS_SUITE_FP}" @@ -2409,7 +2759,12 @@ DATA_TABLE_FP="${DATA_TABLE_FP}" FIELD_TABLE_FP="${FIELD_TABLE_FP}" FV3_NML_FN="${FV3_NML_FN}" # This may not be necessary... FV3_NML_FP="${FV3_NML_FP}" +FV3_NML_CYCSFC_FP="${FV3_NML_CYCSFC_FP}" +FV3_NML_RESTART_FP="${FV3_NML_RESTART_FP}" +FV3_NML_STOCH_FP="${FV3_NML_STOCH_FP}" +FV3_NML_RESTART_STOCH_FP="${FV3_NML_RESTART_STOCH_FP}" NEMS_CONFIG_FP="${NEMS_CONFIG_FP}" +NEMS_YAML_FP="${NEMS_YAML_FP}" FV3_EXEC_FP="${FV3_EXEC_FP}" @@ -2548,6 +2903,15 @@ EXTRN_MDL_SYSBASEDIR_ICS="${EXTRN_MDL_SYSBASEDIR_ICS}" # #----------------------------------------------------------------------- # +# Shift back in time (in units of hours) of the starting time of the ex- +# ternal model specified in EXTRN_MDL_NAME_LBCS. +# +#----------------------------------------------------------------------- +# +EXTRN_MDL_ICS_OFFSET_HRS="${EXTRN_MDL_ICS_OFFSET_HRS}" +# +#----------------------------------------------------------------------- +# # If USE_USER_STAGED_EXTRN_FILES is set to "FALSE", this is the system # directory in which the workflow scripts will look for the files generated # by the external model specified in EXTRN_MDL_NAME_LBCS. These files @@ -2566,6 +2930,8 @@ EXTRN_MDL_SYSBASEDIR_LBCS="${EXTRN_MDL_SYSBASEDIR_LBCS}" #----------------------------------------------------------------------- # EXTRN_MDL_LBCS_OFFSET_HRS="${EXTRN_MDL_LBCS_OFFSET_HRS}" +EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS="${EXTRN_MDL_LBCS_SEARCH_OFFSET_HRS}" +LBCS_SEARCH_HRS="${LBCS_SEARCH_HRS}" # #----------------------------------------------------------------------- # @@ -2575,18 +2941,7 @@ EXTRN_MDL_LBCS_OFFSET_HRS="${EXTRN_MDL_LBCS_OFFSET_HRS}" #----------------------------------------------------------------------- # LBC_SPEC_FCST_HRS=(${LBC_SPEC_FCST_HRS[@]}) -# -#----------------------------------------------------------------------- -# -# The number of cycles for which to make forecasts and the list of starting -# dates/hours of these cycles. -# -#----------------------------------------------------------------------- -# -NUM_CYCLES="${NUM_CYCLES}" -ALL_CDATES=( \\ -$( printf "\"%s\" \\\\\n" "${ALL_CDATES[@]}" ) -) +LBC_SPEC_FCST_LONG_HRS=(${LBC_SPEC_FCST_LONG_HRS[@]}) # #----------------------------------------------------------------------- # @@ -2608,6 +2963,22 @@ FVCOM_FILE="${FVCOM_FILE}" # NCORES_PER_NODE="${NCORES_PER_NODE}" PE_MEMBER01="${PE_MEMBER01}" +# +#----------------------------------------------------------------------- +# +# IF DO_SPP is set to "TRUE", N_VAR_SPP specifies the number of physics +# parameterizations that are perturbed with SPP. If DO_LSM_SPP is set to +# "TRUE", N_VAR_LNDP specifies the number of LSM parameters that are +# perturbed. LNDP_TYPE determines the way LSM perturbations are employed +# and FHCYC_LSM_SPP_OR_NOT sets FHCYC based on whether LSM perturbations +# are turned on or not. +# +#----------------------------------------------------------------------- +# +N_VAR_SPP='${N_VAR_SPP}' +N_VAR_LNDP='${N_VAR_LNDP}' +LNDP_TYPE='${LNDP_TYPE}' +FHCYC_LSM_SPP_OR_NOT='${FHCYC_LSM_SPP_OR_NOT}' EOM } || print_err_msg_exit "\ Heredoc (cat) command to append new variable definitions to variable diff --git a/ush/source_util_funcs.sh b/ush/source_util_funcs.sh index 1ebe07aff..3779869f1 100644 --- a/ush/source_util_funcs.sh +++ b/ush/source_util_funcs.sh @@ -76,7 +76,7 @@ function source_util_funcs() { # # Source the file containing the function that checks for preexisting # directories or files and handles them according to a specified method -# (which can be one of "delete", "rename", and "quit"). +# (which can be one of "delete", "upgrade", "rename", and "quit"). # #----------------------------------------------------------------------- # diff --git a/ush/templates/FV3.input.yml b/ush/templates/FV3.input.yml index ea728485e..e14565393 100644 --- a/ush/templates/FV3.input.yml +++ b/ush/templates/FV3.input.yml @@ -15,6 +15,16 @@ FV3_GSD_v0: effr_in: True FV3_GSD_SAR: + fv_core_nml: + fv_sg_adj: 0 + hord_dp: -5 + hord_mt: 5 + hord_tm: 5 + hord_vt: 5 + kord_mt: 9 + kord_tm: -9 + kord_tr: 9 + kord_wz: 9 gfs_physics_nml: &gsd_sar_phys do_deep: False effr_in: True @@ -33,7 +43,256 @@ FV3_GSD_SAR: iopt_stc: 1 iopt_tbot: 2 -FV3_RRFS_v1alpha: +FV3_HRRR: + atmos_model_nml: + avg_max_length: 3600. + ignore_rst_cksum: true + fv_core_nml: + agrid_vel_rst: true + d_con: 0.5 + d2_bg_k2: 0.04 + dz_min: 2.0 + hord_dp: 6 + hord_mt: 6 + hord_tm: 6 + hord_tr: 8 + hord_vt: 6 + k_split: 2 + kord_mt: 9 + kord_tm: -9 + kord_tr: 9 + kord_wz: 9 + n_split: 5 + psm_bc: 1 + nord_tr: 0 + nrows_blend: 10 + range_warn: False + regional_bcs_from_gsi: false + rf_cutoff: 2000.0 + vtdm4: 0.02 + write_restart_with_bcs: false + gfs_physics_nml: + <<: *gsd_sar_phys + cdmbgwd: [3.5, 1.0] + diag_log: true + do_gsl_drag_ls_bl: true + do_gsl_drag_ss: true + do_gsl_drag_tofd: true + do_mynnsfclay: true + do_sfcperts: !!python/none + do_tofd : false + do_ugwp : false + do_ugwp_v0 : false + do_ugwp_v0_nst_only : false + do_ugwp_v0_orog_only : false + dt_inner : 36 + effr_in: true + gwd_opt: 3 + fhlwr: 900.0 + fhswr: 900.0 + iaer: 1011 + ialb: 2 + iccn: 2 + icliq_sw: 2 + iems: 2 + imfdeepcnv: -1 + imfshalcnv: -1 + iovr: 3 + ldiag_ugwp: false + lgfdlmprad: false + lightning_threat: true + mosaic_lu: 1 + mosaic_soil: 1 + isncond_opt: 2 + isncovr_opt: 3 + sfclay_compute_flux: true + thsfc_loc: false + # Smoke/dust options + rrfs_sd : false + rrfs_smoke_debug : false + seas_opt : 0 + mix_chem : true + enh_mix : true + dust_opt : 5 + drydep_opt : 1 + coarsepm_settling : 1 + smoke_forecast : 0 + aero_ind_fdb : false + aero_dir_fdb : true + addsmoke_flag : 1 + wetdep_ls_opt : 1 + do_plumerise : true + plumerisefire_frq : 60 + dust_alpha : 0.01 + dust_gamma : 1.3 + +FV3_HRRR_gf: + atmos_model_nml: + avg_max_length: 3600. + ignore_rst_cksum: true + fv_core_nml: + agrid_vel_rst: true + d_con: 0.5 + d2_bg_k2: 0.04 + dz_min: 2.0 + hord_dp: 6 + hord_mt: 6 + hord_tm: 6 + hord_tr: 8 + hord_vt: 6 + k_split: 2 + kord_mt: 9 + kord_tm: -9 + kord_tr: 9 + kord_wz: 9 + n_split: 5 + psm_bc: 1 + nord_tr: 0 + nrows_blend: 10 + range_warn: False + regional_bcs_from_gsi: false + rf_cutoff: 2000.0 + vtdm4: 0.02 + write_restart_with_bcs: false + gfs_physics_nml: + <<: *gsd_sar_phys + cdmbgwd: [3.5, 1.0] + diag_log: true + do_deep: true + do_gsl_drag_ls_bl: true + do_gsl_drag_ss: true + do_gsl_drag_tofd: true + do_mynnsfclay: true + do_sfcperts: !!python/none + do_tofd : false + do_ugwp : false + do_ugwp_v0 : false + do_ugwp_v0_nst_only : false + do_ugwp_v0_orog_only : false + dt_inner : 36 + effr_in: true + gwd_opt: 3 + fhlwr: 900.0 + fhswr: 900.0 + iaer: 1011 + ialb: 2 + iccn: 2 + icliq_sw: 2 + iems: 2 + imfdeepcnv: 3 + imfshalcnv: -1 + iovr: 3 + ldiag_ugwp: false + lgfdlmprad: false + lightning_threat: true + mosaic_lu: 1 + mosaic_soil: 1 + isncond_opt: 2 + isncovr_opt: 3 + sfclay_compute_flux: true + thsfc_loc: false + # Smoke/dust options + rrfs_sd : false + rrfs_smoke_debug : false + seas_opt : 0 + mix_chem : true + enh_mix : true + dust_opt : 5 + drydep_opt : 1 + coarsepm_settling : 1 + smoke_forecast : 0 + aero_ind_fdb : false + aero_dir_fdb : true + addsmoke_flag : 1 + wetdep_ls_opt : 1 + do_plumerise : true + plumerisefire_frq : 60 + dust_alpha : 0.01 + dust_gamma : 1.3 + +FV3_RAP: + atmos_model_nml: + avg_max_length: 3600. + ignore_rst_cksum: true + fv_core_nml: + d_con: 0.5 + d2_bg_k2: 0.04 + dz_min: 2.0 + hord_dp: 6 + hord_mt: 6 + hord_tm: 6 + hord_vt: 6 + k_split: 6 + kord_mt: 9 + kord_tm: -9 + kord_tr: 9 + kord_wz: 9 + n_split: 3 + psm_bc: 1 + nord_tr: 0 + nrows_blend: 10 + range_warn: False + regional_bcs_from_gsi: false + rf_cutoff: 2000.0 + vtdm4: 0.02 + write_restart_with_bcs: false + gfs_physics_nml: + <<: *gsd_sar_phys + cdmbgwd: [3.5, 1.0] + diag_log: true + do_gsl_drag_ls_bl: true + do_gsl_drag_ss: true + do_gsl_drag_tofd: true + do_mynnsfclay: true + do_sfcperts: !!python/none + do_tofd : false + do_ugwp : false + do_ugwp_v0 : false + do_ugwp_v0_nst_only : false + do_ugwp_v0_orog_only : false + do_deep : true + dt_inner : 30 + effr_in: true + gwd_opt: 3 + fhlwr: 900.0 + fhswr: 900.0 + iaer: 1011 + ialb: 2 + iccn: 2 + icliq_sw: 2 + iems: 2 + imfdeepcnv: 3 + imfshalcnv: -1 + iovr: 3 + ldiag_ugwp: false + lgfdlmprad: false + lightning_threat: true + mosaic_lu: 1 + mosaic_soil: 1 + isncond_opt: 2 + isncovr_opt: 3 + sfclay_compute_flux: true + thsfc_loc: false + # Smoke/dust options + rrfs_sd : false + rrfs_smoke_debug : false + seas_opt : 0 + mix_chem : true + enh_mix : true + dust_opt : 5 + drydep_opt : 1 + coarsepm_settling : 1 + smoke_forecast : 0 + aero_ind_fdb : false + aero_dir_fdb : false + addsmoke_flag : 1 + wetdep_ls_opt : 1 + do_plumerise : true + plumerisefire_frq : 60 + dust_alpha : 0.01 + dust_gamma : 1.3 + +FV3_RRFS_v1beta: gfs_physics_nml: <<: *gsd_sar_phys do_deep: False @@ -59,33 +318,6 @@ FV3_RRFS_v1beta: atmos_model_nml: fdiag: 3 -FV3_HRRR: - fv_core_nml: - hord_dp: -5 - hord_mt: 5 - hord_tm: 5 - hord_vt: 5 - kord_mt: 9 - kord_tm: -9 - kord_tr: 9 - kord_wz: 9 - nord_tr: 2 - nrows_blend: 10 - regional_bcs_from_gsi: False - write_restart_with_bcs: False - gfs_physics_nml: - <<: *gsd_sar_phys - cdmbgwd: [3.5, 1.0] - do_mynnsfclay: True - do_sfcperts: !!python/none - effr_in: True - gwd_opt: 3 - iaer: 5111 - icliq_sw: 2 - imfdeepcnv: -1 - imfshalcnv: -1 - iovr: 3 - FV3_GFS_2017_gfdlmp: atmos_model_nml: avg_max_length: 3600.0 @@ -218,6 +450,86 @@ FV3_GFS_2017_gfdlmp_regional: gfdl_cloud_microphysics_nml: <<: *gfs_gfdl_cloud_mp +FV3_GFS_v15_thompson_mynn_lam3km: + atmos_model_nml: + fdiag: !!python/none + fv_core_nml: + full_zs_filter: !!python/none + dz_min: 2.0 + psm_bc: 1 + external_ic: false + nord_tr: 2 + nrows_blend: 10 + regional_bcs_from_gsi: false + write_restart_with_bcs: false + k_split: 2 + make_nh: false + mountain: true + na_init: 0 + nggps_ic: false + npz_type: '' + stretch_fac: 0.999 + vtdm4: 0.02 + warm_start: true + agrid_vel_rst: false + gfs_physics_nml: + <<: *gsd_sar_phys + cdmbgwd: [0.88, 0.04] + cplflx: false + do_mynnsfclay: true + lgfdlmprad: false + do_gsl_drag_ls_bl: false + do_gsl_drag_ss: true + do_gsl_drag_tofd: true + do_tofd: false + do_ugwp: false + do_ugwp_v0: false + do_ugwp_v0_nst_only: false + do_ugwp_v0_orog_only: false + ldiag_ugwp: false + do_sfcperts: !!python/none + effr_in: true + gwd_opt: 2 + iaer: 5111 + icliq_sw: 2 + imfdeepcnv: 2 + imfshalcnv: 2 + iovr: 3 + fhlwr: 900.0 + fhswr: 900.0 + xkzminv: 0.3 + xkzm_m: 1.0 + xkzm_h: 1.0 + avg_max_length: 3600 + lsm: 1 + lsoil: !!python/none + lsoil_lsm: !!python/none + ltaerosol: false + nstf_name: [2, 0, 0, 0, 0] + nam_sfcperts: + iseed_lndp: !!python/none + lndp_lscale: !!python/none + lndp_prt_list: !!python/none + lndp_tau: !!python/none + lndp_type: !!python/none + lndp_var_list: !!python/none + nam_stochy: + shum: !!python/none + shum_lscale: !!python/none + shum_tau: !!python/none + shumint: !!python/none + skeb: !!python/none + skeb_lscale: !!python/none + skeb_tau: !!python/none + skeb_vdof: !!python/none + skebint: !!python/none + sppt: !!python/none + sppt_lscale: !!python/none + sppt_tau: !!python/none + spptint: !!python/none + use_zmtnblck: !!python/none + namsfc: + ldebug: false FV3_GFS_v15p2: atmos_model_nml: ccpp_suite: FV3_GFS_v15 diff --git a/ush/templates/FV3LAM_wflow.xml b/ush/templates/FV3LAM_wflow.xml index 2f20b7faf..86949076a 100644 --- a/ush/templates/FV3LAM_wflow.xml +++ b/ush/templates/FV3LAM_wflow.xml @@ -13,11 +13,21 @@ See README.xml_templating.md for information on using the Templating mechanisms. - - - - - + + + + + + + + + + + + + + + + + + + + + + + +{%- if is_rtma %} + +{%- else %} + +{%- endif %} @@ -63,38 +128,281 @@ tasks other than GET_EXTRN_ICS_TN, GET_EXTRN_LBCS_TN, and RUN_FCST_TN; the "HPSS" type is used for the GET_EXTRN_ICS_TN and GET_EXTRN_LBCS_TN tasks; and the "FCST" type is used for the RUN_FCST_TN task. --> - {%- if partition_default is not none %} -&ACCOUNT;&QUEUE_DEFAULT;{{ partition_default }}"> +&ACCOUNT;&QUEUE_DEFAULT;{{ partition_default }}&RRFS_RESERVE;"> {%- else %} &ACCOUNT;&QUEUE_DEFAULT;"> {%- endif %} {%- if partition_hpss is not none %} -&ACCOUNT;&QUEUE_HPSS;{{ partition_hpss }}"> +&HPSS_ACCOUNT;&QUEUE_HPSS;{{ partition_hpss }}"> {%- else %} -&ACCOUNT;&QUEUE_HPSS;"> +&HPSS_ACCOUNT;&QUEUE_HPSS;"> {%- endif %} {%- if partition_fcst is not none %} &ACCOUNT;&QUEUE_FCST;{{ partition_fcst }}"> {%- else %} &ACCOUNT;&QUEUE_FCST;"> {%- endif %} +{%- if partition_analysis is not none %} +&ACCOUNT;&QUEUE_ANALYSIS;{{ partition_analysis }}"> +&ACCOUNT;&QUEUE_ANALYSIS;{{ partition_analysis }}&RRFS_RESERVE;"> +{%- else %} +&ACCOUNT;&QUEUE_ANALYSIS;"> +&ACCOUNT;&QUEUE_ANALYSIS;"> +{%- endif %} +{%- if partition_post is not none %} +&SERVICE_ACCOUNT;&QUEUE_POST;{{ partition_post }}&RRFS_POST_RESERVE;"> +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_POST;"> +{%- endif %} +{%- if partition_prdgen is not none %} +&SERVICE_ACCOUNT;&QUEUE_PRDGEN;{{ partition_prdgen }}&RRFS_POST_RESERVE;"> +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_PRDGEN;"> +{%- endif %} +{%- if partition_mint is not none %} +&SERVICE_ACCOUNT;&QUEUE_MINT;{{ partition_mint }}&RRFS_MINT_RESERVE;"> +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_MINT;"> +{%- endif %} +{%- if partition_maxt is not none %} +&SERVICE_ACCOUNT;&QUEUE_MAXT;{{ partition_maxt }}&RRFS_MAXT_RESERVE;"> +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_MAXT;"> +{%- endif %} +{%- if partition_graphics is not none %} +{%- if do_ens_graphics %} +&SERVICE_ACCOUNT;&QUEUE_GRAPHICS;{{ partition_graphics }}&RRFS_POST_RESERVE;"> +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_GRAPHICS;{{ partition_graphics }}&RRFS_POST_RESERVE;"> +{%- endif %} +{%- else %} +&SERVICE_ACCOUNT;&QUEUE_GRAPHICS;--exclusive"> +{%- endif %} + + + + +{{ nnodes_proc_smoke }}:ppn={{ ppn_proc_smoke }}"> + + + +{{ nnodes_proc_radar }}:ppn={{ ppn_proc_radar }}"> + + +{{ nnodes_proc_lightning }}:ppn={{ ppn_proc_lightning }}"> + + +{{ nnodes_proc_bufr }}:ppn={{ ppn_proc_bufr }}"> + + + +{{ nnodes_get_extrn_ics }}:ppn={{ ppn_get_extrn_ics }}"> + + +{{ nnodes_get_extrn_lbcs }}:ppn={{ ppn_get_extrn_lbcs }}"> + + +{{ nnodes_make_lbcs }}:ppn={{ ppn_make_lbcs }}"> + + +{{ nnodes_run_prepstart }}:ppn={{ ppn_run_prepstart }}"> + +{{ memo_prep_cyc}}"> + +{{ nnodes_save_restart }}:ppn={{ ppn_save_restart }}"> + + +{{ nnodes_run_recenter }}:ppn={{ ppn_run_recenter }}"> + + +{{ nnodes_run_postanal }}:ppn={{ ppn_run_postanal }}"> + + +{{ nnodes_run_gsidiag }}:ppn={{ ppn_run_gsidiag }}"> + + +{{ nnodes_run_prdgen }}:ppn={{ ppn_run_prdgen }}"> + + + +{{ nnodes_run_nonvarcldanl }}:ppn={{ ppn_run_nonvarcldanl }}"> + + + +{{ nnodes_run_mint }}:ppn={{ ppn_run_mint }}"> + + + +{{ nnodes_run_maxt }}:ppn={{ ppn_run_maxt }}"> + + + + +{% if machine in ["WCOSS2"] %} +-l place=excl"> +{%- else %} + +{%- endif %} + + +{%- if machine in ["WCOSS2"] %} +{{ nnodes_run_post }}:ppn={{ ppn_run_post }}:tpp={{ tpp_run_post }}"> +{%- else %} +{{ nnodes_run_post }}:ppn={{ ppn_run_post }}"> +{%- endif %} + + +{%- if machine in ["WCOSS2"] %} +{{ nnodes_run_enkf }}:ppn={{ ppn_run_enkf }}:tpp={{ tpp_run_enkf }}"> +{%- else %} +{{ nnodes_run_enkf }}:ppn={{ ppn_run_enkf }}"> +{%- endif %} + + +{%- if machine in ["WCOSS2"] %} +{{ nnodes_make_ics }}:ppn={{ ppn_make_ics }}:tpp={{ tpp_make_ics }}"> +{%- else %} +{{ nnodes_make_ics }}:ppn={{ ppn_make_ics }}"> +{%- endif %} + + +{%- if machine in ["WCOSS2"] %} +{{ nnodes_make_lbcs }}:ppn={{ ppn_make_lbcs }}:tpp={{ tpp_make_lbcs }}"> +{%- else %} +{{ nnodes_make_lbcs }}:ppn={{ ppn_make_lbcs }}"> +{%- endif %} + +{% if machine in ["JET", "HERA"] %} +{{ ncores_run_anal }}"> +{{ native_run_anal }} &RRFS_RESERVE;"> +{%- elif machine in ["WCOSS2"] %} +{{ nnodes_run_anal }}:ppn={{ ppn_run_anal }}:tpp={{ tpp_run_anal }}"> +-l place=excl"> +{%- else %} +{{ nnodes_run_anal }}:ppn={{ ppn_run_anal }}"> + +{%- endif %} + + + +{%- if machine in ["JET"] %} +{{ ncores_run_fcst }}"> +{{ native_run_fcst }} &RRFS_RESERVE;"> +{%- elif machine in ["WCOSS2"] %} +{{ nnodes_run_fcst }}:ppn={{ ppn_run_fcst }}:tpp={{ tpp_run_fcst }}"> +-l place=excl"> +{%- else %} +{{ nnodes_run_fcst }}:ppn={{ ppn_run_fcst }}"> + +{%- endif %} + + + +{%- if machine in ["JET"] %} +{{ ncores_run_fcst }}"> +{{ native_run_fcst }} &RRFS_RESERVE;"> +{%- elif machine in ["WCOSS2"] %} +{{ nnodes_run_fcst }}:ppn={{ ppn_run_fcst }}:tpp={{ tpp_run_fcst }}"> +-l place=excl"> +{%- else %} +{{ nnodes_run_fcst }}:ppn={{ ppn_run_fcst }}"> + +{%- endif %} + +{% if machine in ["WCOSS2"] %} + +{%- else %} +{{ ncores_per_node }}"> +{%- endif %} + +{% if do_retro %} + + + + + + + +{% else %} + + + + + + + +{% endif %} + + + + + + + + + + +{%- if do_retro %} + + + + + + + + + +{% else %} +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +@Y@m@d@H@M'> +{% endif %} + + + + + + + + + + ]> - +{%- if do_retro %} + +{% else %} + +{%- endif %} {# Double quotes are required inside the strftime! Expect an error from reading the template if using single quotes. #} - {{ cdate_first_cycl.strftime("%M %H %d %m %Y *") }} -{% for c in cycl_hrs %} - - {%- set cdate_first=date_first_cycl ~ c ~ "00" -%} - {%- set cdate_last=date_last_cycl ~ c ~ "00" -%} - {{- cdate_first ~ " " ~ cdate_last ~ " " ~ cycl_freq -}} - -{%- endfor %} + {{ at_start_cycledef }} + + {{ initial_cycledef }} + {{ boundary_cycledef }} + {{ boundary_long_cycledef }} + + {{ spinup_cycledef }} + {{ prod_cycledef }} + {{ prodlong_cycledef }} + +{%- if do_save_da_output %} + {{ saveda_cycledef }} +{%- endif %} + {{ recenter_cycledef }} + {{ archive_cycledef }} - &LOGDIR;/FV3LAM_wflow.log + &LOGDIR;/FV3LAM_wflow_&TAG;.log -{% if run_task_make_grid %} +{%- if run_task_make_grid %} + + +{%- if do_spinup %} + spinupcyc prodcyc,prodcyc_long + spinup prod +{% else %} + prodcyc,prodcyc_long + prod +{%- endif %} + +{%- if do_smoke_dust %} - + - &RSRV_HPSS; - {% if machine in ["WCOSS_CRAY"] %} - - {% endif %} + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_SMOKE_TN;" "&JOBSDIR;/JREGIONAL_PROCESS_SMOKE" + + &RESOURCES_PROC_SMOKE; + &NATIVE_ALL; + &WALLTIME_PROC_SMOKE; + &MEMO_PROC_SMOKE; + &NODESIZE_ALL; + &TAG;_&PROCESS_SMOKE_TN;_#type# + &LOGDIR;/&PROCESS_SMOKE_TN;_#type#_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPE#type# + NWGES_BASEDIR&NWGES_BASEDIR; + NWGES_DIR&NWGES_BASEDIR; + cyc@H + SLASH_ENSMEM_SUBDIR + + + + @Y@m@d@H@M00 + + + + +{%- endif %} + + +{%- if do_nonvar_cldanal or do_refl2tten or do_enkf_radar_ref or do_envar_radar_ref %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_PROCESS_RADARREF" + + &RESOURCES_PROC_RADAR; + &NATIVE_ALL; + &WALLTIME_PROC_RADAR; + &NODESIZE_ALL; + &TAG;_&PROCESS_RADAR_REF_TN;_#type# + &LOGDIR;/&PROCESS_RADAR_REF_TN;_#type#_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPE#type# + RADAR_REF_THINNING{{ radar_ref_thinning }} + NWGES_BASEDIR&NWGES_BASEDIR; + cyc@H + SLASH_ENSMEM_SUBDIR + + + + @Y@m@d@H@M00 + + + + + +{%- if do_nldn_lght %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_PROCESS_LIGHTNING" + + &RESOURCES_PROC_LIGHTNING; + &NATIVE_ALL; + &WALLTIME_PROC_LIGHTNING; + &NODESIZE_ALL; + &TAG;_&PROCESS_LIGHTNING_TN;_#type# + &LOGDIR;/&PROCESS_LIGHTNING_TN;_#type#_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPE#type# + cyc@H + SLASH_ENSMEM_SUBDIR + + + + @Y@m@d@H@M00 + + + + +{%- endif %} + + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_PROCESS_BUFR" + + &RESOURCES_PROC_BUFR; + &NATIVE_ALL; + &WALLTIME_PROC_BUFR; + &MEMO_PROC_BUFR; + &NODESIZE_ALL; + &TAG;_&PROCESS_BUFR_TN;_#type# + &LOGDIR;/&PROCESS_BUFR_TN;_#type#_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPE#type# + cyc@H + SLASH_ENSMEM_SUBDIR + + + + @Y@m@d@H@M00 + + + + + +{%- endif %} + + +{% endif %} + +{% if not is_rtma %} +{%- if do_ensemble %} + + + + {%- for m in range(1, num_ens_members+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} + {%- if do_enscontrol %} + /gec00{% for m in range(2, num_ens_members+1) %}{{ " /gep%02d"%m }}{% endfor %} + _mem0000{% for m in range(2, num_ens_members+1) %}{{ " _mem%04d"%m }}{% endfor %} + {%- else %} + {% for m in range(1, num_ens_members+1) %}{{ " /gep%02d"%m }}{% endfor %} + {% for m in range(1, num_ens_members+1) %}{{ " _mem%04d"%m }}{% endfor %} + {% for m in range(1, num_ens_members+1) %}{{ " mem%03d"%m }}{% endfor %} + {%- endif %} + {% for m in range(1, num_ens_members+1) %}{{ " /mem%03d"%m }}{% endfor %} +{%- endif %} + + + + &WALL_LIMIT_PRE; + &RSRV_DEFAULT; &LOAD_MODULES_RUN_TASK_FP; "&GET_EXTRN_ICS_TN;" "&JOBSDIR;/JREGIONAL_GET_EXTRN_MDL_FILES" - {% if machine in ["WCOSS_DELL_P3"] %} - 2048M-R affinity[core] - {% endif %} - {{ nnodes_get_extrn_ics }}:ppn={{ ppn_get_extrn_ics }} - {{ wtime_get_extrn_ics }} - &NCORES_PER_NODE; - &GET_EXTRN_ICS_TN; - &LOGDIR;/&GET_EXTRN_ICS_TN;_@Y@m@d@H.log + &RESOURCES_GET_EXTRN_ICS; + &WALLTIME_GET_EXTRN_ICS; + &NODESIZE_ALL; + &TAG;_&GET_EXTRN_ICS_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&GET_EXTRN_ICS_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d @@ -241,27 +719,78 @@ MODULES_RUN_TASK_FP script. CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H EXTRN_MDL_NAME{{ extrn_mdl_name_ics }} ICS_OR_LBCSICS + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GEFS_INPUT_SUBDIR#subdirGE# + WRF_MEM_NAME#memNameWRF# + GDASENKF_INPUT_SUBDIR#subdirGDAS# + GDAS_MEM_NAME#memNameGDAS# + + + {%- if machine in ["WCOSS2"] %} + {%- if fv3gfs_file_fmt_ics in ["netcdf"] %} + {{ extrn_mdl_sysbasedir_ics }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.atmf{{ "%03d" % extrn_mdl_ics_offset_hrs }}.nc + {% else %} + {%- if extrn_mdl_name_ics in ["GEFS"] %} + {%- if do_retro %} + {{ extrn_mdl_sysbasedir_ics }}/#subdirGE#/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {% else %} + {{ extrn_mdl_sysbasedir_ics }}/gefs.@Y@m@d/@H/atmos/pgrb2bp5/#subdirGE#.t@Hz.pgrb2b.0p50.f{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- endif %} + {% else %} + {%- if do_retro %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {% else %} + {{ extrn_mdl_sysbasedir_ics }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.pgrb2.0p25.f{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- endif %} + {%- endif %} + {%- endif %} + {% else %} + {%- if extrn_mdl_name_ics in ["GEFS"] %} + {{ extrn_mdl_sysbasedir_ics }}/#subdirGE#/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- elif extrn_mdl_name_ics in ["GDASENKF"] %} + + {%- if machine in ["HERA"] %} + {{ extrn_mdl_sysbasedir_ics }}/enkfgdas.@Y@m@d/@H/atmos/#subdirGDAS#/gdas.t@Hz.atmf00{{ extrn_mdl_ics_offset_hrs }}.nc + {{ extrn_mdl_sysbasedir_ics }}/enkfgdas.@Y@m@d/@H/atmos/#subdirGDAS#/gdas.t@Hz.sfcf00{{ extrn_mdl_ics_offset_hrs }}.nc + {%- elif machine in ["JET"] %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H00.gdas.t@Hz.atmf00{{ extrn_mdl_ics_offset_hrs }}.#memNameGDAS#.nc + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H00.gdas.t@Hz.sfcf00{{ extrn_mdl_ics_offset_hrs }}.#memNameGDAS#.nc + {%- elif machine in ["ORION"] %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H00.gdas.t@Hz.atmf00{{ extrn_mdl_ics_offset_hrs }}.#memNameGDAS#.nc + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H00.gdas.t@Hz.sfcf00{{ extrn_mdl_ics_offset_hrs }}.#memNameGDAS#.nc + {%- endif %} + + {%- elif extrn_mdl_name_ics in ["HRRRDAS"] %} + {{ extrn_mdl_sysbasedir_ics }}/@Y@m@d@H/postprd#memNameWRF#/wrfnat#memNameWRF#_00.grib2 + {%- else %} + {%- if machine in ["JET"] %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- elif machine in ["HERA"] %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- elif machine in ["ORION"] %} + {{ extrn_mdl_sysbasedir_ics }}/@y@j@H000{{ "%03d" % extrn_mdl_ics_offset_hrs }} + {%- endif %} + {%- endif %} + {%- endif %} + + +{%- if extrn_mdl_name_lbcs in ["GEFS"] %} - + - &RSRV_HPSS; - {% if machine in ["WCOSS_CRAY"] %} - - {% endif %} - &LOAD_MODULES_RUN_TASK_FP; "&GET_EXTRN_LBCS_TN;" "&JOBSDIR;/JREGIONAL_GET_EXTRN_MDL_FILES" - {% if machine in ["WCOSS_DELL_P3"] %} - 2048M-R affinity[core] - {% endif %} - {{ nnodes_get_extrn_lbcs }}:ppn={{ ppn_get_extrn_lbcs }} - {{ wtime_get_extrn_lbcs }} - &NCORES_PER_NODE; - &GET_EXTRN_LBCS_TN; - &LOGDIR;/&GET_EXTRN_LBCS_TN;_@Y@m@d@H.log + &WALL_LIMIT_PRE; + &RSRV_DEFAULT; + &LOAD_MODULES_RUN_TASK_FP; "&GET_EXTRN_LBCS_TN;" "&JOBSDIR;/JREGIONAL_GET_GEFS_LBCS_FILES" + &RESOURCES_GET_EXTRN_LBCS; + &WALLTIME_GET_EXTRN_LBCS; + &NODESIZE_ALL; + &TAG;_&GET_GEFS_LBCS_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&GET_GEFS_LBCS_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d @@ -269,41 +798,179 @@ MODULES_RUN_TASK_FP script. CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H EXTRN_MDL_NAME{{ extrn_mdl_name_lbcs }} ICS_OR_LBCSLBCS + BOUNDARY_LEN{{ boundary_len_hrs }} + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GEFS_INPUT_SUBDIR#subdirGE# + GDASENKF_INPUT_SUBDIR#subdirGDAS# + GDAS_MEM_NAME#memNameGDAS# + + + + {%- if machine in ["WCOSS2"] %} + {%- if do_retro %} + {%- for h in range(extrn_mdl_lbcs_offset_hrs, boundary_len_hrs+extrn_mdl_lbcs_offset_hrs+1, 3) %} + {{ extrn_mdl_sysbasedir_lbcs }}/#subdirGE#/@y@j@H000{{ "%03d" % h }} + {%- endfor %} + {% else %} + {%- for h in range(extrn_mdl_lbcs_offset_hrs, boundary_len_hrs+extrn_mdl_lbcs_offset_hrs+1, 3) %} + {{ extrn_mdl_sysbasedir_lbcs }}/gefs.@Y@m@d/@H/atmos/pgrb2bp5/#subdirGE#.t@Hz.pgrb2b.0p50.f{{ "%03d" % h }} + {%- endfor %} + {%- endif %} + {% else %} + {%- for h in range(extrn_mdl_lbcs_offset_hrs, boundary_len_hrs+extrn_mdl_lbcs_offset_hrs+1, 3) %} + {{ extrn_mdl_sysbasedir_lbcs }}/#subdirGE#/@y@j@H000{{ "%03d" % h }} + {%- endfor %} + {%- endif %} + + +{%- else %} -{%- if do_ensemble %} - + + + &WALL_LIMIT_PRE; + &RSRV_DEFAULT; + &LOAD_MODULES_RUN_TASK_FP; "&GET_EXTRN_LBCS_TN;" "&JOBSDIR;/JREGIONAL_GET_EXTRN_MDL_FILES" + &RESOURCES_GET_EXTRN_LBCS; + &WALLTIME_GET_EXTRN_LBCS; + &NODESIZE_ALL; + &TAG;_&GET_EXTRN_LBCS_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&GET_EXTRN_LBCS_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + EXTRN_MDL_NAME{{ extrn_mdl_name_lbcs }} + ICS_OR_LBCSLBCS + BOUNDARY_LEN{{ boundary_len_hrs }} + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GEFS_INPUT_SUBDIR#subdirGE# + GDASENKF_INPUT_SUBDIR#subdirGDAS# + GDAS_MEM_NAME#memNameGDAS# - -{%- for m in range(1, num_ens_members+1) -%} - {%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%} - {{- fmtstr%m -}} -{%- endfor %} + + + {%- for h in range(extrn_mdl_lbcs_offset_hrs, boundary_len_hrs+extrn_mdl_lbcs_offset_hrs+1, bc_update_interval) %} + {%- if machine in ["WCOSS2"] %} + {%- if fv3gfs_file_fmt_lbcs in ["netcdf"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.atmf{{ "%03d" % h }}.nc + {%- else %} + {%- if do_retro %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }} + {%- else %} + {{ extrn_mdl_sysbasedir_lbcs }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.pgrb2.0p25.f{{ "%03d" % h }} + {%- endif %} + {%- endif %} + {%- else %} + {%- if extrn_mdl_name_lbcs in ["GEFS"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/#subdirGE#/@y@j@H000{{ "%03d" % h }} + {%- elif extrn_mdl_name_lbcs in ["GDASENKF"] %} + {%- if machine in ["HERA"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/enkfgdas.@Y@m@d/@H/atmos/#subdirGDAS#/gdas.t@Hz.atmf{{ "%03d" % h }}.nc + {{ extrn_mdl_sysbasedir_lbcs }}/enkfgdas.@Y@m@d/@H/atmos/#subdirGDAS#/gdas.t@Hz.sfcf{{ "%03d" % h }}.nc + {%- elif machine in ["JET"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H00.gdas.t@Hz.atmf{{ "%03d" % h }}.#memNameGDAS#.nc + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H00.gdas.t@Hz.sfcf{{ "%03d" % h }}.#memNameGDAS#.nc + {%- elif machine in ["ORION"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H00.gdas.t@Hz.atmf{{ "%03d" % h }}.#memNameGDAS#.nc + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H00.gdas.t@Hz.sfcf{{ "%03d" % h }}.#memNameGDAS#.nc + {%- endif %} + {%- else %} + {%- if machine in ["JET"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }} + {%- elif machine in ["HERA"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }} + {%- elif machine in ["ORION"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }} + {%- endif %} + {%- endif %} + {%- endif %} + {%- endfor %} + + + + {%- endif %} + + + + &WALL_LIMIT_PRE; + &RSRV_DEFAULT; + &LOAD_MODULES_RUN_TASK_FP; "&GET_EXTRN_LBCS_TN;" "&JOBSDIR;/JREGIONAL_GET_EXTRN_MDL_FILES" + &RESOURCES_GET_EXTRN_LBCS; + &WALLTIME_GET_EXTRN_LBCS; + &NODESIZE_ALL; + + &TAG;_&GET_EXTRN_LBCS_LONG_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&GET_EXTRN_LBCS_LONG_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + EXTRN_MDL_NAME{{ extrn_mdl_name_lbcs }} + ICS_OR_LBCSLBCS + BOUNDARY_LEN{{ boundary_long_len_hrs }} + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GEFS_INPUT_SUBDIR#subdirGE# + GDASENKF_INPUT_SUBDIR#subdirGDAS# + GDAS_MEM_NAME#memNameGDAS# + + + + {%- for h in range(extrn_mdl_lbcs_offset_hrs, boundary_long_len_hrs+extrn_mdl_lbcs_offset_hrs+1, bc_update_interval) %} + {%- if machine in ["WCOSS2"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/gfs.@Y@m@d/@H/atmos/gfs.t@Hz.pgrb2.0p25.f{{ "%03d" % h }} + {%- elif machine in ["ORION"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/gdas.@Y@m@d/@H/atmos/gdas.t@Hz.atmf{{ "%03d" % h }}.nc + {%- else %} + {%- if extrn_mdl_name_lbcs in ["GEFS"] %} + {{ extrn_mdl_sysbasedir_lbcs }}/#subdirGE#/@y@j@H000{{ "%03d" % h }} + {%- else %} + {{ extrn_mdl_sysbasedir_lbcs }}/@y@j@H000{{ "%03d" % h }} + {%- endif %} + {%- endif %} + {%- endfor %} + + + + - + + &RSRV_DEFAULT; + &WALL_LIMIT_PRE; + &LOAD_MODULES_RUN_TASK_FP; "&MAKE_ICS_TN;" "&JOBSDIR;/JREGIONAL_MAKE_ICS" - {{ nnodes_make_ics }}:ppn={{ ppn_make_ics }} - {{ wtime_make_ics }} - &NCORES_PER_NODE; - &MAKE_ICS_TN;{{ uscore_ensmem_name }} - &LOGDIR;/&MAKE_ICS_TN;{{ uscore_ensmem_name }}_@Y@m@d@H.log + &RESOURCES_MAKE_ICS; + &NATIVE_ALL; + &WALLTIME_MAKE_ICS; + &NODESIZE_ALL; + &TAG;_&MAKE_ICS_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&MAKE_ICS_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d CDATE@Y@m@d@H CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} - + &LOGDIR;/&MAKE_GRID_TN;_task_complete.txt @@ -327,25 +994,38 @@ MODULES_RUN_TASK_FP script. ************************************************************************ ************************************************************************ --> - + + {% for h in range(0, boundary_proc_group_num) %}{{ " %02d" % h }}{% endfor %} + + &RSRV_DEFAULT; + &WALL_LIMIT_PRE; + &LOAD_MODULES_RUN_TASK_FP; "&MAKE_LBCS_TN;" "&JOBSDIR;/JREGIONAL_MAKE_LBCS" - {{ nnodes_make_lbcs }}:ppn={{ ppn_make_lbcs }} - {{ wtime_make_lbcs }} - &NCORES_PER_NODE; - &MAKE_LBCS_TN;{{ uscore_ensmem_name }} - &LOGDIR;/&MAKE_LBCS_TN;{{ uscore_ensmem_name }}_@Y@m@d@H.log + &RESOURCES_MAKE_LBCS; + &NATIVE_ALL; + &WALLTIME_MAKE_LBCS; + &NODESIZE_ALL; + &TAG;_&MAKE_LBCS_TN;_#bcgrp#{{ uscore_ensmem_name }} + &LOGDIR;/&MAKE_LBCS_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H_#bcgrp#.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d CDATE@Y@m@d@H CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + bcgrp#bcgrp# + bcgrpnum{{ boundary_proc_group_num }} - + + + + + &LOGDIR;/&MAKE_GRID_TN;_task_complete.txt @@ -365,82 +1045,2706 @@ MODULES_RUN_TASK_FP script. + + +{% if do_ensemble %} + +{% endif %} + +{%- endif %} +{%- if not do_ensfcst %} +{%- if do_ensemble %} + + + {%- for m in range(1, num_ens_members+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} +{%- endif %} + +{%- if do_spinup %} + - + - &RSRV_FCST; - &LOAD_MODULES_RUN_TASK_FP; "&RUN_FCST_TN;" "&JOBSDIR;/JREGIONAL_RUN_FCST" - {% if machine in ["JET", "HERA"] %} - {{ ncores_run_fcst }} - {{ native_run_fcst }} - {% else %} - {{ nnodes_run_fcst }}:ppn={{ ppn_run_fcst }} - &NCORES_PER_NODE; - {% endif %} - {{ wtime_run_fcst }} - &RUN_FCST_TN;{{ uscore_ensmem_name }} - &LOGDIR;/&RUN_FCST_TN;{{ uscore_ensmem_name }}_@Y@m@d@H.log + &RSRV_DEFAULT; + &WALL_LIMIT_PRE; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PREPSTART_TN;" "&JOBSDIR;/JREGIONAL_RUN_PREPSTART" + + &RESOURCES_PREP_CYC; + &NATIVE_ALL; + &WALLTIME_PREP_CYC; + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&PREP_CYC_SPINUP_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&PREP_CYC_SPINUP_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d CDATE@Y@m@d@H CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + FG_ROOT&FG_ROOT; + LBCS_ROOT&FG_ROOT; + CYCLE_TYPEspinup + {%- if do_ensinit %} + CYCLE_SUBTYPEensinit + {%- endif %} SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} - ENSMEM_INDX#{{ ensmem_indx_name }}# - + NWGES_BASEDIR&NWGES_BASEDIR; + - - - - + + + + + {%- for h in cycl_hrs_spinstart %} + {{ h }}@H + {%- endfor %} + + + + {%- for h in range(0,lbcs_search_hrs) %} + + {%- endfor %} + +{%- if do_retro %} + {%- if not do_ensemble %} + &FG_ROOT;/@Y@m@d@H/{{ slash_ensmem_subdir }}/fcst_fv3lam/INPUT/gfs_ctrl.nc + {%- endif %} +{%- else %} + @Y@m@d@H@M00 +{%- endif %} + + + + {%- for h in cycl_hrs_spinstart %} + {{ h }}@H + {%- endfor %} +{%- if do_retro %} + &FG_ROOT;/@Y@m@d@H/{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res +{%- else %} + @Y@m@d@H@M00 + &FG_ROOT;/@Y@m@d@H/{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res +{%- endif %} + + + +{% if do_ensinit -%} - + + + &RSRV_FCST; + &WALL_LIMIT_FCST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_FCST_TN;" "&JOBSDIR;/JREGIONAL_RUN_FCST" + &RESOURCES_FCST_SPINUP; + &WALLTIME_FCST_SPINUP; + &NATIVE_FCST_SPINUP; + &NODESIZE_ALL; + &TAG;_&RUN_FCST_TN;_ensinit{{ uscore_ensmem_name }} + &LOGDIR;/&RUN_FCST_TN;_ensinit_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + ENSMEM_INDX#{{ ensmem_indx_name }}# + CYCLE_TYPEspinup + CYCLE_SUBTYPEensinit + NWGES_BASEDIR&NWGES_BASEDIR; + RESTART_HRS0 - {% for h in range(0, fcst_len_hrs+1) %}{{ " %03d" % h }}{% endfor %} + + + + {%- for h in cycl_hrs_spinstart %} + {{ h }}@H + {%- endfor %} + + + + - + + + &RSRV_DEFAULT; - &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POST" - {{ nnodes_run_post }}:ppn={{ ppn_run_post }} - {{ wtime_run_post }} - &NCORES_PER_NODE; - &RUN_POST_TN;{{ uscore_ensmem_name }}_f#fhr# - &LOGDIR;/&RUN_POST_TN;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + &WALL_LIMIT_SAVE_RESTART; + &LOAD_MODULES_RUN_TASK_FP; "&SAVE_RESTART_TN;" "&JOBSDIR;/JREGIONAL_SAVE_RESTART" + &RESOURCES_SAVE_RESTART; + &NATIVE_ALL; + &WALLTIME_SAVE_RESTART; + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&SAVE_RESTART_TN;_ensinit{{ uscore_ensmem_name }} + &LOGDIR;/&SAVE_RESTART_TN;_ensinit_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; PDY@Y@m@d CDATE@Y@m@d@H CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} cyc@H - fhr#fhr# + fhr0 + CYCLE_TYPEspinup + CYCLE_SUBTYPEensinit + + @Y@m@d@H@M00 + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_ensinit/RESTART/@Y@m@d.@H@M@S.coupler.res + + + + + + + + &RSRV_DEFAULT; + &WALL_LIMIT_PRE; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PREPSTART_TN;" "&JOBSDIR;/JREGIONAL_RUN_PREPSTART" + &RESOURCES_PREP_CYC; + &NATIVE_ALL; + &WALLTIME_PREP_CYC; + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&PREP_CYC_SPINUP_TN;_ensinit{{ uscore_ensmem_name }} + &LOGDIR;/&PREP_CYC_SPINUP_TN;_ensinit_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + FG_ROOT&FG_ROOT; + LBCS_ROOT&FG_ROOT; + CYCLE_TYPEspinup + CYCLE_SUBTYPEspinup + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + NWGES_BASEDIR&NWGES_BASEDIR; + + + + + + + + + &RSRV_ENKF; + &WALL_LIMIT_RECENTER; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_RECENTER_TN;" &JOBSDIR;/JREGIONAL_RUN_RECENTER + &RESOURCES_RUN_RECENTER; + &NATIVE_ALL; + &WALLTIME_RUN_RECENTER; + &NODESIZE_ALL; + &TAG;_&RUN_RECENTER_TN;_spinup + &LOGDIR;/&RUN_RECENTER_TN;_spinup__&TAG;@Y@m@d@H.log + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + + nens{{ num_ens_members }} + PDY@Y@m@d + CDATE@Y@m@d@H + cyc@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + ENSCTRL_CYCLE_DIR&ENSCTRL_CYCLE_BASEDIR;/@Y@m@d@H + ENSCTRL_CYCLE_ROOT&ENSCTRL_CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + CYCLE_TYPEspinup + + + + {%- for m in range(1, num_ens_members+1) %} + + {%- endfor %} + &ENSCTRL_COMOUT_DIR;/@H_spinup/nonvarcldanl_complete.txt + + + +{%- endif %} + +{%- if not do_ensemble %} +{%- if do_sddacycle %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + {% if machine in ["JET", "HERA"] -%} + {{ ncores_run_anal }} + {{ native_run_anal }} &RRFS_RESERVE; + {% else -%} + {{ nnodes_run_anal }}:ppn={{ ppn_run_anal }} + &NCORES_PER_NODE; + {% endif -%} + {{ wtime_run_anal }} + &TAG;_&ANAL_SD_GSI_TN;_#type#{{ uscore_ensmem_name }} + &LOGDIR;/&ANAL_SD_GSI_TN;{{ uscore_ensmem_name }}_#type#_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPE#type# + GSI_TYPEANALYSIS + OB_TYPEAERO + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens{{ num_ens_members }} + + + + @Y@m@d@H@M00 + + {%- if use_rrfse_ens %} + {%- if do_retro %} + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + {%- endif %} + {%- endif %} + + + + +{%- endif %} + + +{%- if do_dacycle %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&ANAL_GSI_TN;_spinup{{ uscore_ensmem_name }} + &LOGDIR;/&ANAL_GSI_TN;{{ uscore_ensmem_name }}_spinup_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEspinup + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens{{ num_ens_members }} + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + OB_TYPEconv_dbz + {%- endif %} + + + + @Y@m@d@H@M00 + + {%- if do_sddacycle %} + + {%- endif %} + {%- if use_rrfse_ens %} + {%- if do_retro %} + + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + + {%- endif %} + + + + {%- for h in cycl_hrs_prodstart_ens %} + {{ h }}@H + {%- endfor %} + + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + {%- for h in cycl_hrs_prodstart_ens %} + {{ h }}@H + {%- endfor %} + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + + {%- endif %} + {%- endif %} + + + + + + + + &RSRV_DEFAULT; + &WALL_LIMIT_POST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POSTANAL" + &RESOURCES_POSTANAL; + &NATIVE_ALL; + &WALLTIME_POSTANAL; + &NODESIZE_ALL; + &TAG;_&POSTANAL_TN;_spinup{{ uscore_ensmem_name }} + &LOGDIR;/&POSTANAL_TN;{{ uscore_ensmem_name }}_spinup_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEspinup + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens{{ num_ens_members }} + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + OB_TYPEconv_dbz + {%- endif %} + + + + + + + +{%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&HYBRID_RADAR_REF_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&HYBRID_RADAR_REF_TN;_spinup + &LOGDIR;/&HYBRID_RADAR_REF_TN;spinup_&TAG;@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEspinup + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens30 + OB_TYPEradardbz + + + + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + + + + +{% endif -%} + +{%- if do_gsidiag_offline %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_GSIDIAG" + &RESOURCES_GSIDIAG; + &NATIVE_ALL; + &WALLTIME_GSIDIAG; + &NODESIZE_ALL; + &TAG;_&ANAL_GSIDIAG_TN;_spinup + &LOGDIR;/&ANAL_GSIDIAG_TN;spinup_&TAG;@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + CYCLE_TYPEspinup + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR + SATBIAS_DIR&NWGES_BASEDIR;/satbias + + + + +{%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + +{%- endif %} + + + + + +{%- endif %} + +{% endif -%} + +{%- if do_refl2tten %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_REFL2TTEN" + {{ nnodes_run_ref2tten }}:ppn={{ ppn_run_ref2tten }} + {{ wtime_run_ref2tten }} + {{ memo_run_ref2tten }} + &NODESIZE_ALL; + &TAG;_&RADAR_REFL2TTEN_TN;_spinup + &LOGDIR;/&RADAR_REFL2TTEN_TN;_spinup_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEspinup + MEM_TYPEMEMBER + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + + + + + + + + + + + + + +{%- endif %} + +{%- if do_jedi_envar_ioda %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "jedienvar_ioda" "&JOBSDIR;/JREGIONAL_JEDIENVAR_IODA" + {{ nnodes_run_jedienvar_ioda }}:ppn={{ ppn_run_jedienvar_ioda }} + {{ wtime_run_jedienvar_ioda }} + &NODESIZE_ALL; + {{ memo_run_jedienvar_ioda }} + &TAG;_&JEDI_ENVAR_IODA_TN;_spinup + &LOGDIR;/&JEDI_ENVAR_IODA_TN;_spinup_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEspinup + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + + + + + + + + + +{%- endif %} + +{%- if do_nonvar_cldanal %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_NONVARCLD" + + &RESOURCES_NONVAR_CLD; + &WALLTIME_NONVAR_CLD; + &NATIVE_ALL; + &NODESIZE_ALL; + + &TAG;_&CLDANL_NONVAR_TN;_spinup{{ uscore_ensmem_name }} + &LOGDIR;/&CLDANL_NONVAR_TN;_spinup_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEspinup + MEM_TYPEMEMBER + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + + + + + {%- if do_enkfupdate %} + + {%- if do_enkf_radar_ref %} + + {%- else %} + + {%- endif %} + + {%- elif do_envar_radar_ref and not do_envar_radar_ref_once %} - - &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/dynf#fhr#.nc - &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/phyf#fhr#.nc + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + - + {%- else %} + + {%- endif %} + + - + - +{%- endif %} +{%- endif %} + + -{% if do_ensemble %} - -{% endif %} + &RSRV_FCST; + &WALL_LIMIT_FCST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_FCST_TN;" "&JOBSDIR;/JREGIONAL_RUN_FCST" + &RESOURCES_FCST_SPINUP; + &WALLTIME_FCST_SPINUP; + &NATIVE_FCST_SPINUP; + &NODESIZE_ALL; + &TAG;_&RUN_FCST_TN;_spinup{{ uscore_ensmem_name }} + &LOGDIR;/&RUN_FCST_TN;_spinup_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + ENSMEM_INDX#{{ ensmem_indx_name }}# + CYCLE_TYPEspinup + NWGES_BASEDIR&NWGES_BASEDIR; + RESTART_HRS1 + + + {%- if do_dacycle and do_refl2tten and do_nonvar_cldanal%} + + + + + {%- elif do_dacycle and do_nonvar_cldanal%} + + {%- elif do_dacycle and do_refl2tten%} + + {%- elif do_dacycle %} + {%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + + {%- else %} + + {%- endif %} + {%- elif do_enkfupdate or do_enkf_radar_ref %} + + + {%- for h in cycl_hrs_spinstart %} + {{ h }}@H + {%- endfor %} + + + {%- if do_ensinit %} + + {%- else %} + + {%- endif %} + + + {%- else %} + + {%- endif %} + + + + + + + {% for h in range(da_cycle_interval_hrs, fcst_len_hrs_spinup+da_cycle_interval_hrs, da_cycle_interval_hrs) %}{{ " %03d" % h }}{% endfor %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_SAVE_RESTART; + &LOAD_MODULES_RUN_TASK_FP; "&SAVE_RESTART_TN;" "&JOBSDIR;/JREGIONAL_SAVE_RESTART" + &RESOURCES_SAVE_RESTART; + &NATIVE_ALL; + &WALLTIME_SAVE_RESTART; + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&SAVE_RESTART_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&SAVE_RESTART_TN;_spinup_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + CYCLE_TYPEspinup + + + + @Y@m@d@H@M00 + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/coupler.res + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res + + + + + + + + +{% if do_post_spinup %} + + + + {% for h in range(0, fcst_len_hrs_spinup+1) %}{{ " %03d" % h }}{% endfor %} + + + + &RSRV_POST; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POST" + &RESOURCES_RUN_POST; + &NATIVE_ALL; + &WALLTIME_RUN_POST; + &NODESIZE_ALL; + &TAG;_&RUN_POST_TN;_spinup{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_POST_TN;_spinup_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + CYCLE_TYPEspinup + TMMARKtm00 + + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/log.atm.f#fhr# + + + + + + + &RSRV_PRDGEN; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PRDGEN_TN;" "&JOBSDIR;/JREGIONAL_RUN_PRDGEN" + &RESOURCES_RUN_PRDGEN; + &NATIVE_ALL; + &WALLTIME_RUN_PRDGEN; + &MEMO_RUN_PRDGEN; + &NODESIZE_ALL; + &TAG;_&RUN_PRDGEN_TN;_spinup{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_PRDGEN_TN;_spinup_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + CYCLE_TYPEspinup + TMMARKtm00 + + + + + + + + +{%- endif %} + + +{%- endif %} + +{%- if do_ensemble %} + +{%- endif %} + +{%- endif %} + + +{%- if do_ensemble %} + + + {%- for m in range(1, num_ens_members+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} +{%- endif %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_PRE; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PREPSTART_TN;" "&JOBSDIR;/JREGIONAL_RUN_PREPSTART" + &RESOURCES_PREP_CYC; + &NATIVE_ALL; + &WALLTIME_PREP_CYC; + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&PREP_CYC_PROD_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&PREP_CYC_PROD_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + FG_ROOT&FG_ROOT; + LBCS_ROOT&FG_ROOT; + CYCLE_TYPEprod + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + NWGES_BASEDIR&NWGES_BASEDIR; + + + {%- if do_ensfcst %} + + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/DA_OUTPUT/coupler.res + + + {%- else %} + + + + + {%- for h in cycl_hrs_prodstart %} + {{ h }}@H + {%- endfor %} + +{%- if do_spinup %} +{%- if do_retro %} + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res +{% else %} + + + @Y@m@d@H@M00 + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res + + + @Y@m@d@H@M00 + + {%- for h in range(da_cycle_interval_hrs, 6+1, da_cycle_interval_hrs) %} + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + +{%- endif %} +{% else %} +{%- if do_retro %} + + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/ics/gfs_data.tile7.halo0.nc + + {%- for h in range(0, extrn_mdl_ics_offset_hrs+1) %} + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/lbcs/gfs_bndy.tile7.{{ "%03d" % boundary_len_hrs }}.nc + {%- endfor %} + + +{% else %} + + @Y@m@d@H@M00 + + {%- if not is_rtma %} + + + + + {%- endif %} + +{%- endif %} +{%- endif %} + + + + {%- for h in cycl_hrs_prodstart %} + {{ h }}@H + {%- endfor %} +{%- if do_retro %} + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res +{% else %} + + + @Y@m@d@H@M00 + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.fv_tracer.res.tile1.nc + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.fv_core.res.tile1.nc + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.phy_data.nc + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.sfc_data.nc + + + @Y@m@d@H@M00 + + {%- for h in range(da_cycle_interval_hrs+da_cycle_interval_hrs, 6+1, da_cycle_interval_hrs) %} + &FG_ROOT;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + +{%- endif %} + + +{%- endif %} + + + + +{%- if do_ensemble %} + +{%- endif %} + +{%- if not do_ensfcst %} +{%- if do_gsiobserver %} + + + + &RSRV_ENKF; + &WALL_LIMIT_RECENTER; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PREPSTART_TN;" "&JOBSDIR;/JREGIONAL_CALC_ENSMEAN" + &RESOURCES_RUN_RECENTER; + &NATIVE_ALL; + &WALLTIME_RUN_RECENTER; + &NODESIZE_ALL; + &TAG;_&CALC_ENSMEAN_TN; + &LOGDIR;/&CALC_ENSMEAN_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + cyc@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEprod + nens{{ num_ens_members }} + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + + + + {%- for m in range(1, num_ens_members+1) %} + + {%- endfor %} + + + + + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&OBSERVER_GSI_ENSMEAN_TN; + &LOGDIR;/&OBSERVER_GSI_ENSMEAN_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + cyc@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + GSI_TYPEOBSERVER + MEM_TYPEMEAN + SATBIAS_DIR&NWGES_BASEDIR;/satbias + + + + + {%- if do_enkf_radar_ref %} + + {%- endif %} + + &OBSPATH;/@Y@m@d@H.rap.t@Hz.prepbufr.tm00 + &OBSPATH;/rap.@Y@m@d/rap.t@Hz.prepbufr.tm00 + + + + + + + {%- if do_ensemble %} + + + {%- for m in range(1, num_ens_members+1) -%} + {%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%} + {{- fmtstr%m -}} + {%- endfor %} + {%- endif %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&OBSERVER_GSI_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&OBSERVER_GSI_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + cyc@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + GSI_TYPEOBSERVER + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + + + + + + + + + +{%- if do_ensemble %} + +{%- endif %} +{%- endif %} + +{%- if do_enkfupdate %} + + + &RSRV_ENKF; + &WALL_LIMIT_ANAL; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ENKFUPDT_TN;" &JOBSDIR;/JREGIONAL_RUN_ENKF + + &RESOURCES_RUN_ENKF; + &WALLTIME_RUN_ENKF; + &NODESIZE_ALL; + &TAG;_&RUN_ENKFUPDT_TN; + &LOGDIR;/&RUN_ENKFUPDT_TN;_&TAG;_@Y@m@d@H.log + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + + nens{{ num_ens_members }} + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + OB_TYPEconv + + + + + + +{%- endif %} + +{%- if do_enkf_radar_ref %} + + + &RSRV_ENKF; + &WALL_LIMIT_ANAL; + &LOAD_MODULES_RUN_TASK_FP; "&ENKF_RADAR_REF_TN;" &JOBSDIR;/JREGIONAL_RUN_ENKF + + &RESOURCES_RUN_ENKF; + &WALLTIME_RUN_ENKF; + &NODESIZE_ALL; + &TAG;_&ENKF_RADAR_REF_TN; + &LOGDIR;/&ENKF_RADAR_REF_TN;_&TAG;_@Y@m@d@H.log + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + + nens{{ num_ens_members }} + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + OB_TYPEradardbz + + + + + {%- if do_retro %} + + {%- for m in range(1, num_ens_members+1) %} + &NWGES_BASEDIR;/@Y@m@d@H/mem{{ "%04d" % m }}/observer_gsi/diag_conv_dbz_ges.@Y@m@d@H.nc4 + {%- endfor %} + + {%- endif %} + + + + +{%- endif %} + +{% if do_ensemble %} + + + {%- for m in range(1, num_ens_members+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} +{%- endif %} + +{%- if do_dacycle %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&ANAL_GSI_TN;_prod{{ uscore_ensmem_name }} + &LOGDIR;/&ANAL_GSI_TN;_&TAG;{{ uscore_ensmem_name }}_prod_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEprod + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens{{ num_ens_members }} + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + OB_TYPEconv_dbz + {%- endif %} + + + + @Y@m@d@H@M00 + + {%- if use_rrfse_ens %} + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + + {%- endif %} + + {%- if do_spinup %} + + + {%- for h in cycl_hrs_prodstart_ens %} + {{ h }}@H + {%- endfor %} + + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam_spinup/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + + + {%- for h in cycl_hrs_prodstart_ens %} + {{ h }}@H + {%- endfor %} + + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + {%- else %} + + {% for h in range(1, num_ens_members+1) %} + &RRFSE_FG_ROOT;/@Y@m@d@H/mem{{ "%04d" % h }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + {%- endfor %} + + {%- endif %} + + {%- endif %} + + + + + + + + &RSRV_DEFAULT; + &WALL_LIMIT_POST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POSTANAL" + &RESOURCES_POSTANAL; + &NATIVE_ALL; + &WALLTIME_POSTANAL; + &NODESIZE_ALL; + &TAG;_&POSTANAL_TN;_prod{{ uscore_ensmem_name }} + &LOGDIR;/&POSTANAL_TN;{{ uscore_ensmem_name }}_prod_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEprod + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens{{ num_ens_members }} + {%- if do_envar_radar_ref and do_envar_radar_ref_once %} + OB_TYPEconv_dbz + {%- endif %} + + + + + + + +{%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + + + + &RSRV_ANALYSIS; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&HYBRID_RADAR_REF_TN;" "&JOBSDIR;/JREGIONAL_RUN_ANAL" + &RESOURCES_ANAL_GSI; + &NATIVE_ANAL_GSI; + &WALLTIME_ANAL_GSI; + &NODESIZE_ALL; + &TAG;_&HYBRID_RADAR_REF_TN;_prod + &LOGDIR;/&HYBRID_RADAR_REF_TN;_prod_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + RRFSE_FG_ROOT&RRFSE_FG_ROOT; + CYCLE_TYPEprod + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR + SATBIAS_DIR&NWGES_BASEDIR;/satbias + nens30 + OB_TYPEradardbz + + + + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + + + + +{% endif -%} + +{%- if do_gsidiag_offline %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_RUN_GSIDIAG" + &RESOURCES_GSIDIAG; + &NATIVE_ALL; + &WALLTIME_GSIDIAG; + &NODESIZE_ALL; + &TAG;_&ANAL_GSIDIAG_TN;_prod + &LOGDIR;/&ANAL_GSIDIAG_TN;prod_&TAG;@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + CYCLE_TYPEprod + GSI_TYPEANALYSIS + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR + SATBIAS_DIR&NWGES_BASEDIR;/satbias + + + + +{%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + +{%- endif %} + + + + + +{%- endif %} + +{% endif -%} + +{%- if do_refl2tten %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_REFL2TTEN" + {{ nnodes_run_ref2tten }}:ppn={{ ppn_run_ref2tten }} + {{ wtime_run_ref2tten }} + {{ memo_run_ref2tten }} + &NODESIZE_ALL; + &TAG;_&RADAR_REFL2TTEN_TN;_prod + &LOGDIR;/&RADAR_REFL2TTEN_TN;_prod_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEprod + MEM_TYPEMEMBER + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + + + + + + + + + + + + + +{%- endif %} + +{%- if do_jedi_envar_ioda %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "jedienvar_ioda" "&JOBSDIR;/JREGIONAL_JEDIENVAR_IODA" + {{ nnodes_run_jedienvar_ioda }}:ppn={{ ppn_run_jedienvar_ioda }} + {{ wtime_run_jedienvar_ioda }} + &NODESIZE_ALL; + {{ memo_run_jedienvar_ioda }} + &TAG;_&JEDI_ENVAR_IODA_TN;_prod + &LOGDIR;/&JEDI_ENVAR_IODA_TN;_prod_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEprod + MEM_TYPEMEMBER + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + + + + + + + + + +{%- endif %} + +{%- if do_nonvar_cldanal %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_ANAL; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_ANAL_TN;" "&JOBSDIR;/JREGIONAL_NONVARCLD" + + &RESOURCES_NONVAR_CLD; + &WALLTIME_NONVAR_CLD; + &NATIVE_ALL; + &NODESIZE_ALL; + + &TAG;_&CLDANL_NONVAR_TN;_prod{{ uscore_ensmem_name }} + &LOGDIR;/&CLDANL_NONVAR_TN;_prod_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_TYPEprod + MEM_TYPEMEMBER + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + + + + + {%- if do_enkfupdate %} + + {%- if do_enkf_radar_ref %} + + {%- else %} + + {%- endif %} + + {%- elif do_envar_radar_ref and not do_envar_radar_ref_once %} + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + + + {%- for h in cycl_hrs_hyb_fv3lam_ens %} + {{ h }}@H + {%- endfor %} + + + + {%- else %} + + {%- endif %} + + + + + +{%- endif %} + +{%- if do_ensemble %} + +{%- endif %} +{%- endif %} + +{%- if do_recenter %} + + + &RSRV_ENKF; + &WALL_LIMIT_RECENTER; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_RECENTER_TN;" &JOBSDIR;/JREGIONAL_RUN_RECENTER + &RESOURCES_RUN_RECENTER; + &NATIVE_ALL; + &WALLTIME_RUN_RECENTER; + &NODESIZE_ALL; + &TAG;_&RUN_RECENTER_TN; + &LOGDIR;/&RUN_RECENTER_TN;_&TAG;_@Y@m@d@H.log + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + + nens{{ num_ens_members }} + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + CYCLE_ROOT&CYCLE_BASEDIR; + ENSCTRL_CYCLE_DIR&ENSCTRL_CYCLE_BASEDIR;/@Y@m@d@H + ENSCTRL_CYCLE_ROOT&ENSCTRL_CYCLE_BASEDIR; + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + ENSCTRL_NWGES_DIR&ENSCTRL_NWGES_BASEDIR;/@Y@m@d@H + cyc@H + + + {%- if do_ensfcst %} + + {%- for m in range(1, num_ens_members+1) %} + + {%- endfor %} + &ENSCTRL_NWGES_BASEDIR;/@Y@m@d@H/fcst_fv3lam/INPUT/coupler.res + + {%- else %} + + {%- if do_nonvar_cldanal %} + + {%- for m in range(1, num_ens_members+1) %} + + {%- endfor %} + + {%- elif do_enkf_radar_ref %} + + {%- elif do_enkfupdate %} + + {%- endif %} + + &ENSCTRL_COMOUT_DIR;/@H/nonvarcldanl_complete.txt + &ENSCTRL_COMOUT_DIR;/@H_spinup/nonvarcldanl_complete.txt + + + {% endif %} + + + +{%- endif %} + +{%- if do_save_da_output and do_ensemble %} + + + + {%- for m in range(1, num_ens_members_fcst+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_SAVE_RESTART; + &LOAD_MODULES_RUN_TASK_FP; "&SAVE_RESTART_TN;" "&JOBSDIR;/JREGIONAL_SAVE_DA_OUTPUT" + {{ nnodes_save_restart }}:ppn={{ ppn_save_restart }} + {{ wtime_save_restart }} + &NODESIZE_ALL; + {{ memo_save_da_output }} + &TAG;_&SAVE_DA_OUTPUT_TN;{{ uscore_ensmem_name }} + &LOGDIR;/&SAVE_DA_OUTPUT_TN;_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + CYCLE_TYPEprod + + + {%- if do_recenter %} + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + {%- elif do_nonvar_cldanal%} + + {%- elif do_enkf_radar_ref %} + + {%- elif do_enkfupdate %} + + {%- endif %} + + + + +{%- endif %} + +{% if do_ensemble %} + + + {%- for m in range(1, num_ens_members+1) -%}{%- set fmtstr=" %0"~ndigits_ensmem_names~"d" -%}{{- fmtstr%m -}}{%- endfor %} +{%- endif %} + + + &RSRV_FCST; + &WALL_LIMIT_FCST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_FCST_TN;" "&JOBSDIR;/JREGIONAL_RUN_FCST" + + &RESOURCES_FCST_PROD; + &WALLTIME_FCST_PROD; + &NATIVE_FCST_PROD; + &NODESIZE_ALL; + &TAG;_&RUN_FCST_TN;_prod{{ uscore_ensmem_name }} + &LOGDIR;/&RUN_FCST_TN;_prod_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + ENSMEM_INDX#{{ ensmem_indx_name }}# + CYCLE_TYPEprod + NWGES_BASEDIR&NWGES_BASEDIR; + RESTART_HRS{{ restart_hrs_prod }} + + + {%- if do_ensfcst %} + {%- if do_recenter %} + + {%- else %} + + {%- endif %} + {%- else %} + {%- if do_dacycle and do_refl2tten and do_nonvar_cldanal%} + + + + + {%- elif do_dacycle and do_nonvar_cldanal%} + + {%- elif do_dacycle and do_refl2tten%} + + {%- elif do_dacycle %} + {%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + + {%- else %} + + {%- endif %} + {%- elif do_enkfupdate or do_enkf_radar_ref %} + {%- if do_recenter %} + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + {%- elif do_nonvar_cldanal%} + + {%- elif do_enkf_radar_ref %} + + {%- else %} + + {%- endif %} + {%- else %} + + {%- endif %} + {%- endif %} + + + + + + + + &RSRV_FCST; + &WALL_LIMIT_FCST; + + &LOAD_MODULES_RUN_TASK_FP; "&RUN_FCST_TN;" "&JOBSDIR;/JREGIONAL_RUN_FCST" + + &RESOURCES_FCST_PROD; + &WALLTIME_FCST_PROD_LONG; + &NATIVE_FCST_PROD; + &NODESIZE_ALL; + &TAG;_&RUN_FCST_TN;_prod{{ uscore_ensmem_name }} + &LOGDIR;/&RUN_FCST_TN;_prod_&TAG;{{ uscore_ensmem_name }}_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + HH@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + ENSMEM_INDX#{{ ensmem_indx_name }}# + CYCLE_TYPEprod + NWGES_BASEDIR&NWGES_BASEDIR; + RESTART_HRS{{ restart_hrs_prod_long }} + + + {%- if do_dacycle and do_refl2tten and do_nonvar_cldanal%} + + + + + {%- elif do_dacycle and do_nonvar_cldanal%} + + {%- elif do_dacycle and do_refl2tten%} + + {%- elif do_dacycle %} + {%- if do_envar_radar_ref and not do_envar_radar_ref_once %} + + {%- else %} + + {%- endif %} + {%- elif do_enkfupdate or do_enkf_radar_ref %} + {%- if do_recenter %} + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + + {%- for h in cycl_hrs_recenter %} + {{ h }}@H + {%- endfor %} + + + + {%- elif do_nonvar_cldanal%} + + {%- elif do_enkf_radar_ref %} + + {%- else %} + + {%- endif %} + {%- else %} + + {%- endif %} + + + + +{%- if not do_ensfcst %} +{%- if not is_rtma %} + + + + {{ restart_hrs_prod }} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_SAVE_RESTART; + &LOAD_MODULES_RUN_TASK_FP; "&SAVE_RESTART_TN;" "&JOBSDIR;/JREGIONAL_SAVE_RESTART" + {{ nnodes_save_restart }}:ppn={{ ppn_save_restart }} + {{ wtime_save_restart }} + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&SAVE_RESTART_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&SAVE_RESTART_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SURFACE_DIR&NWGES_BASEDIR;/surface + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + CYCLE_TYPEprod + + + + @Y@m@d@H@M00 + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/coupler.res + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + + + + + + + + + + {{ restart_hrs_prod_long }} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_SAVE_RESTART; + &LOAD_MODULES_RUN_TASK_FP; "&SAVE_RESTART_TN;" "&JOBSDIR;/JREGIONAL_SAVE_RESTART" + {{ nnodes_save_restart }}:ppn={{ ppn_save_restart }} + {{ wtime_save_restart }} + &NODESIZE_ALL; + &MEMO_PREP_CYC; + &TAG;_&SAVE_RESTART_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&SAVE_RESTART_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SURFACE_DIR&NWGES_BASEDIR;/surface + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + CYCLE_TYPEprod + + + + @Y@m@d@H@M00 + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/coupler.res + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/RESTART/@Y@m@d.@H0000.coupler.res + + + + + + + +{%- endif %} +{%- endif %} + +{%- if do_post_prod %} + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_len_hrs+1, postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_POST; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POST" + &RESOURCES_RUN_POST; + &NATIVE_ALL; + &WALLTIME_RUN_POST; + &NODESIZE_ALL; + &TAG;_&RUN_POST_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_POST_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/log.atm.f#fhr# + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_long_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_long_len_hrs+1, postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_POST; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_POST_TN;" "&JOBSDIR;/JREGIONAL_RUN_POST" + &RESOURCES_RUN_POST; + &NATIVE_ALL; + &WALLTIME_RUN_POST; + &NODESIZE_ALL; + &TAG;_&RUN_POST_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_POST_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + &CYCLE_BASEDIR;/@Y@m@d@H{{ slash_ensmem_subdir }}/fcst_fv3lam/log.atm.f#fhr# + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_len_hrs+1,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_PRDGEN; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PRDGEN_TN;" "&JOBSDIR;/JREGIONAL_RUN_PRDGEN" + &RESOURCES_RUN_PRDGEN; + &NATIVE_ALL; + &WALLTIME_RUN_PRDGEN; + &NODESIZE_ALL; + &MEMO_RUN_PRDGEN; + &TAG;_&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_PRDGEN_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_long_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_long_len_hrs+1, postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_PRDGEN; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PRDGEN_TN;" "&JOBSDIR;/JREGIONAL_RUN_PRDGEN" + &RESOURCES_RUN_PRDGEN; + &NATIVE_ALL; + &WALLTIME_RUN_PRDGEN; + &NODESIZE_ALL; + &MEMO_RUN_PRDGEN; + &TAG;_&RUN_PRDGEN_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_PRDGEN_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + + +{%- endif %} + + + +{% if do_minmaxt %} + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_len_hrs+1,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_MINT; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_MINT_TN;" "&JOBSDIR;/JREGIONAL_RUN_MINT" + &RESOURCES_RUN_MINT; + &NATIVE_ALL; + &WALLTIME_RUN_MINT; + &NODESIZE_ALL; + &MEMO_RUN_MINT; + &TAG;_&RUN_MINT_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_MINT_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_long_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_long_len_hrs+1, postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_MINT; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PRDGEN_TN;" "&JOBSDIR;/JREGIONAL_RUN_MINT" + &RESOURCES_RUN_MINT; + &NATIVE_ALL; + &WALLTIME_RUN_MINT; + &NODESIZE_ALL; + &MEMO_RUN_MINT; + &TAG;_&RUN_MINT_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_MINT_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_len_hrs+1,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_MAXT; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_MAXT_TN;" "&JOBSDIR;/JREGIONAL_RUN_MAXT" + &RESOURCES_RUN_MAXT; + &NATIVE_ALL; + &WALLTIME_RUN_MAXT; + &NODESIZE_ALL; + &MEMO_RUN_MAXT; + &TAG;_&RUN_MAXT_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_MAXT_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + + + + + +{%- if postproc_nsout_min > 0 %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_nfhmax_hrs*60, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d-00-00 " % h }}{% endfor %} + {%- else %} + {{ "000-%02d-%02d" % ( dt_atmos//60,dt_atmos%60 ) }} {% for h in range(postproc_nsout_min, postproc_long_len_hrs*60+1, postproc_nsout_min) %}{{ " %03d-%02d-00 " % ( h//60,h-(h//60)*60 ) }}{% endfor %} + {%- endif %} +{%- else %} + {%- if postproc_nfhmax_hrs < postproc_long_len_hrs %} + {% for h in range(0, postproc_nfhmax_hrs,postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- for h in range(postproc_nfhmax_hrs, postproc_long_len_hrs+1, postproc_nfhout_hrs) %}{{ " %03d " % h }}{% endfor %} + {%- else %} + {% for h in range(0, postproc_long_len_hrs+1, postproc_nfhout_hf_hrs) %}{{ " %03d" % h }}{% endfor %} + {%- endif %} +{%- endif %} + + + + &RSRV_MAXT; + &WALL_LIMIT_POST; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_PRDGEN_TN;" "&JOBSDIR;/JREGIONAL_RUN_MAXT" + &RESOURCES_RUN_MAXT; + &NATIVE_ALL; + &WALLTIME_RUN_MAXT; + &NODESIZE_ALL; + &MEMO_RUN_MAXT; + &TAG;_&RUN_MAXT_TN;{{ uscore_ensmem_name }}_f#fhr# + &LOGDIR;/&RUN_MAXT_TN;_&TAG;{{ uscore_ensmem_name }}_f#fhr#_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + cyc@H + fhr#fhr# + TMMARKtm00 + + + + + + +{%- endif %} + + +{% if do_bufrsnd %} + + + + &RSRV_POST; + &WALL_LIMIT_BUFRSND; + &LOAD_MODULES_RUN_TASK_FP; "&RUN_BUFRSND_TN;" "&JOBSDIR;/JREGIONAL_BUFRSND" + {{ nnodes_run_bufrsnd }}:ppn={{ ppn_run_bufrsnd }} + {{ wtime_run_bufrsnd }} + &NODESIZE_ALL; + &TAG;_&RUN_BUFRSND_TN; + &LOGDIR;/&RUN_BUFRSND_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + NWGES_DIR&NWGES_BASEDIR;/@Y@m@d@H + SLASH_ENSMEM_SUBDIR + cyc@H + TMMARKtm00 + + + &CYCLE_BASEDIR;/@Y@m@d@H/fcst_fv3lam/log.atm.f000 + + + +{%- endif %} + +{%- if machine in ["JET", "HERA"] %} +{%- if not do_ensemble %} + + + + {{ tilelabels }} + {{ tilesets }} + + + &RSRV_GRAPHICS; + &WALL_LIMIT_GRAPHICS; + + {{ wtime_run_fcst_long }} + {{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }} + &TAG;_python{{ uscore_ensmem_name }}_@H_#tilelabel# + &LOGDIR;/python_&TAG;{{ uscore_ensmem_name }}_#tilelabel#.log + &LOAD_MODULES_RUN_TASK_FP; "run_graphics" "&JOBSDIR;/JREGIONAL_RUN_PYTHON_GRAPHICS" + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GRAPHICS_TYPEmaps + TILES#tileset# + TILELABEL#tilelabel# + ENSCTRL_COMOUT_BASEDIR&ENSCTRL_COMOUT_BASEDIR; + + + +{%- if postproc_nsout_min > 0 %} + + +{%- else %} + + +{%- endif %} + + + + + + + + &RSRV_GRAPHICS; + &WALL_LIMIT_GRAPHICS; + + {{ wtime_run_fcst_long }} + {{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }} + &TAG;_python{{ uscore_ensmem_name }}_@H_skewts + &LOGDIR;/python_skewts_&TAG;{{ uscore_ensmem_name }}_@H.log + &LOAD_MODULES_RUN_TASK_FP; "run_graphics" "&JOBSDIR;/JREGIONAL_RUN_PYTHON_GRAPHICS" + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GRAPHICS_TYPEskewts + ENSCTRL_COMOUT_BASEDIR&ENSCTRL_COMOUT_BASEDIR; + + + +{%- if postproc_nsout_min > 0 %} + + +{%- else %} + + +{%- endif %} + + + + +{%- endif %} +{%- endif %} + +{%- if do_ensemble %} + +{%- endif %} + + + + &RSRV_POST; + + &JOBSDIR;/../scripts/exregional_clean.ksh + 1:ppn=1 + 00:15:00 + &TAG;_&CLEAN_TN; + &LOGDIR;/&CLEAN_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + LOGDIR&LOGDIR; + CDATE@Y@m@d@H + NWGES_BASEDIR&NWGES_BASEDIR; +{%- if do_ensemble %} + nens{{ num_ens_members }} +{%- else %} + nens0 +{%- endif %} + + + + +{%- if machine in ["JET", "HERA"] %} + +{%- if do_ensemble %} + + + + &RSRV_HPSS; + + &JOBSDIR;/../scripts/exregional_archive_ens.ksh + 1:ppn=1 + 23:00:00 + 24G + &TAG;_&ARCHIVE_TN; + &LOGDIR;/&ARCHIVE_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + nens{{ num_ens_members }} + + + +{%- else %} + + + + &RSRV_HPSS; + + &JOBSDIR;/../scripts/exregional_archive.ksh + 1:ppn=1 + 08:00:00 + 80G + &TAG;_&ARCHIVE_TN; + &LOGDIR;/&ARCHIVE_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + PDY@Y@m@d + cyc@H + CDATE@Y@m@d@H + CYCLE_DIR&CYCLE_BASEDIR;/@Y@m@d@H + + + + + + + + + +{%- if postproc_nsout_min > 0 %} + +{%- else %} + +{%- endif %} + + + + + + +{%- endif %} +{%- endif %} + +{%- if machine in ["WCOSS2"] %} + + + + &RSRV_HPSS; + + &JOBSDIR;/../scripts/exregional_archive_emc.ksh + 1:ppn=1 + 08:00:00 + &TAG;_&ARCHIVE_TN; + &LOGDIR;/&ARCHIVE_TN;_&TAG;_@Y@m@d@H.log + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + CDATE@Y@m@d@H + + + + + + 00@H + 12@H + + + + + 00@H + 12@H + + + + + + +{%- endif %} + +{% if do_ensemble and do_ens_graphics %} +{%- if machine in ["JET", "HERA"] %} + + + + {{ tilelabels }} + {{ tilesets }} + + + &RSRV_GRAPHICS; + &WALL_LIMIT_GRAPHICS; + + {{ wtime_run_fcst }} + {{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }} + &TAG;_python_@H_#tilelabel# + &LOGDIR;/python_&TAG;_#tilelabel#.log + &LOAD_MODULES_RUN_TASK_FP; "run_graphics" "&JOBSDIR;/JREGIONAL_RUN_PYTHON_GRAPHICS" + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + CDATE@Y@m@d@H + PDY@Y@m@d + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GRAPHICS_TYPEenspanel + TILES#tileset# + TILELABEL#tilelabel# + ALL_LEADSFALSE + ENSCTRL_COMOUT_BASEDIR&ENSCTRL_COMOUT_BASEDIR; + + + + &ENSCTRL_COMOUT_DIR;/@H/&NET;.t@Hz.bgdawpf000.tm00.grib2 +{%- if postproc_nsout_min > 0 %} + {%- for m in range(1, 10) %} + + {%- endfor %} +{%- else %} + {%- for m in range(1, 10) %} + + {%- endfor %} +{%- endif %} + + + + + +{%- endif %} +{%- endif %} + +{%- if do_ensemble and do_ensfcst and do_enspost %} + + + {% for h in range(0, postproc_len_hrs+1) %}{{ " %03d" % h }}{% endfor %} + + + + &RSRV_DEFAULT; + &WALL_LIMIT_POST; + + {{ wtime_run_enspost }} + {{ nnodes_run_enspost }}:ppn={{ ppn_run_enspost }} + &TAG;_enspost_@H_#fhr# + &LOGDIR;/enspost_&TAG;_f#fhr#_@Y@m@d@H.log + &LOAD_MODULES_RUN_TASK_FP; "run_enspost" "&JOBSDIR;/JREGIONAL_RUN_ENSPOST" + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + CDATE@Y@m@d@H + PDY@Y@m@d + cyc@H + fhr#fhr# + ENSCTRL_COMOUT_BASEDIR&ENSCTRL_COMOUT_BASEDIR; + + + + &ENSCTRL_COMOUT_DIR;/@H/&NET;.t@Hz.bgsfcf#fhr#.tm00.grib2 + {%- for m in range(1, num_ens_members_fcst+1) %} + + {%- endfor %} + + + + + +{% if machine in ["JET", "HERA"] %} + + + + &RSRV_GRAPHICS; + &WALL_LIMIT_GRAPHICS; + + {{ wtime_run_enspost }} + {{ nnodes_run_graphics }}:ppn={{ ppn_run_graphics }} + &TAG;_python_@H_enspost_maps + &LOGDIR;/python_enspost_maps_&TAG;.log + &LOAD_MODULES_RUN_TASK_FP; "run_graphics" "&JOBSDIR;/JREGIONAL_RUN_PYTHON_GRAPHICS" + + GLOBAL_VAR_DEFNS_FP&GLOBAL_VAR_DEFNS_FP; + CDATE@Y@m@d@H + PDY@Y@m@d + cyc@H + SLASH_ENSMEM_SUBDIR{{ slash_ensmem_subdir }} + GRAPHICS_TYPEmaps + TILESfull + TILELABELfull + ALL_LEADSFALSE + ENSCTRL_COMOUT_BASEDIR&ENSCTRL_COMOUT_BASEDIR; + ENSPRODensprod + IMAGES_FNrrfs_ensprod.yml + + + + + + +{%- endif %} +{%- endif %} diff --git a/ush/templates/diag_table.FV3_GFS_v15_thompson_mynn_lam3km b/ush/templates/diag_table.FV3_GFS_v15_thompson_mynn_lam3km new file mode 100644 index 000000000..7c639e381 --- /dev/null +++ b/ush/templates/diag_table.FV3_GFS_v15_thompson_mynn_lam3km @@ -0,0 +1,340 @@ +{{ starttime.strftime("%Y%m%d.%H") }}Z.{{ cres }}.32bit.non-hydro.regional +{{ starttime.strftime("%Y %m %d %H %M %S") }} + +#output files +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +###"atmos_4xdaily", 6, "hours", 1, "days", "time" +"fv3_history", 3, "hours", 1, "hours", "time" +"fv3_history2d", 3, "hours", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +##"dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +##"dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +##"dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +#"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +##"dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +##"dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "q_rimef", "q_rimef", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pfnh", "pfnh", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refl_10cm", "refl_10cm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +#"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/ush/templates/diag_table.FV3_HRRR b/ush/templates/diag_table.FV3_HRRR index 1482af2aa..e30c17162 100644 --- a/ush/templates/diag_table.FV3_HRRR +++ b/ush/templates/diag_table.FV3_HRRR @@ -118,8 +118,9 @@ "gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 "gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 -#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 -#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rain_nc", "rain_nc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "water_nc", "water_nc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 @@ -132,8 +133,8 @@ "gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 @@ -158,9 +159,9 @@ "gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 @@ -176,6 +177,21 @@ "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 #"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 @@ -186,11 +202,13 @@ "gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dpt2m", "dpt2m", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "wetness", "wetness", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 @@ -265,10 +283,8 @@ "gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 @@ -282,20 +298,28 @@ "gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc", "snowc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +# "gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "transp_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "direvap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "canevap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno", "sublim", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs", "direvap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw", "canevap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans", "transp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_land", "snom_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_ice", "snom_ice", "fv3_history2d", "all", .false., "none", 2 # Aerosols (CCN, IN) from Thompson microphysics "gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 "gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 @@ -307,7 +331,7 @@ "gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 # Prognostic/diagnostic variables from MYNN "gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "CLDFRA_BL", "cldfra_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA", "cldfra", "fv3_history", "all", .false., "none", 2 "gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 "gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 "gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 @@ -317,15 +341,31 @@ "gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 # Prognostic/diagnostic variables from RUC LSM -"gfs_sfc", "snowfall_acc", "snowfall_acc", "fv3_history2d", "all", .false., "none", 2 -"gfs_sfc", "swe_snowfall_acc", "swe_snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "rhofr", "rhofr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_land", "snacc_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_land", "accswe_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_ice", "snacc_ice", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_ice", "accswe_ice", "fv3_history2d", "all", .false., "none", 2 # Stochastic physics -"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 -"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 - +#"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +#"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 +# +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snow", "snow", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "graupel", "graupel", "fv3_history2d", "all", .false., "none", 2 +# lightning threat indices +"gfs_sfc", "ltg1_max", "ltg1_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg2_max", "ltg2_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg3_max", "ltg3_max", "fv3_history2d", "all", .false., "none", 2 #============================================================================================= # #====> This file can be used with diag_manager/v2.0a (or higher) <==== @@ -359,3 +399,26 @@ # = 2 float # = 4 packed 16-bit integers # = 8 packed 1-byte (not tested?) +# This file contains diag_table entries for the RRFS-SD. +# It should be appended to the end of the diag_table before execution of the test. + +# Tracers +"gfs_dyn", "smoke", "smoke", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust", "dust", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "coarsepm", "coarsepm", "fv3_history", "all", .false., "none", 2 + +# Aerosols emission for smoke +"gfs_sfc", "emdust", "emdust", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emseas", "emseas", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emanoc", "emanoc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "coef_bb_dc", "coef_bb_c", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "min_fplume", "min_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "max_fplume", "max_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hwp", "hwp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ebb_smoke_hr", "ebb_smoke_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_hr", "frp_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_std_hr", "frp_std_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ebu_smoke", "ebu_smoke", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "smoke_ext", "smoke_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dust_ext", "dust_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "ext550", "ext550", "fv3_history", "all", .false., "none", 2 diff --git a/ush/templates/diag_table.FV3_HRRR_gf b/ush/templates/diag_table.FV3_HRRR_gf new file mode 100644 index 000000000..e30c17162 --- /dev/null +++ b/ush/templates/diag_table.FV3_HRRR_gf @@ -0,0 +1,424 @@ +{{ starttime.strftime("%Y%m%d.%H") }}Z.{{ cres }}.32bit.non-hydro.regional +{{ starttime.strftime("%Y %m %d %H %M %S") }} + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +#"atmos_4xdaily", 1, "hours", 1, "days", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rain_nc", "rain_nc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "water_nc", "water_nc", "fv3_history", "all", .false., "none", 2 + +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dpt2m", "dpt2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "wetness", "wetness", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt5", "soilt5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt6", "soilt6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt7", "soilt7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt8", "soilt8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt9", "soilt9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw5", "soilw5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw6", "soilw6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw7", "soilw7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw8", "soilw8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw9", "soilw9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_5", "soill5", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_6", "soill6", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_7", "soill7", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_8", "soill8", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_9", "soill9", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc", "snowc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +# "gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "transp_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "direvap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "canevap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno", "sublim", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs", "direvap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw", "canevap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans", "transp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_land", "snom_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_ice", "snom_ice", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# Prognostic/diagnostic variables from MYNN +"gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA", "cldfra", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "nupdraft", "nupdrafts", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "ktop_shallow", "ktop_shallow", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zol", "zol", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 +# Prognostic/diagnostic variables from RUC LSM +"gfs_sfc", "rhofr", "rhofr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_land", "snacc_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_land", "accswe_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_ice", "snacc_ice", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_ice", "accswe_ice", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +#"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +#"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 +# +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snow", "snow", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "graupel", "graupel", "fv3_history2d", "all", .false., "none", 2 +# lightning threat indices +"gfs_sfc", "ltg1_max", "ltg1_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg2_max", "ltg2_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg3_max", "ltg3_max", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) +# This file contains diag_table entries for the RRFS-SD. +# It should be appended to the end of the diag_table before execution of the test. + +# Tracers +"gfs_dyn", "smoke", "smoke", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust", "dust", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "coarsepm", "coarsepm", "fv3_history", "all", .false., "none", 2 + +# Aerosols emission for smoke +"gfs_sfc", "emdust", "emdust", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emseas", "emseas", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emanoc", "emanoc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "coef_bb_dc", "coef_bb_c", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "min_fplume", "min_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "max_fplume", "max_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hwp", "hwp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ebb_smoke_hr", "ebb_smoke_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_hr", "frp_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_std_hr", "frp_std_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ebu_smoke", "ebu_smoke", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "smoke_ext", "smoke_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dust_ext", "dust_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "ext550", "ext550", "fv3_history", "all", .false., "none", 2 diff --git a/ush/templates/diag_table.FV3_HRRR_gf_clm b/ush/templates/diag_table.FV3_HRRR_gf_clm new file mode 100644 index 000000000..c94e27d8d --- /dev/null +++ b/ush/templates/diag_table.FV3_HRRR_gf_clm @@ -0,0 +1,517 @@ +{{ starttime.strftime("%Y%m%d.%H") }}Z.{{ cres }}.32bit.non-hydro.regional +{{ starttime.strftime("%Y %m %d %H %M %S") }} + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +#"atmos_4xdaily", 1, "hours", 1, "days", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rain_nc", "rain_nc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "water_nc", "water_nc", "fv3_history", "all", .false., "none", 2 + +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dpt2m", "dpt2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "wetness", "wetness", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt5", "soilt5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt6", "soilt6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt7", "soilt7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt8", "soilt8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt9", "soilt9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw5", "soilw5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw6", "soilw6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw7", "soilw7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw8", "soilw8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw9", "soilw9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_5", "soill5", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_6", "soill6", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_7", "soill7", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_8", "soill8", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_9", "soill9", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc", "snowc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +# "gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "transp_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "direvap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "canevap_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno", "sublim", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs", "direvap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw", "canevap", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans", "transp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_land", "snom_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowmt_ice", "snom_ice", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# Prognostic/diagnostic variables from MYNN +"gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA", "cldfra", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "nupdraft", "nupdrafts", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "ktop_shallow", "ktop_shallow", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zol", "zol", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 +# Prognostic/diagnostic variables from RUC LSM +"gfs_sfc", "rhofr", "rhofr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_land", "snacc_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_land", "accswe_land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowfall_acc_ice", "snacc_ice", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "acsnow_ice", "accswe_ice", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +#"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +#"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 +# +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snow", "snow", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "graupel", "graupel", "fv3_history2d", "all", .false., "none", 2 +# lightning threat indices +"gfs_sfc", "ltg1_max", "ltg1_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg2_max", "ltg2_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg3_max", "ltg3_max", "fv3_history2d", "all", .false., "none", 2 +# CLM lake model +"gfs_sfc", "lakefrac", "lakefrac", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lakedepth", "lakedepth", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_t2m", "lake_t2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_q2m", "lake_q2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_albedo", "lake_albedo", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_h2osno2d", "lake_h2osno2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_sndpth2d", "lake_sndpth2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_snl2d", "lake_snl2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_t_grnd2d", "lake_t_grnd2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_savedtke12d", "lake_savedtke12d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_1", "lake_t_h2osoi_vol3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_2", "lake_t_h2osoi_vol3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_3", "lake_t_h2osoi_vol3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_4", "lake_t_h2osoi_vol3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_5", "lake_t_h2osoi_vol3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_6", "lake_t_h2osoi_vol3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_7", "lake_t_h2osoi_vol3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_8", "lake_t_h2osoi_vol3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_9", "lake_t_h2osoi_vol3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_10", "lake_t_h2osoi_vol3d_10", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_11", "lake_t_h2osoi_vol3d_11", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_12", "lake_t_h2osoi_vol3d_12", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_13", "lake_t_h2osoi_vol3d_13", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_14", "lake_t_h2osoi_vol3d_14", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_vol3d_15", "lake_t_h2osoi_vol3d_15", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_1", "lake_t_h2osoi_liq3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_2", "lake_t_h2osoi_liq3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_3", "lake_t_h2osoi_liq3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_4", "lake_t_h2osoi_liq3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_5", "lake_t_h2osoi_liq3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_6", "lake_t_h2osoi_liq3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_7", "lake_t_h2osoi_liq3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_8", "lake_t_h2osoi_liq3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_9", "lake_t_h2osoi_liq3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_10", "lake_t_h2osoi_liq3d_10", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_11", "lake_t_h2osoi_liq3d_11", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_12", "lake_t_h2osoi_liq3d_12", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_13", "lake_t_h2osoi_liq3d_13", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_14", "lake_t_h2osoi_liq3d_14", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_liq3d_15", "lake_t_h2osoi_liq3d_15", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_1", "lake_t_h2osoi_ice3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_2", "lake_t_h2osoi_ice3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_3", "lake_t_h2osoi_ice3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_4", "lake_t_h2osoi_ice3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_5", "lake_t_h2osoi_ice3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_6", "lake_t_h2osoi_ice3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_7", "lake_t_h2osoi_ice3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_8", "lake_t_h2osoi_ice3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_9", "lake_t_h2osoi_ice3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_10", "lake_t_h2osoi_ice3d_10", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_11", "lake_t_h2osoi_ice3d_11", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_12", "lake_t_h2osoi_ice3d_12", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_13", "lake_t_h2osoi_ice3d_13", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_14", "lake_t_h2osoi_ice3d_14", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_h2osoi_ice3d_15", "lake_t_h2osoi_ice3d_15", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_1", "lake_t_soisno3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_2", "lake_t_soisno3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_3", "lake_t_soisno3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_4", "lake_t_soisno3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_5", "lake_t_soisno3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_6", "lake_t_soisno3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_7", "lake_t_soisno3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_8", "lake_t_soisno3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_9", "lake_t_soisno3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_10", "lake_t_soisno3d_10", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_11", "lake_t_soisno3d_11", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_12", "lake_t_soisno3d_12", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_13", "lake_t_soisno3d_13", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_14", "lake_t_soisno3d_14", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_soisno3d_15", "lake_t_soisno3d_15", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_1", "lake_t_lake3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_2", "lake_t_lake3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_3", "lake_t_lake3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_4", "lake_t_lake3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_5", "lake_t_lake3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_6", "lake_t_lake3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_7", "lake_t_lake3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_8", "lake_t_lake3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_9", "lake_t_lake3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_t_lake3d_10", "lake_t_lake3d_10", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_1", "lake_icefrac3d_1", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_2", "lake_icefrac3d_2", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_3", "lake_icefrac3d_3", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_4", "lake_icefrac3d_4", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_5", "lake_icefrac3d_5", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_6", "lake_icefrac3d_6", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_7", "lake_icefrac3d_7", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_8", "lake_icefrac3d_8", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_9", "lake_icefrac3d_9", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "lake_icefrac3d_10", "lake_icefrac3d_10", "fv3_history", "all", .false., "none", 2 + +"gfs_sfc", "use_lake_model", "use_lake_model", "fv3_history2d","all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) +# This file contains diag_table entries for the RRFS-SD. +# It should be appended to the end of the diag_table before execution of the test. + +# Tracers +"gfs_dyn", "smoke", "smoke", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust", "dust", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "coarsepm", "coarsepm", "fv3_history", "all", .false., "none", 2 + +# Aerosols emission for smoke +"gfs_sfc", "emdust", "emdust", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emseas", "emseas", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "emanoc", "emanoc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "coef_bb_dc", "coef_bb_c", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "min_fplume", "min_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "max_fplume", "max_fplume", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hwp", "hwp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ebb_smoke_hr", "ebb_smoke_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_hr", "frp_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "frp_std_hr", "frp_std_hr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ebu_smoke", "ebu_smoke", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "smoke_ext", "smoke_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dust_ext", "dust_ext", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "ext550", "ext550", "fv3_history", "all", .false., "none", 2 diff --git a/ush/templates/diag_table.FV3_RAP b/ush/templates/diag_table.FV3_RAP new file mode 100644 index 000000000..1482af2aa --- /dev/null +++ b/ush/templates/diag_table.FV3_RAP @@ -0,0 +1,361 @@ +{{ starttime.strftime("%Y%m%d.%H") }}Z.{{ cres }}.32bit.non-hydro.regional +{{ starttime.strftime("%Y %m %d %H %M %S") }} + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +#"atmos_4xdaily", 1, "hours", 1, "days", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt5", "soilt5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt6", "soilt6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt7", "soilt7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt8", "soilt8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt9", "soilt9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw5", "soilw5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw6", "soilw6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw7", "soilw7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw8", "soilw8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw9", "soilw9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_5", "soill5", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_6", "soill6", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_7", "soill7", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_8", "soill8", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_9", "soill9", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# Prognostic/diagnostic variables from MYNN +"gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA_BL", "cldfra_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "nupdraft", "nupdrafts", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "ktop_shallow", "ktop_shallow", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zol", "zol", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 +# Prognostic/diagnostic variables from RUC LSM +"gfs_sfc", "snowfall_acc", "snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "swe_snowfall_acc", "swe_snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/ush/templates/field_table.FV3_GFS_v15_thompson_mynn_lam3km b/ush/templates/field_table.FV3_GFS_v15_thompson_mynn_lam3km new file mode 100644 index 000000000..50d29d0b8 --- /dev/null +++ b/ush/templates/field_table.FV3_GFS_v15_thompson_mynn_lam3km @@ -0,0 +1,51 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=1.e30" / diff --git a/ush/templates/field_table.FV3_HRRR b/ush/templates/field_table.FV3_HRRR index 0a927de45..52658fec6 100644 --- a/ush/templates/field_table.FV3_HRRR +++ b/ush/templates/field_table.FV3_HRRR @@ -3,7 +3,7 @@ "TRACER", "atmos_mod", "sphum" "longname", "specific humidity" "units", "kg/kg" - "profile_type", "fixed", "surface_value=1.e30" / + "profile_type", "fixed", "surface_value=1.e-6" / # prognostic cloud water mixing ratio "TRACER", "atmos_mod", "liq_wat" "longname", "cloud water mixing ratio" @@ -31,19 +31,19 @@ "profile_type", "fixed", "surface_value=1.e30" / # prognostic cloud water number concentration "TRACER", "atmos_mod", "water_nc" - "longname", "cloud liquid water number concentration" + "longname", "cloud liquid water number concentration" "units", "/kg" - "profile_type", "fixed", "surface_value=1.e30" / + "profile_type", "fixed", "surface_value=0.0" / # prognostic cloud ice number concentration "TRACER", "atmos_mod", "ice_nc" "longname", "cloud ice water number concentration" "units", "/kg" - "profile_type", "fixed", "surface_value=1.e30" / + "profile_type", "fixed", "surface_value=0.0" / # prognostic rain number concentration "TRACER", "atmos_mod", "rain_nc" "longname", "rain number concentration" "units", "/kg" - "profile_type", "fixed", "surface_value=1.e30" / + "profile_type", "fixed", "surface_value=0.0" / # prognostic ozone mixing ratio tracer "TRACER", "atmos_mod", "o3mr" "longname", "ozone mixing ratio" @@ -62,4 +62,19 @@ "TRACER", "atmos_mod", "sgs_tke" "longname", "subgrid scale turbulent kinetic energy" "units", "m2/s2" - "profile_type", "fixed", "surface_value=1.e30" / + "profile_type", "fixed", "surface_value=0.0" / +# prognostic smoke mixing ratio tracer + "TRACER", "atmos_mod", "smoke" + "longname", "smoke mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / +# prognostic dust mixing ratio tracer + "TRACER", "atmos_mod", "dust" + "longname", "dust mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / +# prognostic coarsepm mixing ratio tracer + "TRACER", "atmos_mod", "coarsepm" + "longname", "coarsepm mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / diff --git a/ush/templates/field_table.FV3_HRRR_gf b/ush/templates/field_table.FV3_HRRR_gf new file mode 100644 index 000000000..52658fec6 --- /dev/null +++ b/ush/templates/field_table.FV3_HRRR_gf @@ -0,0 +1,80 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic graupel mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic smoke mixing ratio tracer + "TRACER", "atmos_mod", "smoke" + "longname", "smoke mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / +# prognostic dust mixing ratio tracer + "TRACER", "atmos_mod", "dust" + "longname", "dust mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / +# prognostic coarsepm mixing ratio tracer + "TRACER", "atmos_mod", "coarsepm" + "longname", "coarsepm mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / diff --git a/ush/templates/field_table.FV3_RAP b/ush/templates/field_table.FV3_RAP new file mode 100644 index 000000000..7a8ad3bfc --- /dev/null +++ b/ush/templates/field_table.FV3_RAP @@ -0,0 +1,65 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic graupel mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/ush/templates/input.nml.FV3 b/ush/templates/input.nml.FV3 index 64f9f4d05..34105f815 100644 --- a/ush/templates/input.nml.FV3 +++ b/ush/templates/input.nml.FV3 @@ -10,7 +10,6 @@ &atmos_model_nml chksum_debug = .false. dycore_only = .false. - fdiag = 1 / &cires_ugwp_nml @@ -36,7 +35,7 @@ checker_tr = .false. filtered_terrain = .true. gfs_dwinds = .true. - levp = 65 + levp = 66 nt_checker = 0 / @@ -48,10 +47,14 @@ &fms_nml clock_grain = 'ROUTINE' - domains_stack_size = 3000000 + domains_stack_size = 10000000 print_memory_usage = .false. / +&fms2_io_nml + netcdf_default_format="netcdf4" +/ + &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. @@ -61,7 +64,7 @@ d2_bg = 0.0 d2_bg_k1 = 0.20 d2_bg_k2 = 0.04 - d4_bg = 0.15 + d4_bg = 0.12 d_con = 1.0 d_ext = 0.0 dddmp = 0.1 @@ -94,14 +97,15 @@ make_nh = .true. mountain = .false. n_split = 5 - n_sponge = 24 + n_sponge = 9 + sg_cutoff = 10000.0 n_zs_filter = 0 na_init = 1 ncep_ic = .false. nggps_ic = .true. no_dycore = .false. - nord = 2 - npz = 64 + nord = 3 + npz = 65 nrows_blend = 10 ntiles = 1 nudge_qv = .false. @@ -138,9 +142,6 @@ debug = .false. do_mynnedmf = .true. do_mynnsfclay = .false. - do_shum = .false. - do_skeb = .false. - do_sppt = .false. dspheat = .true. fhcyc = 0.0 fhlwr = 1200.0 @@ -166,17 +167,13 @@ ivegsrc = 1 ldiag3d = .false. lheatstrg = .false. - lndp_type = 0 lradar = .true. + lrefres= .true. lsm = 3 lsoil_lsm = 9 ltaerosol = .true. lwhtr = .true. - n_var_lndp = 0 - ncld = 5 - nsradar_reset = 3600 - nst_anl = .true. - nstf_name = 2,1,0,0,0 + nsfullradar_diag = 3600 oz_phys = .false. oz_phys_2015 = .true. pdfcld = .false. @@ -197,36 +194,12 @@ / &nam_sfcperts - lndp_type = 0, - lndp_tau=21600, - lndp_lscale=500000, - iseed_lndp=2010, - lndp_var_list = 'smc', 'vgf', - lndp_prt_list = 0.2,0.1, +/ + +&nam_sppperts / &nam_stochy - iseed_shum = 2 - iseed_skeb = 3 - iseed_sppt = 1 - new_lscale = .true. - shum = 0.006 - shum_lscale = 150.E3 - shum_tau = 21600 - shumint = 3600 - skeb = 0.5 - skeb_lscale = 150.E3 - skeb_tau = 21600.0 - skeb_vdof = 10 - skebint = 3600 - skebnorm = 1 - sppt = 1.0 - sppt_logit = .true. - sppt_lscale = 150.E3 - sppt_sfclimit = .false. - sppt_tau = 2.16E4 - spptint = 3600 - use_zmtnblck = .false. / &namsfc diff --git a/ush/templates/model_configure b/ush/templates/model_configure index 33b0e527c..f32755c3a 100644 --- a/ush/templates/model_configure +++ b/ush/templates/model_configure @@ -17,7 +17,7 @@ atmos_nthreads: {{ atmos_nthreads }} use_hyper_thread: .false. ncores_per_node: {{ ncores_per_node }} debug_affinity: .true. -restart_interval: 0 +restart_interval: {{ restart_interval }} output_1st_tstep_rst: .false. print_esmf: {{ print_esmf }} quilting: {{ quilting }} @@ -49,10 +49,11 @@ write_fsyncflag: .false. # Output frequency in time steps (positive values override "nfhout" and # "nfhout_hf"). # -nfhout: 1 -nfhmax_hf: 60 -nfhout_hf: 1 -nsout: -1 +nfhout: {{ nfhout }} +nfhmax_hf: {{ nfhmax_hf }} +nfhout_hf: {{ nfhout_hf }} +nsout: {{ nsout }} +output_fh: {{ output_fh }} # # Coordinate system used by the output grid. # diff --git a/ush/templates/model_configure.FV3_HRRR b/ush/templates/model_configure.FV3_HRRR new file mode 100644 index 000000000..083016571 --- /dev/null +++ b/ush/templates/model_configure.FV3_HRRR @@ -0,0 +1,23 @@ +total_member: 1 +PE_MEMBER01: +start_year: +start_month: +start_day: +start_hour: +start_minute: 0 +start_second: 0 +nhours_fcst: +RUN_CONTINUE: .false. +ENS_SPS: .false. +dt_atmos: +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: +use_hyper_thread: .false. +ncores_per_node: +debug_affinity: .true. +restart_interval: 0 +output_1st_tstep_rst: .false. +quilting: +print_esmf: diff --git a/ush/templates/model_configure.FV3_HRRR_gf b/ush/templates/model_configure.FV3_HRRR_gf new file mode 100644 index 000000000..083016571 --- /dev/null +++ b/ush/templates/model_configure.FV3_HRRR_gf @@ -0,0 +1,23 @@ +total_member: 1 +PE_MEMBER01: +start_year: +start_month: +start_day: +start_hour: +start_minute: 0 +start_second: 0 +nhours_fcst: +RUN_CONTINUE: .false. +ENS_SPS: .false. +dt_atmos: +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: +use_hyper_thread: .false. +ncores_per_node: +debug_affinity: .true. +restart_interval: 0 +output_1st_tstep_rst: .false. +quilting: +print_esmf: diff --git a/ush/valid_param_vals.sh b/ush/valid_param_vals.sh index 41a73690f..825a1b551 100644 --- a/ush/valid_param_vals.sh +++ b/ush/valid_param_vals.sh @@ -1,11 +1,13 @@ valid_vals_RUN_ENVIR=("nco" "community") valid_vals_VERBOSE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") -valid_vals_MACHINE=("WCOSS_CRAY" "WCOSS_DELL_P3" "HERA" "ORION" "JET" "ODIN" "CHEYENNE" "STAMPEDE") +valid_vals_SAVE_CYCLE_LOG=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_MACHINE=("WCOSS2" "HERA" "ORION" "JET" "ODIN" "CHEYENNE" "STAMPEDE") valid_vals_SCHED=("slurm" "pbspro" "lsf" "lsfcray" "none") valid_vals_PREDEF_GRID_NAME=( \ "RRFS_CONUS_25km" \ "RRFS_CONUS_13km" \ "RRFS_CONUS_3km" \ +"RRFS_CONUS_3km_HRRRIC" \ "RRFS_SUBCONUS_3km" \ "RRFS_AK_13km" \ "RRFS_AK_3km" \ @@ -20,6 +22,7 @@ valid_vals_PREDEF_GRID_NAME=( \ "GSL_HAFSV0.A_3km" \ "GSD_HRRR_AK_50km" \ "GSD_RAP13km" \ +"RRFS_NA_3km" \ ) valid_vals_CCPP_PHYS_SUITE=( \ "FV3_CPT_v0" \ @@ -32,15 +35,18 @@ valid_vals_CCPP_PHYS_SUITE=( \ "FV3_RRFS_v1beta" \ "FV3_RRFS_v1alpha" \ "FV3_HRRR" \ +"FV3_HRRR_gf" \ +"FV3_RAP" \ +"FV3_GFS_v15_thompson_mynn_lam3km" \ ) valid_vals_GFDLgrid_RES=("48" "96" "192" "384" "768" "1152" "3072") -valid_vals_EXTRN_MDL_NAME_ICS=("GSMGFS" "FV3GFS" "RAP" "HRRR" "NAM") -valid_vals_EXTRN_MDL_NAME_LBCS=("GSMGFS" "FV3GFS" "RAP" "HRRR" "NAM") +valid_vals_EXTRN_MDL_NAME_ICS=("GSMGFS" "FV3GFS" "RAP" "HRRR" "NAM" "HRRRDAS" "GEFS" "GDASENKF") +valid_vals_EXTRN_MDL_NAME_LBCS=("GSMGFS" "FV3GFS" "RAP" "HRRR" "NAM" "GEFS" "GDASENKF") valid_vals_USE_USER_STAGED_EXTRN_FILES=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") -valid_vals_FV3GFS_FILE_FMT_ICS=("nemsio" "grib2") -valid_vals_FV3GFS_FILE_FMT_LBCS=("nemsio" "grib2") +valid_vals_FV3GFS_FILE_FMT_ICS=("nemsio" "grib2" "netcdf") +valid_vals_FV3GFS_FILE_FMT_LBCS=("nemsio" "grib2" "netcdf") valid_vals_GRID_GEN_METHOD=("GFDLgrid" "ESGgrid") -valid_vals_PREEXISTING_DIR_METHOD=("delete" "rename" "quit") +valid_vals_PREEXISTING_DIR_METHOD=("delete" "upgrade" "rename" "quit") valid_vals_GTYPE=("regional") valid_vals_WRTCMP_output_grid=("rotated_latlon" "lambert_conformal" "regional_latlon") valid_vals_RUN_TASK_MAKE_GRID=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") @@ -53,10 +59,43 @@ valid_vals_DOT_OR_USCORE=("." "_") valid_vals_NOMADS=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_NOMADS_file_type=("GRIB2" "grib2" "NEMSIO" "nemsio") valid_vals_DO_ENSEMBLE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_ENS_GRAPHICS=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_ENSPOST=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_ENSINIT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SAVE_INPUT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SAVE_DA_OUTPUT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_GSIDIAG_OFFLINE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_ENSFCST=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_DACYCLE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SDDACYCLE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SURFACE_CYCLE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SOIL_ADJUST=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_UPDATE_BC=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_RECENTER=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_BUFRSND=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_RETRO=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SPINUP=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_POST_SPINUP=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_POST_PROD=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_PARALLEL_PRDGEN=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_MINMAXT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_LBCS_ICS_ONLY=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_NONVAR_CLDANAL=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_JEDI_ENVAR_IODA=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SMOKE_DUST=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_REFL2TTEN=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_NLDN_LGHT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_RADDA=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_ENS_RADDA=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_USE_RRFSE_ENS=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_USE_CLM=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_USE_CUSTOM_POST_CONFIG_FILE=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_DO_SHUM=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_DO_SPPT=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_SPP=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_DO_LSM_SPP=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_DO_SKEB=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_USE_ZMTNBLCK=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_USE_FVCOM=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") +valid_vals_PREP_FVCOM=("TRUE" "true" "YES" "yes" "FALSE" "false" "NO" "no") valid_vals_COMPILER=("intel" "gnu")